diff --git a/Gemfile.lock b/Gemfile.lock
index 415c3b944d..1ff67e6afe 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -171,7 +171,7 @@ GEM
rack (>= 1.0.0)
rack-test (>= 0.5.4)
xpath (>= 2.0, < 4.0)
- capybara-screenshot (1.0.21)
+ capybara-screenshot (1.0.22)
capybara (>= 1.0, < 4)
launchy
chunky_png (1.3.10)
@@ -419,7 +419,7 @@ GEM
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
mimemagic (0.3.2)
- mini_mime (1.0.0)
+ mini_mime (1.0.1)
mini_portile2 (2.3.0)
minitest (5.11.3)
mobile-fu (1.4.0)
@@ -471,7 +471,7 @@ GEM
pry (~> 0.10)
pry-rails (0.3.6)
pry (>= 0.10.4)
- public_suffix (3.0.2)
+ public_suffix (3.0.3)
rack (1.6.11)
rack-accept (0.4.5)
rack (>= 0.4)
@@ -734,7 +734,7 @@ GEM
will_paginate (3.1.6)
will_paginate-bootstrap (1.0.1)
will_paginate (>= 3.0.3)
- xpath (3.1.0)
+ xpath (3.2.0)
nokogiri (~> 1.8)
yajl-ruby (1.3.1)
yui-compressor (0.12.0)
@@ -877,4 +877,4 @@ DEPENDENCIES
yui-compressor (~> 0.12.0)
BUNDLED WITH
- 1.16.2
+ 1.17.1
diff --git a/app/controllers/api/v2/searches_controller.rb b/app/controllers/api/v2/searches_controller.rb
index 89bffa3715..329eaccffb 100644
--- a/app/controllers/api/v2/searches_controller.rb
+++ b/app/controllers/api/v2/searches_controller.rb
@@ -71,7 +71,7 @@ def docs
def affiliate_docs_search_class
case @search_options.site.search_engine
- when 'BingV6'
+ when %r{BingV\d+}
ApiBingDocsSearch
when 'Google'
ApiGoogleDocsSearch
diff --git a/app/engines/azure_formatted_query.rb b/app/engines/bing_formatted_query.rb
similarity index 96%
rename from app/engines/azure_formatted_query.rb
rename to app/engines/bing_formatted_query.rb
index 34dbfe07ad..fb5f6e13fd 100644
--- a/app/engines/azure_formatted_query.rb
+++ b/app/engines/bing_formatted_query.rb
@@ -1,4 +1,4 @@
-class AzureFormattedQuery < FormattedQuery
+class BingFormattedQuery < FormattedQuery
DEFAULT_DOMAIN_SCOPE = 'site:gov OR site:mil'.freeze
attr_reader :scope_ids
diff --git a/app/engines/bing_v6_image_response_parser.rb b/app/engines/bing_image_response_parser.rb
similarity index 79%
rename from app/engines/bing_v6_image_response_parser.rb
rename to app/engines/bing_image_response_parser.rb
index b953c7bb7f..8314469974 100644
--- a/app/engines/bing_v6_image_response_parser.rb
+++ b/app/engines/bing_image_response_parser.rb
@@ -1,4 +1,4 @@
-class BingV6ImageResponseParser < BingV6ResponseParser
+class BingImageResponseParser < BingResponseParser
def results
@results ||= bing_response_body.value.map { |v| individual_result(v) }
end
@@ -9,36 +9,35 @@ def total
private
+ def default_bing_response_parts
+ super.merge({
+ next_offset: nil,
+ total_estimated_matches: 0,
+ value: [],
+ })
+ end
+
def individual_result(bing_result)
Hashie::Mash::Rash.new({
title: bing_result.name,
url: bing_result.host_page_url,
- media_url: bing_result.content_url,
display_url: bing_result.host_page_display_url,
+ media_url: bing_result.content_url,
content_type: "image/#{bing_result.encoding_format}",
file_size: bing_result.content_size.to_i,
width: bing_result.width,
height: bing_result.height,
thumbnail: {
url: bing_result.thumbnail_url,
- content_type: nil,
- file_size: nil,
+ content_type: bing_result.content_type,
width: bing_result.thumbnail.width,
height: bing_result.thumbnail.height,
+ file_size: bing_result.file_size,
},
})
end
- def default_bing_response_parts
- {
- _type: nil,
- next_offset: nil,
- total_estimated_matches: 0,
- value: [],
- }
- end
-
- def spelling_suggestion
- nil
+ def next_offset
+ bing_response_body.next_offset || super
end
end
diff --git a/app/engines/bing_v5_response_parser.rb b/app/engines/bing_response_parser.rb
similarity index 72%
rename from app/engines/bing_v5_response_parser.rb
rename to app/engines/bing_response_parser.rb
index 5b9c11d8ce..19fe92d7f7 100644
--- a/app/engines/bing_v5_response_parser.rb
+++ b/app/engines/bing_response_parser.rb
@@ -1,4 +1,4 @@
-class BingV5ResponseParser
+class BingResponseParser
attr_reader :engine
attr_reader :bing_response
@@ -29,8 +29,21 @@ def bing_response_body
@bing_response_body ||= Hashie::Mash.new(bing_response.body.reverse_merge(default_bing_response_parts))
end
+ def default_bing_response_parts
+ {
+ _type: nil,
+ errors: [{ message: nil }],
+ query_context: { },
+ status_code: 200,
+ }
+ end
+
def response_error_message
- "received status code #{bing_response_body.status_code} - #{bing_response_body.message}" if bing_response_body.status_code != 200
+ if bing_response_body.status_code != 200
+ "received status code #{bing_response_body.status_code} - #{bing_response_body.message}"
+ elsif bing_response_body._type == 'ErrorResponse'
+ bing_response_body.errors.first.message
+ end
end
def start_record
@@ -42,7 +55,7 @@ def end_record
end
def spelling_suggestion
- bing_response_body.query_context.altered_query
+ nil
end
def next_offset
diff --git a/app/engines/bing_search.rb b/app/engines/bing_search.rb
new file mode 100644
index 0000000000..4d950fea94
--- /dev/null
+++ b/app/engines/bing_search.rb
@@ -0,0 +1,82 @@
+class BingSearch < SearchEngine
+ API_HOST = 'https://api.cognitive.microsoft.com'.freeze
+ VALID_ADULT_FILTERS = %w{off moderate strict}
+ CACHE_LIFETIME = BING_CACHE_DURATION
+
+ attr_reader :options
+
+ class_attribute :api_endpoint
+ class_attribute :api_cache_namespace
+ class_attribute :response_parser_class
+
+ def initialize(options = { })
+ super
+ @options = options
+ @api_connection = self.class.api_connection
+ Rails.logger.error("CACHE_LIFETIME: #{CACHE_LIFETIME}")
+ end
+
+ def execute_query
+ api_connection.connection.headers['Ocp-Apim-Subscription-Key'] = subscription_key if subscription_key
+ super
+ end
+
+ def params
+ {
+ offset: offset,
+ count: count,
+ mkt: market,
+ q: options[:query],
+ safeSearch: safe_search,
+ responseFilter: 'WebPages',
+ textDecorations: !!options[:enable_highlighting],
+ }.merge(ADDITIONAL_BING_PARAMS)
+ end
+
+ protected
+
+ def self.api_host
+ API_HOST
+ end
+
+ def parse_search_engine_response(bing_response)
+ parser = response_parser_class.new(self, bing_response)
+ parser.parsed_response
+ end
+
+ def market
+ Language.bing_market_for_code(language)
+ end
+
+ def language
+ options[:language]
+ end
+
+ def offset
+ options[:offset] || 0
+ end
+
+ def count
+ options[:limit] || 20
+ end
+
+ def safe_search
+ filter_index = get_filter_index(options[:filter])
+ VALID_ADULT_FILTERS[filter_index]
+ end
+
+ def subscription_key
+ options[:password] || hosted_subscription_key
+ end
+
+ def hosted_subscription_key
+ nil
+ end
+
+ class << self
+ def api_connection
+ @api_connection ||= { }
+ @api_connection[self] ||= CachedSearchApiConnection.new(api_cache_namespace, api_host, CACHE_LIFETIME)
+ end
+ end
+end
diff --git a/app/engines/bing_v5_engine.rb b/app/engines/bing_v5_engine.rb
deleted file mode 100644
index 563a3ab668..0000000000
--- a/app/engines/bing_v5_engine.rb
+++ /dev/null
@@ -1,82 +0,0 @@
-class BingV5Engine < SearchEngine
- API_HOST = 'https://api.cognitive.microsoft.com'.freeze
- API_CACHE_NAMESPACE = 'bing_v5_api'.freeze
- CACHE_LIFETIME = AZURE_CACHE_DURATION
- DEFAULT_HOSTED_PASSWORD = Rails.application.secrets.hosted_azure['v5_account_key'].freeze
-
- class_attribute :api_host
- class_attribute :api_endpoint
- class_attribute :api_cache_namespace
- class_attribute :default_hosted_password
- class_attribute :response_parser_class
-
- attr_reader :options
-
- self.api_host = API_HOST
- self.api_cache_namespace = API_CACHE_NAMESPACE
- self.default_hosted_password = DEFAULT_HOSTED_PASSWORD
-
- def initialize(options)
- super
- @options = options
- @api_connection = is_hosted_search? ? self.class.rate_limited_api_connection : self.class.unlimited_api_connection
- end
-
- def execute_query
- api_connection.connection.headers['Ocp-Apim-Subscription-Key'] = password
- super
- end
-
- def params
- {
- offset: offset,
- count: count,
- mkt: market,
- q: options[:query],
- safeSearch: 'Moderate',
- }
- end
-
- protected
-
- def parse_search_engine_response(bing_response)
- parser = response_parser_class.new(self, bing_response)
- parser.parsed_response
- end
-
- def is_hosted_search?
- !options.include?(:password)
- end
-
- def password
- is_hosted_search? ? default_hosted_password : options[:password]
- end
-
- def market
- Language.bing_market_for_code(language)
- end
-
- def language
- options[:language]
- end
-
- def offset
- options[:offset] || 0
- end
-
- def count
- options[:limit] || 20
- end
-
- class << self
- def unlimited_api_connection
- @bing_v5_unlimited_api_connection ||= { }
- @bing_v5_unlimited_api_connection[self] ||= CachedSearchApiConnection.new(api_cache_namespace, api_host, CACHE_LIFETIME)
- end
-
- def rate_limited_api_connection
- @bing_v5_rate_limited_api_connection ||= { }
- @bing_v5_rate_limited_api_connection[self] ||= RateLimitedSearchApiConnection.new(api_cache_namespace, api_host, CACHE_LIFETIME, true)
- end
- end
-end
diff --git a/app/engines/bing_v5_hosted_subscription_key.rb b/app/engines/bing_v5_hosted_subscription_key.rb
new file mode 100644
index 0000000000..d3576b287e
--- /dev/null
+++ b/app/engines/bing_v5_hosted_subscription_key.rb
@@ -0,0 +1,7 @@
+module BingV5HostedSubscriptionKey
+ BING_V5_SUBSCRIPTION_KEY = Rails.application.secrets.hosted_azure['v5_account_key'].freeze
+
+ def hosted_subscription_key
+ BING_V5_SUBSCRIPTION_KEY
+ end
+end
diff --git a/app/engines/bing_v5_image_engine.rb b/app/engines/bing_v5_image_engine.rb
index 590c4f3fd2..dd55d0ff1f 100644
--- a/app/engines/bing_v5_image_engine.rb
+++ b/app/engines/bing_v5_image_engine.rb
@@ -1,6 +1,8 @@
-class BingV5ImageEngine < BingV5Engine
+class BingV5ImageEngine < BingSearch
API_ENDPOINT = '/bing/v5.0/images/search'.freeze
+ include BingV5HostedSubscriptionKey
self.api_endpoint = API_ENDPOINT
+ self.api_cache_namespace = 'bing_v5_api'
self.response_parser_class = BingV5ImageResponseParser
end
diff --git a/app/engines/bing_v5_image_response_parser.rb b/app/engines/bing_v5_image_response_parser.rb
index fe22b0746f..b09432703a 100644
--- a/app/engines/bing_v5_image_response_parser.rb
+++ b/app/engines/bing_v5_image_response_parser.rb
@@ -1,46 +1,13 @@
-class BingV5ImageResponseParser < BingV5ResponseParser
- def results
- @results ||= bing_response_body.value.map { |v| individual_result(v) }
- end
-
- def total
- bing_response_body.total_estimated_matches
- end
-
- def next_offset
- offset = super
- offset + bing_response_body.next_offset_add_count if offset
- end
-
+class BingV5ImageResponseParser < BingImageResponseParser
private
def individual_result(bing_result)
- Hashie::Mash.new({
- title: bing_result.name,
+ super.merge({
source_url: bing_result.host_page_url,
- media_url: bing_result.content_url,
- display_url: bing_result.host_page_display_url,
- content_type: "image/#{bing_result.encoding_format}",
- file_size: bing_result.content_size.to_i,
- width: bing_result.width,
- height: bing_result.height,
- thumbnail: {
+ }).tap do |h|
+ h[:thumbnail].merge!({
media_url: bing_result.thumbnail_url,
- width: bing_result.thumbnail.width,
- height: bing_result.thumbnail.height,
- },
- })
- end
-
- def default_bing_response_parts
- {
- next_offset_add_count: 0,
- query_context: {
- altered_query: nil,
- },
- status_code: 200,
- total_estimated_matches: 0,
- value: [],
- }
+ })
+ end
end
end
diff --git a/app/engines/bing_v5_web_engine.rb b/app/engines/bing_v5_web_engine.rb
index 77ab8b5d9c..328964275f 100644
--- a/app/engines/bing_v5_web_engine.rb
+++ b/app/engines/bing_v5_web_engine.rb
@@ -1,13 +1,8 @@
-class BingV5WebEngine < BingV5Engine
+class BingV5WebEngine < BingSearch
API_ENDPOINT = '/bing/v5.0/search'.freeze
+ include BingV5HostedSubscriptionKey
self.api_endpoint = API_ENDPOINT
+ self.api_cache_namespace = 'bing_v5_api'
self.response_parser_class = BingV5WebResponseParser
-
- def params
- super.merge({
- responseFilter: 'WebPages,SpellSuggestions',
- textDecorations: options[:enable_highlighting],
- })
- end
end
diff --git a/app/engines/bing_v5_web_response_parser.rb b/app/engines/bing_v5_web_response_parser.rb
index b186d82918..242edcd818 100644
--- a/app/engines/bing_v5_web_response_parser.rb
+++ b/app/engines/bing_v5_web_response_parser.rb
@@ -1,33 +1,11 @@
-class BingV5WebResponseParser < BingV5ResponseParser
- def results
- @results ||= bing_response_body.web_pages.value.map { |v| individual_result(v) }
- end
-
- def total
- bing_response_body.web_pages.total_estimated_matches
- end
-
+class BingV5WebResponseParser < BingWebResponseParser
private
def individual_result(bing_result)
- Hashie::Mash.new({
- title: bing_result.name,
- url: bing_result.url,
- display_url: StringProcessor.strip_highlights(bing_result.display_url),
+ super.merge({
description: bing_result.snippet,
+ display_url: StringProcessor.strip_highlights(bing_result.display_url),
+ url: bing_result.url,
})
end
-
- def default_bing_response_parts
- {
- query_context: {
- altered_query: nil,
- },
- status_code: 200,
- web_pages: {
- total_estimated_matches: 0,
- value: [],
- },
- }
- end
end
diff --git a/app/engines/bing_v6_api_host.rb b/app/engines/bing_v6_api_host.rb
new file mode 100644
index 0000000000..fe7fce8012
--- /dev/null
+++ b/app/engines/bing_v6_api_host.rb
@@ -0,0 +1,9 @@
+module BingV6ApiHost
+ API_HOST = 'https://www.bingapis.com'.freeze
+
+ def self.included(base)
+ def base.api_host
+ API_HOST
+ end
+ end
+end
diff --git a/app/engines/bing_v6_authentication.rb b/app/engines/bing_v6_authentication.rb
new file mode 100644
index 0000000000..e6274c40f8
--- /dev/null
+++ b/app/engines/bing_v6_authentication.rb
@@ -0,0 +1,9 @@
+module BingV6Authentication
+ APP_ID = Rails.application.secrets.bing_v6['app_id'].freeze
+
+ def params
+ super.merge({
+ AppId: APP_ID
+ })
+ end
+end
diff --git a/app/engines/bing_v6_formatted_query.rb b/app/engines/bing_v6_formatted_query.rb
index 542f5c5026..3ced8a3948 100644
--- a/app/engines/bing_v6_formatted_query.rb
+++ b/app/engines/bing_v6_formatted_query.rb
@@ -1,5 +1,2 @@
-class BingV6FormattedQuery < AzureFormattedQuery
- def query_plus_locale(user_query)
- user_query
- end
+class BingV6FormattedQuery < BingFormattedQuery
end
diff --git a/app/engines/bing_v6_image_search.rb b/app/engines/bing_v6_image_search.rb
index 9f52233679..6864367ddd 100644
--- a/app/engines/bing_v6_image_search.rb
+++ b/app/engines/bing_v6_image_search.rb
@@ -1,6 +1,9 @@
-class BingV6ImageSearch < BingV6Search
+class BingV6ImageSearch < BingSearch
API_ENDPOINT = '/api/v6/images/search'.freeze
+ include BingV6ApiHost
+ include BingV6Authentication
self.api_endpoint = API_ENDPOINT
- self.response_parser_class = BingV6ImageResponseParser
+ self.api_cache_namespace = 'bing_v6'
+ self.response_parser_class = BingImageResponseParser
end
diff --git a/app/engines/bing_v6_response_parser.rb b/app/engines/bing_v6_response_parser.rb
deleted file mode 100644
index 956167097e..0000000000
--- a/app/engines/bing_v6_response_parser.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-class BingV6ResponseParser < BingV5ResponseParser
-
- protected
-
- def response_error_message
- bing_response_body.errors.first.message if bing_response_body._type == 'ErrorResponse'
- end
-end
diff --git a/app/engines/bing_v6_search.rb b/app/engines/bing_v6_search.rb
deleted file mode 100644
index 291417aa0f..0000000000
--- a/app/engines/bing_v6_search.rb
+++ /dev/null
@@ -1,39 +0,0 @@
-class BingV6Search < BingV5Engine
- API_HOST= 'https://www.bingapis.com'
- API_CACHE_NAMESPACE = 'bing_v6'.freeze
- APP_ID = Rails.application.secrets.bing_v6['app_id'].freeze
- VALID_ADULT_FILTERS = %w{off moderate strict}
-
- attr_reader :options
-
- self.api_host = API_HOST
- self.api_cache_namespace = API_CACHE_NAMESPACE
-
- def initialize(options = {})
- super
- @options = options
- @api_connection = connection_instance
- end
-
- def params
- super.merge({
- AppId: APP_ID,
- safeSearch: safe_search,
- }).merge(ADDITIONAL_BING_PARAMS)
- end
-
- protected
-
- def password
- APP_ID
- end
-
- def safe_search
- filter_index = get_filter_index(options[:filter])
- VALID_ADULT_FILTERS[filter_index]
- end
-
- def connection_instance
- @@api_connection ||= CachedSearchApiConnection.new(api_cache_namespace, API_HOST, BING_CACHE_DURATION)
- end
-end
diff --git a/app/engines/bing_v6_web_search.rb b/app/engines/bing_v6_web_search.rb
index 0fbfcefc41..f0ae8a9e1a 100644
--- a/app/engines/bing_v6_web_search.rb
+++ b/app/engines/bing_v6_web_search.rb
@@ -1,13 +1,9 @@
-class BingV6WebSearch < BingV6Search
+class BingV6WebSearch < BingSearch
API_ENDPOINT = '/api/v6/search'.freeze
+ include BingV6ApiHost
+ include BingV6Authentication
self.api_endpoint = API_ENDPOINT
- self.response_parser_class = BingV6WebResponseParser
-
- def params
- super.merge({
- responseFilter: 'WebPages,SpellSuggestions',
- textDecorations: options[:enable_highlighting],
- })
- end
+ self.api_cache_namespace = 'bing_v6'
+ self.response_parser_class = BingWebResponseParser
end
diff --git a/app/engines/bing_v7_formatted_query.rb b/app/engines/bing_v7_formatted_query.rb
new file mode 100644
index 0000000000..177d035a6e
--- /dev/null
+++ b/app/engines/bing_v7_formatted_query.rb
@@ -0,0 +1,2 @@
+class BingV7FormattedQuery < BingFormattedQuery
+end
diff --git a/app/engines/bing_v7_hosted_subscription_key.rb b/app/engines/bing_v7_hosted_subscription_key.rb
new file mode 100644
index 0000000000..6750e47bd0
--- /dev/null
+++ b/app/engines/bing_v7_hosted_subscription_key.rb
@@ -0,0 +1,7 @@
+module BingV7HostedSubscriptionKey
+ BING_V7_SUBSCRIPTION_KEY = Rails.application.secrets.bing_v7['subscription_id'].freeze
+
+ def hosted_subscription_key
+ BING_V7_SUBSCRIPTION_KEY
+ end
+end
diff --git a/app/engines/bing_v7_image_search.rb b/app/engines/bing_v7_image_search.rb
new file mode 100644
index 0000000000..38a69920e0
--- /dev/null
+++ b/app/engines/bing_v7_image_search.rb
@@ -0,0 +1,8 @@
+class BingV7ImageSearch < BingSearch
+ API_ENDPOINT = '/bing/v7.0/images/search'.freeze
+ include BingV7HostedSubscriptionKey
+
+ self.api_endpoint = API_ENDPOINT
+ self.api_cache_namespace = 'bing_v7'
+ self.response_parser_class = BingImageResponseParser
+end
diff --git a/app/engines/bing_v7_web_search.rb b/app/engines/bing_v7_web_search.rb
new file mode 100644
index 0000000000..b41ba796e7
--- /dev/null
+++ b/app/engines/bing_v7_web_search.rb
@@ -0,0 +1,8 @@
+class BingV7WebSearch < BingSearch
+ API_ENDPOINT = '/bing/v7.0/search'.freeze
+ include BingV7HostedSubscriptionKey
+
+ self.api_endpoint = API_ENDPOINT
+ self.api_cache_namespace = 'bing_v7'
+ self.response_parser_class = BingWebResponseParser
+end
diff --git a/app/engines/bing_v6_web_response_parser.rb b/app/engines/bing_web_response_parser.rb
similarity index 74%
rename from app/engines/bing_v6_web_response_parser.rb
rename to app/engines/bing_web_response_parser.rb
index fc01bd7244..0a43286d37 100644
--- a/app/engines/bing_v6_web_response_parser.rb
+++ b/app/engines/bing_web_response_parser.rb
@@ -1,4 +1,4 @@
-class BingV6WebResponseParser < BingV6ResponseParser
+class BingWebResponseParser < BingResponseParser
def results
@results ||= bing_response_body.web_pages.value.map { |v| individual_result(v) }
end
@@ -9,25 +9,24 @@ def total
private
+ def default_bing_response_parts
+ super.merge({
+ web_pages: {
+ total_estimated_matches: 0,
+ value: [],
+ },
+ })
+ end
+
def individual_result(bing_result)
Hashie::Mash.new({
+ content: bing_result.snippet,
title: bing_result.name,
unescaped_url: bing_result.url,
- content: bing_result.snippet,
})
end
- def default_bing_response_parts
- {
- query_context: {
- altered_query: nil,
- },
- status_code: 200,
- _type: nil,
- web_pages: {
- total_estimated_matches: 0,
- value: [],
- },
- }
+ def spelling_suggestion
+ bing_response_body.query_context.altered_query
end
end
diff --git a/app/engines/search_engine_adapter.rb b/app/engines/search_engine_adapter.rb
index 0ed493f636..ddf714e4d9 100644
--- a/app/engines/search_engine_adapter.rb
+++ b/app/engines/search_engine_adapter.rb
@@ -46,7 +46,7 @@ def post_process_results(results)
end
def default_module_tag
- @search_engine.instance_of?(BingV6ImageSearch) ? 'IMAG' : 'AIMAG'
+ 'IMAG'
end
def default_spelling_module_tag
@@ -67,22 +67,11 @@ def search_params
end
def build_formatted_query
- formatted_query_klass
- formatted_query_instance = formatted_query_klass.new @query, domains_scope_options
+ formatted_query_instance = BingFormattedQuery.new @query, domains_scope_options
formatted_query_instance.query
end
- # this should eventually be moved to another class
- # to avoid having to check the affiliate
- def formatted_query_klass
- if @search_class == BingV6ImageSearch
- BingV6FormattedQuery
- else
- "#{@affiliate.search_engine}FormattedQuery".constantize
- end
- end
-
def domains_scope_options
DomainScopeOptionsBuilder.build(site: @affiliate, site_limits: @site_limits)
end
-end
\ No newline at end of file
+end
diff --git a/app/models/affiliate.rb b/app/models/affiliate.rb
index 3268928173..fb79f286d8 100644
--- a/app/models/affiliate.rb
+++ b/app/models/affiliate.rb
@@ -596,7 +596,7 @@ def update_templates(selected_template_id, selected_template_ids)
end
def sc_search_engine
- (search_engine == 'BingV6') ? 'Bing' : search_engine
+ (search_engine =~ %r{BingV\d+}) ? 'Bing' : search_engine
end
def status
diff --git a/app/models/api_azure_composite_search.rb b/app/models/api_azure_composite_search.rb
index 4c90091b78..bfcfbe89d9 100644
--- a/app/models/api_azure_composite_search.rb
+++ b/app/models/api_azure_composite_search.rb
@@ -10,7 +10,7 @@ def handle_response(response)
protected
def instantiate_engine(options)
- formatted_query_instance = AzureFormattedQuery.new(@query, domains_scope_options)
+ formatted_query_instance = BingFormattedQuery.new(@query, domains_scope_options)
@formatted_query = formatted_query_instance.query
engine_options = options.slice(:enable_highlighting,
:limit,
diff --git a/app/models/api_azure_search.rb b/app/models/api_azure_search.rb
index 1f72466a8a..f4850c4ef4 100644
--- a/app/models/api_azure_search.rb
+++ b/app/models/api_azure_search.rb
@@ -4,7 +4,7 @@ def default_module_tag
end
def query_formatting_klass
- AzureFormattedQuery
+ BingFormattedQuery
end
def engine_klass
diff --git a/app/models/api_bing_search.rb b/app/models/api_bing_search.rb
index 6e49fa4e52..474eea84ee 100644
--- a/app/models/api_bing_search.rb
+++ b/app/models/api_bing_search.rb
@@ -2,15 +2,19 @@ class ApiBingSearch < ApiWebSearch
self.default_module_tag = 'BWEB'.freeze
def query_formatting_klass
- BingV6FormattedQuery
+ BingFormattedQuery
end
def engine_klass
- BingV6WebSearch
+ latest_bing_web_search_class
end
protected
+ def latest_bing_web_search_class
+ BingV6WebSearch
+ end
+
def handle_response(response)
return unless response
@total = response.total
diff --git a/app/models/image_search.rb b/app/models/image_search.rb
index afdb4a8b63..ce7304986a 100644
--- a/app/models/image_search.rb
+++ b/app/models/image_search.rb
@@ -89,7 +89,15 @@ def search_engine_adapter(options)
end
def engine_klass
- (%w(BingV6 SearchGov).include? @affiliate.search_engine) ? BingV6ImageSearch : HostedAzureImageEngine
+ if @affiliate.search_engine.start_with?('Bing')
+ "#{@affiliate.search_engine}ImageSearch".constantize
+ else
+ latest_bing_image_search_class
+ end
+ end
+
+ def latest_bing_image_search_class
+ BingV7ImageSearch
end
def assign_module_tag
diff --git a/app/models/legacy_image_search.rb b/app/models/legacy_image_search.rb
index 3bd3c9d32b..62c8d2dc59 100644
--- a/app/models/legacy_image_search.rb
+++ b/app/models/legacy_image_search.rb
@@ -23,7 +23,7 @@ def local_index_module_tag
end
def module_tag_for_search_engine
- @affiliate.search_engine == 'BingV6' ? 'IMAG' : 'AIMAG'
+ 'IMAG'
end
def social_image_feeds_checked?
diff --git a/app/models/web_search.rb b/app/models/web_search.rb
index 62a97a0c6d..acb4800336 100644
--- a/app/models/web_search.rb
+++ b/app/models/web_search.rb
@@ -42,12 +42,7 @@ def diagnostics_label
protected
def search_engine_klass(search_engine_option)
- case search_engine_option
- when 'Azure'
- "HostedAzure#{get_vertical.to_s.classify}Engine".constantize
- else
- "#{search_engine_option}#{get_vertical.to_s.classify}Search".constantize
- end
+ "#{search_engine_option}#{get_vertical.to_s.classify}Search".constantize
end
def domains_scope_options
diff --git a/config/application.rb b/config/application.rb
index 0959e4e909..81dcd3f01d 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -80,7 +80,7 @@ class Application < Rails::Application
end
end
-SEARCH_ENGINES = %w(BingV6 Google SearchGov).freeze
+SEARCH_ENGINES = %w(BingV6 BingV7 Google SearchGov).freeze
DEFAULT_USER_AGENT = Rails.application.secrets.organization['default_user_agent'].freeze
require 'resque/plugins/priority'
diff --git a/config/secrets.yml.dev b/config/secrets.yml.dev
index de2ea85f63..b1d7a7bc4e 100644
--- a/config/secrets.yml.dev
+++ b/config/secrets.yml.dev
@@ -22,6 +22,8 @@ secret_keys: &SECRET_KEYS
s3_region: your-aws-region-here
bing_v6:
app_id: 9876543210FEDBCA9876543210FEDBCA98765432
+ bing_v7:
+ subscription_id: FILL_THIS_IN_ONCE_WE_HAVE_A_SUBSCRIPTION_ID
email:
action_mailer:
perform_deliveries: false
diff --git a/features/legacy_search.feature b/features/legacy_search.feature
index 947b61493d..d2192be5fe 100644
--- a/features/legacy_search.feature
+++ b/features/legacy_search.feature
@@ -11,6 +11,15 @@ Feature: Legacy Search
And I press "Search" in the legacy search box
Then I should see "Please enter a search term"
+ Scenario: Search with no results
+ Given the following legacy Affiliates exist:
+ | display_name | name | contact_email | contact_name |
+ | bar site | bar.gov | aff@bar.gov | John Bar |
+ When I am on bar.gov's search page
+ And I fill in "Enter your search term" with "foobarbazbiz"
+ And I press "Search" in the legacy search box
+ Then I should see "Sorry, no results found for 'foobarbazbiz'. Try entering fewer or broader query terms."
+
Scenario: Searching with active RSS feeds
Given the following legacy Affiliates exist:
| display_name | name | contact_email | contact_name | locale | youtube_handles | is_image_search_navigable |
diff --git a/features/mobile_searches_bing_v7.feature b/features/mobile_searches_bing_v7.feature
new file mode 100644
index 0000000000..fb62684c5d
--- /dev/null
+++ b/features/mobile_searches_bing_v7.feature
@@ -0,0 +1,743 @@
+# This feature file is temporary, while we are running BingV6 and BingV7 in parallel.
+# It can be removed once BingV6 is removed.
+
+Feature: Searches using mobile device
+
+ Background:
+ Given I am using a mobile device
+
+ Scenario: Web search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | domains | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | | BingV7 |
+ | Hippo site | hippo | admin@agency.gov | John Bar | en | hippo.whitehouse.gov | BingV7 |
+ And the following Boosted Content entries exist for the affiliate "en.agency.gov"
+ | url | title | description |
+ | http://http://www.whitehouse.gov/administration/president-obama | President Barack Obama | the 44th President of the United States |
+ | http://www.whitehouse.gov/about/presidents/georgewbush | George W. Bush | the 43rd President of the United States |
+ | http://www.whitehouse.gov/about/presidents/williamjclinton | William J. Clinton | the 42nd President of the United States |
+ And the following Boosted Content entries exist for the affiliate "es.agency.gov"
+ | url | title | description |
+ | http://http://www.whitehouse.gov/administration/president-obama | Presidente Barack Obama | the 44th President of the United States |
+ | http://www.whitehouse.gov/about/presidents/georgewbush | Presidente George W. Bush | the 43rd President of the United States |
+ | http://www.whitehouse.gov/about/presidents/williamjclinton | Presidente William J. Clinton | the 42nd President of the United States |
+ And the following Boosted Content entries exist for the affiliate "hippo"
+ | url | title | description |
+ | http://hippo.gov/hippopotamus-amphibius | Hippopotamus amphibius | large, mostly herbivorous mammal in sub-Saharan Africa |
+ And the following featured collections exist for the affiliate "en.agency.gov":
+ | title | title_url | status | publish_start_on | publish_end_on | image_file_path |
+ | The 21st Century Presidents | http://www.whitehouse.gov/about/presidents | active | 2013-07-01 | | features/support/small.jpg |
+ And the following featured collection links exist for featured collection titled "The 21st Century Presidents":
+ | title | url |
+ | 44. Barack Obama | http://www.whitehouse.gov/about/presidents/barackobama |
+ | 43. George W. Bush | http://www.whitehouse.gov/about/presidents/georgewbush |
+ | The Presidents Photo Galleries | http://www.whitehouse.gov/photos-and-video/photogallery/the-presidents |
+ | Gallery Link Number 1 | http://www.whitehouse.gov/photos-and-video/photogallery/1 |
+ | Gallery Link Number 2 | http://www.whitehouse.gov/photos-and-video/photogallery/2 |
+ | Gallery Link Number 3 | http://www.whitehouse.gov/photos-and-video/photogallery/3 |
+ | Gallery Link Number 4 | http://www.whitehouse.gov/photos-and-video/photogallery/4 |
+ | Gallery Link Number 5 | http://www.whitehouse.gov/photos-and-video/photogallery/5 |
+ | Gallery Link Number 6 | http://www.whitehouse.gov/photos-and-video/photogallery/6 |
+ | Gallery Link Number 7 | http://www.whitehouse.gov/photos-and-video/photogallery/7 |
+ | Gallery Link Number 8 | http://www.whitehouse.gov/photos-and-video/photogallery/8 |
+ And the following featured collections exist for the affiliate "es.agency.gov":
+ | title | status | publish_start_on |
+ | Lo Más Popular | active | 2013-07-01 |
+ And the following featured collection links exist for featured collection titled "Lo Más Popular":
+ | title | url |
+ | Presidente Barack Obama: ganador elecciones de 2012 | https://www.usa.gov/gobiernousa/Temas/Votaciones/Presidente-Barack-Obama.shtml |
+ | Servicios por Internet | https://www.usa.gov/gobiernousa/Temas/Servicios.shtml |
+ | Seguros de salud | https://www.usa.gov/gobiernousa/Salud-Nutricion-Seguridad/Salud/Seguros.shtml |
+ And the following Twitter Profiles exist:
+ | screen_name | name | twitter_id | affiliate |
+ | USASearch | USASearch.gov | 123456 | en.agency.gov |
+ And the following Tweets exist:
+ | tweet_text | tweet_id | published_ago | twitter_profile_id | url | expanded_url | display_url |
+ | President Obama: "Don’t Just Play on Your Phone, Program It" | 234567 | week | 123456 | | | |
+ | "We wish you all a blessed and safe holiday season." - President Obama http://t.co/l8jbZSbmAX | 184957 | hour | 123456 | http://t.co/l8jbZSbmAX | http://go.wh.gov/sgCp3q | go.wh.gov/sgCp3q |
+ And the following SAYT Suggestions exist for en.agency.gov:
+ | phrase |
+ | president list |
+ | president inauguration |
+ When I am on en.agency.gov's mobile search page
+ And I fill in "Enter your search term" with "president"
+ And I press "Search"
+ Then I should see Powered by Bing logo
+ And I should see 1 Best Bets Texts
+ And I should see 1 Best Bets Graphic
+ And I should see "44. Barack Obama 43. George W. Bush The Presidents Photo Galleries"
+ And I should see a link to "http://t.co/l8jbZSbmAX" with text "go.wh.gov/sgCp3q"
+ And I should see at least "2" web search results
+ And I should see 2 related searches
+ And I should see a link to "Next"
+ And I should not see a link to "2" with class "pagination-numbered-link"
+ When I follow "Next"
+ Then I should see a link to "Previous"
+ And I should see a link to "Next"
+ And I should not see a link to "1" with class "pagination-numbered-link"
+ And I should not see a link to "3" with class "pagination-numbered-link"
+ When I follow "Previous"
+ Then I should see a link to "Next"
+
+ When I am on es.agency.gov's mobile search page
+ And I fill in "Ingrese su búsqueda" with "presidente"
+ And I press "Buscar"
+ Then I should see Generado por Bing logo
+ And I should see 1 Best Bets Texts
+ And I should see 1 Best Bets Graphic
+ And I should see at least "2" web search results
+
+ When I am on hippo's mobile search page
+ And I fill in "Enter your search term" with "hippopotamus"
+ And I press "Search"
+ Then I should see "Sorry, no results found for 'hippopotamus'."
+ And I should see "Hippopotamus amphibius"
+
+ Scenario: News search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | BingV7 |
+
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url |
+ | News-1 | http://en.agency.gov/feed/news-1 |
+ And affiliate "es.agency.gov" has the following RSS feeds:
+ | name | url |
+ | Noticias-1 | http://es.agency.gov/feed/noticias-1 |
+
+ And there are 150 news items for "News-1"
+ And there are 5 news items for "Noticias-1"
+
+ When I am on en.agency.gov's "News-1" mobile news search page
+ And I fill in "Enter your search term" with "news item"
+ And I press "Search" within the search box
+
+ Then the "Enter your search term" field should contain "news item"
+ And I should see "Any time" within the current time filter
+ And I should see "Most recent" within the current sort by filter
+ And I should see "150 RESULTS"
+ And I should see "Powered by Search.gov"
+ And I should see exactly "20" web search results
+ And I should see "Previous"
+ And I should see a link to "2" with class "pagination-numbered-link"
+ And I should see a link to "Next"
+ When I follow "Next"
+ Then I should see "150 RESULTS"
+ And I should see exactly "20" web search results
+ And I should see a link to "Previous"
+ And I should see a link to "1" with class "pagination-numbered-link"
+ And I should see "Next"
+ When I follow "5"
+ And I follow "7"
+ And I follow "8"
+ Then I should see "150 RESULTS"
+ And I should see exactly "10" web search results
+
+ When I follow "Last month"
+ Then the "Enter your search term" field should contain "news item"
+ And I should see "Last month" within the current time filter
+ And I should see "Most recent" within the current sort by filter
+ And I should see at least "10" web search results
+
+ When I follow "Best match"
+ Then the "Enter your search term" field should contain "news item"
+ And I should see "Last month" within the current time filter
+ And I should see "Best match" within the current sort by filter
+ And I should see at least "10" web search results
+
+ When I follow "Last hour"
+ Then the "Enter your search term" field should contain "news item"
+ And I should see "no results found"
+
+ When I follow "Clear"
+ And I fill in "Enter your search term" with "body"
+ And I press "Search" within the search box
+ Then I should see at least "10" web search results
+ And I should see "news item 1 body for News-1"
+ And I should see "Powered by Search.gov"
+
+ When I am on es.agency.gov's "Noticias-1" mobile news search page
+ Then I should see "Generado por Search.gov"
+ And I should see at least "5" web search results
+
+ Scenario: Custom date range news search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | BingV7 |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Press | http://www.whitehouse.gov/feed/press | true |
+ And affiliate "es.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Noticias | https://www.usa.gov/gobiernousa/rss/actualizaciones-articulos.xml | true |
+ And feed "Press" has the following news items:
+ | link | title | guid | published_ago | published_at | description | contributor | publisher | subject |
+ | http://www.whitehouse.gov/news/1 | First item | pressuuid1 | day | | item First news item for the feed | president | briefingroom | economy |
+ | http://www.whitehouse.gov/news/2 | Second item | pressuuid2 | day | | item Next news item for the feed | vicepresident | westwing | jobs |
+ | http://www.whitehouse.gov/news/3 | Third item | pressuuid3 | | 2012-10-01 | item Next news item for the feed | firstlady | newsroom | health |
+ | http://www.whitehouse.gov/news/4 | Fourth item | pressuuid4 | | 2012-10-17 | item Next news item for the feed | president | newsroom | foreign policy |
+ And feed "Noticias" has the following news items:
+ | link | title | guid | published_ago | published_at | description | subject |
+ | http://www.gobiernousa.gov/news/1 | First Spanish item | esuuid1 | day | | Gobierno item First news item for the feed | economy |
+ | http://www.gobiernousa.gov/news/2 | Second Spanish item | esuuid2 | day | | Gobierno item Next news item for the feed | jobs |
+ | http://www.gobiernousa.gov/news/3 | Third Spanish item | esuuid3 | day | | Gobierno item Next news item for the feed | health |
+ | http://www.gobiernousa.gov/news/4 | Fourth Spanish item | esuuid4 | day | | Gobierno item Next news item for the feed | foreign policy |
+ | http://www.gobiernousa.gov/news/5 | Fifth Spanish item | esuuid5 | day | 2012-10-1 | Gobierno item Next news item for the feed | education |
+ | http://www.gobiernousa.gov/news/6 | Sixth Spanish item | esuuid6 | day | 2012-10-17 | Gobierno item Next news item for the feed | olympics |
+
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "item"
+ And I press "Search" within the search box
+ And I follow "Press" within the SERP navigation
+
+ When I fill in "From" with "9/30/2012"
+ And I fill in "To" with "10/15/2012"
+ And I press "Search" within the custom date search form
+
+ Then I should see "Press" within the SERP active navigation
+ And the "Enter your search term" field should contain "item"
+ And I should see "Sep 30, 2012 - Oct 15, 2012" within the current time filter
+ And I should see "Most recent" within the current sort by filter
+ And the "From" field should contain "9/30/2012"
+ And the "To" field should contain "10/15/2012"
+ And I should see a link to "Third item" with url for "http://www.whitehouse.gov/news/3"
+ And I should not see a link to "Fourth item"
+
+ When I follow "Best match"
+ Then I should see "Press" within the SERP active navigation
+ And the "Enter your search term" field should contain "item"
+ And I should see "Sep 30, 2012 - Oct 15, 2012" within the current time filter
+ And I should see "Best match" within the current sort by filter
+ And the "From" field should contain "9/30/2012"
+ And the "To" field should contain "10/15/2012"
+ And I should see a link to "Third item" with url for "http://www.whitehouse.gov/news/3"
+ And I should not see a link to "Fourth item"
+
+ When I follow "Any time"
+ Then I should see "Press" within the SERP active navigation
+ And the "Enter your search term" field should contain "item"
+ And I should see "Any time" within the current time filter
+ And I should see "Best match" within the current sort by filter
+
+ When I fill in "From" with "9/30/2012"
+ And I fill in "To" with "10/15/2012"
+ And I press "Search" within the custom date search form
+ And I follow "Best match"
+ And I follow "Clear"
+
+ Then I should see "Press" within the SERP active navigation
+ And the "Enter your search term" field should contain "item"
+ And I should see "Any time" within the current time filter
+ And I should see "Most recent" within the current sort by filter
+
+ When I am on es.agency.gov's search page
+ And I fill in "Ingrese su búsqueda" with "item"
+ And I press "Buscar" within the search box
+ And I follow "Noticias" within the SERP navigation
+
+ When I fill in "Desde" with "30/9/2012"
+ And I fill in "Hasta" with "15/10/2012"
+ And I press "Buscar" within the custom date search form
+
+ Then I should see "Noticias" within the SERP active navigation
+ And the "Ingrese su búsqueda" field should contain "item"
+ And I should see "sep 30, 2012 - oct 15, 2012" within the current time filter
+ And I should see "Más recientes" within the current sort by filter
+ And the "Desde" field should contain "30/9/2012"
+ And the "Hasta" field should contain "15/10/2012"
+ And I should see a link to "Fifth Spanish item" with url for "http://www.gobiernousa.gov/news/5"
+ And I should not see a link to "Sixth Spanish item"
+
+ When I follow "Más relevantes"
+ Then I should see "Noticias" within the SERP active navigation
+ And the "Ingrese su búsqueda" field should contain "item"
+ And I should see "sep 30, 2012 - oct 15, 2012" within the current time filter
+ And I should see "Más relevantes" within the current sort by filter
+ And the "Desde" field should contain "30/9/2012"
+ And the "Hasta" field should contain "15/10/2012"
+ And I should see a link to "Fifth Spanish item" with url for "http://www.gobiernousa.gov/news/5"
+ And I should not see a link to "Sixth Spanish item"
+
+ When I follow "Cualquier fecha"
+ Then I should see "Noticias" within the SERP active navigation
+ And the "Ingrese su búsqueda" field should contain "item"
+ And I should see "Cualquier fecha" within the current time filter
+ And I should see "Más relevantes" within the current sort by filter
+
+ When I fill in "Desde" with "30/9/2012"
+ And I fill in "Hasta" with "15/10/2012"
+ And I press "Buscar" within the custom date search form
+ And I follow "Más relevantes"
+ And I follow "Borrar"
+
+ Then I should see "Noticias" within the SERP active navigation
+ And the "Ingrese su búsqueda" field should contain "item"
+ And I should see "Cualquier fecha" within the current time filter
+ And I should see "Más recientes" within the current sort by filter
+
+ Scenario: Media RSS search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | BingV7 |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable | show_only_media_content |
+ | Images | http://en.agency.gov/feed/images | true | true |
+ And there are 10 image news items for "Images"
+ When I am on en.agency.gov's "Images" news search page
+ And I fill in "Enter your search term" with "image"
+ And I press "Search" within the search box
+ Then I should see exactly "10" image search results
+ And I should see "Powered by Search.gov"
+
+ Scenario: Video news search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | youtube_handles | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | usgovernment,whitehouse | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | gobiernousa | BingV7 |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable | is_managed |
+ | Videos | | true | true |
+ And affiliate "es.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable | is_managed |
+ | Videos | | true | true |
+ And there are 20 video news items for "usgovernment_channel_id"
+ And there are 20 video news items for "whitehouse_channel_id"
+ And there are 5 video news items for "gobiernousa_channel_id"
+
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "video"
+ And I press "Search"
+ Then I should see exactly "1" video govbox search result
+ And I should see "More videos about video"
+
+ When I follow "Videos" within the SERP navigation
+ Then I should see 1 search result title link with url for "http://www.youtube.com/watch?v=0_usgovernment_channel_id"
+ And I should see "Powered by Search.gov"
+ And I should see exactly "20" video search results
+ And I should see "Previous"
+ And I should see a link to "2" with class "pagination-numbered-link"
+ And I should see a link to "Next"
+
+ When I follow "Next"
+ Then I should see exactly "20" video search results
+ And I should see a link to "Previous"
+ And I should see a link to "1" with class "pagination-numbered-link"
+ And I should see "Next"
+
+ When I follow "Previous"
+ And I follow "2"
+ Then I should see exactly "20" video search results
+
+ When I follow "1"
+ Then I should see exactly "20" video search results
+
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "video usgovernment_channel_id 5"
+ And I press "Search"
+ Then I should see at least "1" video govbox search result
+ And I should not see "More videos about video usgovernment_channel_id 5"
+
+ When I am on es.agency.gov's search page
+ And I fill in "Ingrese su búsqueda" with "video"
+ And I press "Buscar"
+ Then I should see exactly "1" video govbox search results
+ And I should see "Más videos sobre de video"
+
+ When I follow "Videos" within the SERP navigation
+ Then I should see "Generado por Search.gov"
+ And I should see at least "5" video search results
+
+ Scenario: Site search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | BingV7 |
+
+ And affiliate "en.agency.gov" has the following document collections:
+ | name | prefixes |
+ | USA.gov | https://www.usa.gov |
+
+ And affiliate "es.agency.gov" has the following document collections:
+ | name | prefixes |
+ | GobiernoUSA.gov | https://gobierno.usa.gov |
+
+ When I am on en.agency.gov's "USA.gov" mobile site search page
+ And I fill in "Enter your search term" with "gov"
+ And I press "Search"
+ Then I should see Powered by Bing logo
+ And I should see at least "10" web search results
+
+ When I am on es.agency.gov's "GobiernoUSA.gov" mobile site search page
+ And I fill in "Ingrese su búsqueda" with "gobierno"
+ And I press "Buscar"
+ Then I should see Generado por Bing logo
+ And I should see at least "7" web search results
+
+ Scenario: Site navigations without dropdown menu
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ And affiliate "en.agency.gov" has the following document collections:
+ | name | prefixes |
+ | Blog | http://blog.usa.gov/ |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Articles | http://en.agency.gov/feed/articles | true |
+ And there are 10 news items for "Articles"
+ When I am on en.agency.gov's mobile search page
+ Then I should see "Everything" within the SERP active navigation
+
+ When I fill in "Enter your search term" with "news"
+ And I press "Search"
+ Then I should see "Everything" within the SERP active navigation
+ And I should see at least "10" web search results
+
+ When I follow "Blog" within the SERP navigation
+ And I press "Search"
+ Then I should see "Blog" within the SERP active navigation
+ And I should see at least "1" web search results
+
+ When I follow "Articles" within the SERP navigation
+ Then I should see "Articles" within the SERP active navigation
+ And I should see at least "10" web search results
+
+ Scenario: Site navigations with dropdown menu
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | navigation_dropdown_label | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | My-awesome-label | BingV7 |
+ And affiliate "en.agency.gov" has the following document collections:
+ | name | prefixes | position | is_navigable |
+ | FAQs | http://answers.usa.gov/ | 0 | true |
+ | Apps | https://www.data.gov | 2 | true |
+ | Inactive site search | http://apps.usa.gov/ | 6 | false |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable | position | show_only_media_content | oasis_mrss_name |
+ | Articles | http://en.agency.gov/feed/articles | true | 1 | false | |
+ | Blog | http://en.agency.gov/feed/blog | true | 3 | false | |
+ | Media RSS | http://en.agency.gov/feed/images | true | 4 | true | 100 |
+ | Inactive news search | http://en.agency.gov/feed/news1 | false | 5 | false | |
+ | News | http://en.agency.gov/feed/news2 | true | 7 | false | |
+ And there are 10 news items for "News"
+
+ When I am on en.agency.gov's mobile search page
+ Then I should see "Everything" within the SERP active navigation
+ And I fill in "Enter your search term" with "news"
+ And I press "Search"
+
+ Then I should see "Everything" within the SERP active navigation
+ And I should see "Everything FAQs Articles My-awesome-label Apps Blog News" within the SERP navigation
+ And I should see at least "10" web search results
+
+ When I follow "News" within the SERP navigation
+ Then I should see "News" within the SERP active navigation
+ And I should see "Everything FAQs News My-awesome-label Articles Apps Blog" within the SERP navigation
+ And I should see at least "10" web search results
+
+ When I follow "Apps" within the SERP navigation
+ Then I should see "Apps" within the SERP active navigation
+ And I should see "Everything FAQs Apps My-awesome-label Articles Blog News" within the SERP navigation
+ And I fill in "Enter your search term" with "app"
+ And I press "Search"
+ And I should see at least "1" web search results
+
+ When I am on en.agency.gov's "Inactive site search" mobile site search page
+ Then I should see "Inactive site search" within the SERP active navigation
+
+ When I am on en.agency.gov's "Inactive news search" mobile news search page
+ Then I should see "Inactive news search" within the SERP active navigation
+
+ Scenario: Job search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | jobs_enabled | search_engine |
+ | English site | usagov | admin@agency.gov | John Bar | 1 | BingV7 |
+ When I am on usagov's mobile search page
+ And I fill in "Enter your search term" with "jobs"
+ And I press "Search"
+ Then I should see "Federal Job Openings"
+ And I should see an image link to "USAJobs.gov" with url for "https://www.usajobs.gov/"
+ And I should see a link to "More federal job openings on USAJobs.gov" with url for "https://www.usajobs.gov/Search/Results?hp=public"
+
+ Scenario: When using tablet device
+ Given I am using a mobile device
+ And the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | search_engine |
+ | bar site | bar.gov | aff@bar.gov | John Bar | BingV7 |
+ When I am on bar.gov's search page
+ And I fill in "Enter your search term" with "bar"
+ And I press "Search"
+ And I should see at least "2" web search results
+
+ Scenario: Searching with matching med topic query
+ Given the following Medline Topics exist:
+ | medline_tid | medline_title | medline_url | locale | summary_html |
+ | 1558 | Alcohol | https://www.nlm.nih.gov/medlineplus/alcohol.html | en |
If you are like many Americans, you drink alcohol at least occasionally. For many people, moderate drinking is probably safe. It may even have health benefits, including reducing your risk of certain heart problems.
|
+ | 1313 | Underage Drinking | https://www.nlm.nih.gov/medlineplus/underagedrinking.html | en | It is possible to drink legally and safely - when you're over 21. But if you're under 21, or if you drink too much at any age, alcohol can be especially risky.
|
+ | 1732 | Alcohol | https://www.nlm.nih.gov/medlineplus/spanish/alcohol.html | es | Si usted es como muchos estadounidenses, quizás consuma bebidas alcohólicas por lo menos ocasionalmente. Para muchas personas, beber moderadamente probablemente sea sano. Quizá hasta puede tener beneficios para la salud, entre los que se incluye disminuir el riesgo de padecer algunos problemas cardiacos. |
+ And the following Related Medline Topics for "Alcohol" in English exist:
+ | medline_title | medline_tid | url |
+ | Underage drinking | 1313 | https://www.nlm.nih.gov/medlineplus/underagedrinking.html |
+ And the following Related Medline Topics for "Alcohol" in Spanish exist:
+ | medline_title | medline_tid | url |
+ | Alcoholismo | 1733 | https://www.nlm.nih.gov/medlineplus/spanish/alcoholism.html |
+ And the following Medline Sites exist:
+ | medline_title | locale | title | url |
+ | Alcohol | en | Alcoholism | http://clinicaltrials.gov/search/open/condition=%22Alcoholism%22 |
+ And the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | is_medline_govbox_enabled | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | true | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | true | BingV7 |
+ When I am on en.agency.gov's mobile search page
+ And I fill in "Enter your search term" with "alcohol"
+ And I press "Search"
+ Then I should see a link to "Alcohol" with url for "https://www.nlm.nih.gov/medlineplus/alcohol.html" within the med topic govbox
+ And I should see a link to "Underage drinking" with url for "https://www.nlm.nih.gov/medlineplus/underagedrinking.html" within the med topic govbox
+ And I should see a link to "Alcoholism" with url for "http://clinicaltrials.gov/search/open/condition=%22Alcoholism%22" within the med topic govbox
+
+ When I am on es.agency.gov's mobile search page
+ And I fill in "Ingrese su búsqueda" with "alcohol"
+ And I press "Buscar"
+ Then I should see a link to "Alcohol" with url for "https://www.nlm.nih.gov/medlineplus/spanish/alcohol.html" within the med topic govbox
+ And I should see a link to "Alcoholismo" with url for "https://www.nlm.nih.gov/medlineplus/spanish/alcoholism.html" within the med topic govbox
+
+ Scenario: Searching with sitelimit
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | domains | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | .gov | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | .gov | BingV7 |
+ When I am on en.agency.gov's search page with site limited to "usa.gov"
+ And I fill in "Enter your search term" with "gov"
+ And I press "Search"
+ Then I should see "We're including results for gov from usa.gov only."
+ And I should see "Do you want to see results for gov from all sites?"
+ When I follow "gov from all sites" within the search all sites row
+ Then I should not see "We're including results for gov from usa.gov only."
+
+ When I am on es.agency.gov's search page with site limited to "usa.gov"
+ And I fill in "Ingrese su búsqueda" with "gobierno"
+ And I press "Buscar"
+ Then I should see "Los resultados para gobierno son solo de usa.gov."
+ And I should see "¿Quiere ver resultados para gobierno de todos los sitios?"
+ When I follow "gobierno de todos los sitios" within the search all sites row
+ Then I should not see "Los resultados para gobierno son solo de usa.gov."
+
+ Scenario: Searching with matching results on news govbox
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | BingV7 |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Press | http://en.agency.gov/feed/press | true |
+ | Photos | http://en.agency.gov/feed/photos | true |
+ And the rss govbox is enabled for the site "en.agency.gov"
+ And affiliate "es.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Noticias | http://es.agency.gov/feed/noticias | true |
+ And the rss govbox is enabled for the site "es.agency.gov"
+ And feed "Press" has the following news items:
+ | link | title | guid | published_ago | multiplier | description |
+ | http://en.agency.gov/press/1 | First press item | pressuuid1 | day | 1 | First news item for the feed |
+ | http://en.agency.gov/press/2 | Second item | pressuuid2 | day | 1 | item Next news item for the feed |
+ And feed "Photos" has the following news items:
+ | link | title | guid | published_ago | multiplier | description |
+ | http://en.agency.gov/photos/1 | First photo item | photouuid1 | day | 1 | First news item for the feed |
+ | http://en.agency.gov/photos/2 | Second item | photouuid2 | day | 1 | item Next news item for the feed |
+ | http://en.agency.gov/press/1 | First duplicate press item | pressuuid1 | day | 7 | First news item for the feed |
+ And feed "Noticias" has the following news items:
+ | link | title | guid | published_ago | multiplier | description |
+ | http://es.agency.gov/noticias/1 | Noticia uno item | noticiauuid1 | day | 1 | First news item for the feed |
+ | http://es.agency.gov/noticias/2 | Second item | noticiauuid2 | day | 1 | item Next news item for the feed |
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "first item"
+ And I press "Search"
+ Then I should see "First press item "
+ And I should see "Press 1 day ago"
+ And I should not see "First duplicate"
+
+ When I am on es.agency.gov's search page
+ And I fill in "Ingrese su búsqueda" with "noticia uno"
+ And I press "Buscar"
+ Then I should see "Noticia uno item "
+ And I should see "Noticias Ayer"
+
+ Scenario: Searching on sites with related sites
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | related_sites_dropdown_label | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | Search On | BingV7 |
+ | All sites | all.agency.gov | admin@agency.gov | John Bar | en | | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | | BingV7 |
+ And the following Connections exist for the affiliate "en.agency.gov":
+ | connected_affiliate | display_name |
+ | es.agency.gov | Este tema en español |
+ | all.agency.gov | All sites |
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "gobierno"
+ And I press "Search"
+ Then I should see "Search On"
+ And I should see a link to "Este tema en español"
+ And I should see a link to "All sites"
+ When I follow "Este tema en español" within the SERP navigation
+ Then I should see the browser page titled "gobierno - Spanish site resultados de la búsqueda"
+
+ Scenario: Searching on sites with federal register documents
+ And the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | agency_abbreviation | is_federal_register_document_govbox_enabled | domains | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | DOC | true | noaa.gov | BingV7 |
+ And the following Federal Register Document entries exist:
+ | federal_register_agencies | document_number | document_type | title | publication_date | comments_close_in_days | start_page | end_page | page_length | html_url |
+ | DOC,IRS,ITA,NOAA | 2014-13420 | Notice | Proposed Information Collection; Comment Request | 2014-06-09 | 7 | 33040 | 33041 | 2 | https://www.federalregister.gov/articles/2014/06/09/2014-13420/proposed-information-collection-comment-request |
+ | DOC, NOAA | 2013-20176 | Rule | Atlantic Highly Migratory Species; Atlantic Bluefin Tuna Fisheries | 2013-08-19 | | 50346 | 50347 | 2 | https://www.federalregister.gov/articles/2013/08/19/2013-20176/atlantic-highly-migratory-species-atlantic-bluefin-tuna-fisheries |
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "collection"
+ And I press "Search"
+ Then I should see a link to "Proposed Information Collection; Comment Request" with url for "https://www.federalregister.gov/articles/2014/06/09/2014-13420/proposed-information-collection-comment-request"
+ And I should see "A Notice by the Internal Revenue Service, the International Trade Administration and the National Oceanic and Atmospheric Administration posted on June 9, 2014."
+ And I should see "Comment period ends in 7 days"
+ And I should see "Pages 33040 - 33041 (2 pages) [FR DOC #: 2014-13420]"
+
+ And I fill in "Enter your search term" with "Tuna"
+ And I press "Search"
+ Then I should see a link to "Atlantic Highly Migratory Species; Atlantic Bluefin Tuna Fisheries" with url for "https://www.federalregister.gov/articles/2013/08/19/2013-20176/atlantic-highly-migratory-species-atlantic-bluefin-tuna-fisheries"
+ And I should see "A Rule by the National Oceanic and Atmospheric Administration posted on August 19, 2013."
+
+ Scenario: Advanced search
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ | Spanish site | es.agency.gov | admin@agency.gov | John Bar | es | BingV7 |
+ And affiliate "en.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Articles | http://en.agency.gov/feed/articles | true |
+ And affiliate "es.agency.gov" has the following RSS feeds:
+ | name | url | is_navigable |
+ | Artículos | http://es.agency.gov/feed/articles | true |
+ When I am on en.agency.gov's advanced search page
+ Then I should see "Everything" within the SERP active navigation
+ And the "Moderate" radio button should be checked
+
+ When I fill in "All of these words" with "allofit"
+ And I fill in "This exact phrase" with "exact"
+ And I fill in "Any of these words" with "any"
+ And I fill in "None of these words" with "bad"
+ And I select "Adobe PDF" from "File Type"
+ And I press "Advanced Search"
+ And the "Enter your search term" field should contain "allofit \"exact\" \-bad \(any\) filetype:pdf"
+
+ Scenario: SEC Edgar sitelinks
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | domains | search_engine |
+ | Edgar site | sec-edgar | admin@agency.gov | John Bar | www.sec.gov/archives/edgar | BingV7 |
+ | News site | sec-news | admin@agency.gov | John Bar | www.sec.gov/news | BingV7 |
+ And affiliate "sec-news" has the following document collections:
+ | name | prefixes | is_navigable |
+ | Edgar | sec.gov/archives/edgar | true |
+ When I am on sec-edgar's search page
+ And I fill in "Enter your search term" with "fannie mae"
+ And I press "Search"
+ Then I should see a link to "Most Recent Filings for this Company"
+ And I should see a link to "Full Filing"
+
+ When I am on sec-news's search page
+ And I fill in "Enter your search term" with "fannie mae"
+ And I press "Search"
+ And I follow "Edgar" within the SERP navigation
+ Then I should see a link to "Most Recent Filings for this Company"
+ And I should see a link to "Full Filing"
+
+ Scenario: Custom page 1 results pointer
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine | page_one_more_results_pointer |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 | Wherever. Try your search again to see results |
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "gov"
+ And I press "Search"
+ Then I should see "Wherever. Try your search again to see results"
+
+ When I follow "Next"
+ Then I should not see "Wherever. Try your search again to see results"
+
+ Scenario: Custom no results pointer
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine | no_results_pointer |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 | NORESULTS. Try your search again to see results |
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "lkssldfkjsldfkjsldkfjsldkjflsdkjflskdjfwer"
+ And I press "Search"
+ Then I should see "NORESULTS. Try your search again to see results"
+
+ Scenario: Web search on Kalaallisut site
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | Kalaallisut site | kl.agency.gov | admin@agency.gov | John Bar | kl | BingV7 |
+ When I am on kl.agency.gov's mobile search page
+ Then I should see "Ujarniakkat ataani allaffissamut allaguk"
+
+ Scenario: Web search using Bing engine
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine | domains |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 | .gov |
+ And affiliate "en.agency.gov" has the following document collections:
+ | name | prefixes |
+ | USA.gov | https://www.usa.gov |
+ When I am on en.agency.gov's search page
+ And I fill in "Enter your search term" with "agency"
+ And I press "Search"
+ Then I should see at least "10" web search results
+ And I should see Powered by Bing logo
+
+ When I follow "USA.gov" within the SERP navigation
+ Then I should see "USA.gov" within the SERP active navigation
+ And I should see at least "10" web search results
+ And I should see Powered by Bing logo
+
+
+ Scenario: Display an Alert on search page
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | locale | search_engine |
+ | English site | en.agency.gov | admin@agency.gov | John Bar | en | BingV7 |
+ Given the following Alert exists:
+ | affiliate | text | status | title |
+ | en.agency.gov| New alert for the test aff | Active | Test Title |
+ When I am on en.agency.gov's search page
+ Then I should see "New alert for the test aff"
+ Given the following Alert exists:
+ | affiliate | text | status | title |
+ | en.agency.gov| New alert for the test aff | Inactive | Test Title |
+ When I am on en.agency.gov's search page
+ Then I should not see "New alert for the test aff"
+
+ Scenario: English Image search
+ Given the following legacy Affiliates exist:
+ | display_name | name | contact_email | contact_name | header | domains | search_engine |
+ | USA.gov | usagov | aff@bar.gov | John Bar | USA.gov Header | whitehouse.gov | BingV7 |
+ When I am on usagov's image search page
+ When I fill in "query" with "White House"
+ And I press "Search"
+ Then I should see the browser page titled "White House - USA.gov Search Results"
+ And I should see 20 image results
+ And I should see Powered by Bing logo
+
+ Scenario: Image search with spelling suggestion
+ Given the following Affiliates exist:
+ | display_name | name | contact_email | contact_name | search_engine |
+ | USA.gov | usagov | aff@bar.gov | John Bar | BingV7 |
+ And the following Suggestion Blocks exist:
+ | query |
+ | ebuy |
+ When I am on usagov's image search page
+ When I fill in "query" with "ebuy"
+ And I press "Search"
+ Then I should not see "Showing results for ebay"
+
+ Scenario: Spanish image search
+ Given the following legacy Affiliates exist:
+ | display_name | name | contact_email | contact_name | header | locale | search_engine |
+ | GobiernoUSA.gov | gobiernousa | aff@bar.gov | John Bar | Gobierno.USA.gov Header | es | BingV7 |
+ When I am on gobiernousa's image search page
+ When I fill in "query" with "Barcelona"
+ And I press "Buscar"
+ And I should see the browser page titled "Barcelona - GobiernoUSA.gov resultados de la búsqueda"
+ And I should see 20 image results
diff --git a/features/vcr_cassettes/Administration/Comparing_Search_Results.yml b/features/vcr_cassettes/Administration/Comparing_Search_Results.yml
index 6e7a202820..22f5b22fab 100644
--- a/features/vcr_cassettes/Administration/Comparing_Search_Results.yml
+++ b/features/vcr_cassettes/Administration/Comparing_Search_Results.yml
@@ -70,4 +70,72 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:09:39 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=america%20(site:aff.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:34:20 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0E2AE3E5892764001C8BEF4988F06558; path=/; expires=Sat, 14-Dec-2019 22:35:20
+ GMT; domain=bingapis.com
+ - MUIDB=0E2AE3E5892764001C8BEF4988F06558; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:35:20 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:35:20 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=FBF30ED0F33B49C2BC37056476D89C60&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:35:20 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:35:20
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3D6A4811B2D061DD219044BDB30760BA; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:35:20 GMT; domain=bingapis.com
+ - _SS=SID=3D6A4811B2D061DD219044BDB30760BA; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 8A7BC8CD3635409E940F8D6B6A1B98E7
+ X-Msedge-Clientid:
+ - 0E2AE3E5892764001C8BEF4988F06558
+ X-Msapi-Userstate:
+ - '9858'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 8A7BC8CD3635409E940F8D6B6A1B98E7 Ref B: CO1EDGE0218 Ref C: 2018-11-19T22:35:20Z'
+ Date:
+ - Mon, 19 Nov 2018 22:35:20 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=31A0BCEF88C04E0884DE021CBD914185&CID=0E2AE3E5892764001C8BEF4988F06558&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=31A0BCEF88C04E0884DE021CBD914185&CID=0E2AE3E5892764001C8BEF4988F06558&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:35:20 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Affiliate_Search/Searching_news_items_using_time_filters.yml b/features/vcr_cassettes/Affiliate_Search/Searching_news_items_using_time_filters.yml
index 243206cfea..9c9967906c 100644
--- a/features/vcr_cassettes/Affiliate_Search/Searching_news_items_using_time_filters.yml
+++ b/features/vcr_cassettes/Affiliate_Search/Searching_news_items_using_time_filters.yml
@@ -206,4 +206,232 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:43 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4409'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:28 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2F191E0D513466BC1EA512A150E36724; path=/; expires=Sat, 14-Dec-2019 22:43:29
+ GMT; domain=bingapis.com
+ - MUIDB=2F191E0D513466BC1EA512A150E36724; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:43:29 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:43:28 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=0DC0BCAB0FC54AA288F26DCCFC0B451D&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:43:28 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:43:28
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2A5FC433A42E6284363AC89FA5F963CE; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:43:29 GMT; domain=bingapis.com
+ - _SS=SID=2A5FC433A42E6284363AC89FA5F963CE; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 14576D65069D44A68DAAB698EFFEF5D1
+ X-Msedge-Clientid:
+ - 2F191E0D513466BC1EA512A150E36724
+ X-Msapi-Userstate:
+ - 33bd
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 14576D65069D44A68DAAB698EFFEF5D1 Ref B: CO1EDGE0512 Ref C: 2018-11-19T22:43:29Z'
+ Date:
+ - Mon, 19 Nov 2018 22:43:28 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=EFC4721F32BD4D49925589DA3C9E1EDD&CID=2F191E0D513466BC1EA512A150E36724&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=EFC4721F32BD4D49925589DA3C9E1EDD&CID=2F191E0D513466BC1EA512A150E36724&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5409.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "hours
+ per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "NPIS -
+ Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "DefenseLINK -- Official Web Site of the U.S. Department of ...",
+ "url": "https:\/\/www.loc.gov\/item\/lcwa00010108\/", "urlPingSuffix": "DevEx,5096.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/lcwa00010108", "snippet":
+ "U.S. Department of Defense Contributor Names United States. Dept. of Defense.
+ ... Responsibility for making an independent legal assessment of an item
+ and securing any necessary permissions ultimately rests with the person desiring
+ to use the item. You will need permission from the copyright owners or rights
+ holders for reproduction ...", "dateLastCrawled": "2018-11-15T13:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5108.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Item Name", "url": "https:\/\/public.logisticsinformationservice.dla.mil\/H6\/NameLookup.aspx",
+ "urlPingSuffix": "DevEx,5120.1", "displayUrl": "https:\/\/public.logisticsinformationservice.dla.mil\/H6\/NameLookup.aspx",
+ "snippet": "This Site describes the products and services that DLA Logistics
+ Information Service provides.", "dateLastCrawled": "2018-11-15T22:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Articles
+ of confederation and perpetual union between the ...", "url": "https:\/\/www.loc.gov\/item\/rbpe.17802600\/",
+ "urlPingSuffix": "DevEx,5134.1", "displayUrl": "https:\/\/www.loc.gov\/item\/rbpe.17802600",
+ "snippet": "The Library of Congress is unaware of, or has been unable to
+ identify a copyright owner and\/or information about any possible or likely
+ copyright owner, and makes this item available as an exercise of fair use
+ for educational, not-for-profit purposes only.", "dateLastCrawled": "2018-11-06T20:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5148.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Colonel
+ Roosevelt is invited to fly ... - Library of Congress", "url": "https:\/\/www.loc.gov\/item\/mp76000114",
+ "urlPingSuffix": "DevEx,5162.1", "about": [{"name": "Archibald Hoxsey"}],
+ "displayUrl": "https:\/\/www.loc.gov\/item\/mp76000114", "snippet": "This
+ catalog data provides the details known to the Library of Congress regarding
+ the corresponding item and may assist users in making independent assessments
+ of the legal status of these items as related to their desired uses.", "dateLastCrawled":
+ "2018-05-10T18:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Carnaval, San Francisco, California | Library of Congress", "url":
+ "https:\/\/www.loc.gov\/item\/2013630039\/", "urlPingSuffix": "DevEx,5176.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2013630039", "snippet": "Carnaval,
+ San Francisco, California Title, date, and keywords provided by the photographer.
+ The San Francisco Bay Area Carnaval season begins in February. Groups from
+ The Mission District, a metro center for the many different Spanish speaking
+ populations of Latin America, will often participate in the parade.", "dateLastCrawled":
+ "2018-03-25T01:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Pay Item Catalog - NYSDOT Home", "url": "https:\/\/www.dot.ny.gov\/main\/business-center\/engineering\/specifications\/pay-item-catalog",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.dot.ny.gov\/...\/engineering\/specifications\/pay-item-catalog",
+ "snippet": "Pay Item Catalog NYSDOT''s Web-based Electronic Pay Item Catalog
+ , e-PIC , provides more current information than the Microsoft Access-based
+ application it replaced. Item changes will generally appear in e-PIC the
+ day after they are entered into the TRNS•PORT system.", "dateLastCrawled":
+ "2018-11-13T09:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "[Suffragists Protest Woodrow Wilson''s Opposition to Woman ...",
+ "url": "https:\/\/www.loc.gov\/item\/mnwp000288", "urlPingSuffix": "DevEx,5208.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/mnwp000288", "snippet": "Title
+ [Suffragists Protest Woodrow Wilson''s Opposition to Woman Suffrage, October
+ 1916] Contributor Names Burke & Atwell, Chicago (Photographer)", "dateLastCrawled":
+ "2018-11-15T08:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Integrated Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5222.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "World War I
+ | Library of Congress", "url": "https:\/\/www.loc.gov\/item\/ihas.200197499\/",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "https:\/\/www.loc.gov\/item\/ihas.200197499",
+ "snippet": "The most popular song of the early days of World War I, and
+ one of the songs indelibly linked to it, was \"It''s a Long, Long Way to Tipperary.\"The
+ song was a recent hit of the British music halls at the outbreak of the war,
+ and was being sung by marching soldiers from the first weeks of the conflict.",
+ "dateLastCrawled": "2018-08-14T23:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Road Item Lists - Tennessee", "url": "https:\/\/www.tdot.tn.gov\/APPLICATIONS\/RoadwayItems",
+ "urlPingSuffix": "DevEx,5250.1", "displayUrl": "https:\/\/www.tdot.tn.gov\/APPLICATIONS\/RoadwayItems",
+ "snippet": "(Note: To display the entire list, search with out entering any
+ Keyword or Item Number. Partial Item Numbers and Partial Description Keywords
+ are allowed in the search.)", "dateLastCrawled": "2018-11-12T09:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Management
+ Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5263.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "The case
+ of Dred Scott in the United States Supreme Court ...", "url": "https:\/\/www.loc.gov\/item\/10034357\/",
+ "urlPingSuffix": "DevEx,5275.1", "displayUrl": "https:\/\/www.loc.gov\/item\/10034357",
+ "snippet": "Also available on microfilm (Microfilm 21984), and in digital
+ form on the Library of Congress Web site.", "dateLastCrawled": "2018-11-04T11:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5287.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Generalized
+ Anxiety Disorder 7-item (GAD-7) scale", "url": "https:\/\/www.integration.samhsa.gov\/clinical-practice\/GAD708.19.08Cartwright.pdf",
+ "urlPingSuffix": "DevEx,5299.1", "displayUrl": "https:\/\/www.integration.samhsa.gov\/clinical-practice\/GAD708.19.08...",
+ "snippet": "Generalized Anxiety Disorder 7-item (GAD-7) scale Over the
+ last 2 weeks, how often have you been bothered by the following problems?
+ Not at all sure", "dateLastCrawled": "2018-11-16T11:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5312.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:29 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Blended_Search/A_site_that_gets_commercial_results.yml b/features/vcr_cassettes/Blended_Search/A_site_that_gets_commercial_results.yml
index fe4eaaa3a2..4af0730635 100644
--- a/features/vcr_cassettes/Blended_Search/A_site_that_gets_commercial_results.yml
+++ b/features/vcr_cassettes/Blended_Search/A_site_that_gets_commercial_results.yml
@@ -207,4 +207,216 @@ http_interactions:
{"answerType": "Videos"}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:15:32 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=news%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3516'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:20 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0B1CBEAF363065F605BEB20337E76460; path=/; expires=Sat, 14-Dec-2019 22:39:20
+ GMT; domain=bingapis.com
+ - MUIDB=0B1CBEAF363065F605BEB20337E76460; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:20 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:20 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C54BD12942F54BFD899A58AAABFE9555&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:20 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:20
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0BD5B74198B3661606E4BBED99646778; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:20 GMT; domain=bingapis.com
+ - _SS=SID=0BD5B74198B3661606E4BBED99646778; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FF61F8A9000A4ECEAF6125E5B18FEEC0
+ X-Msedge-Clientid:
+ - 0B1CBEAF363065F605BEB20337E76460
+ X-Msapi-Userstate:
+ - a488
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FF61F8A9000A4ECEAF6125E5B18FEEC0 Ref B: CO1EDGE0116 Ref C: 2018-11-19T22:39:20Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:20 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=BC1027CBCAFF4D368296ACA14A959F13&CID=0B1CBEAF363065F605BEB20337E76460&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=BC1027CBCAFF4D368296ACA14A959F13&CID=0B1CBEAF363065F605BEB20337E76460&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5411.1", "totalEstimatedMatches": 30900000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "News | NSF - National Science Foundation", "url": "https:\/\/nsf.gov\/news\/",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/nsf.gov\/news",
+ "snippet": "NSF''s mission is to advance the progress of science, a mission
+ accomplished by funding proposals for research and education made by scientists,
+ engineers, and educators from across the country.", "dateLastCrawled": "2018-11-15T09:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "News
+ | USCIS", "url": "https:\/\/www.uscis.gov\/news", "urlPingSuffix": "DevEx,5073.1",
+ "displayUrl": "https:\/\/www.uscis.gov\/news", "snippet": "Here we have
+ the latest news within the immigration benefit world, handled by U.S. Citizenship
+ and Immigration Services (USCIS). Both news media and general public can
+ find important information about", "dateLastCrawled": "2018-11-16T02:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "News
+ Releases - News - usgs.gov", "url": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "snippet": "Browse through a comprehensive list of all USGS national and state
+ news items.", "dateLastCrawled": "2018-11-16T16:31:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "News | U.S.
+ Mint", "url": "https:\/\/www.usmint.gov\/news", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.usmint.gov\/news", "snippet": "See the latest
+ U.S. Mint news, events, and consumer alerts. Sign up for email updates and
+ see what is going on Inside the Mint.", "dateLastCrawled": "2018-11-18T07:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "News
+ | Homeland Security", "url": "https:\/\/www.dhs.gov\/news", "urlPingSuffix":
+ "DevEx,5106.1", "about": [{"name": "United States Department of Homeland Security"}],
+ "displayUrl": "https:\/\/www.dhs.gov\/news", "snippet": "News and important
+ communications from the Department of Homeland Security.", "dateLastCrawled":
+ "2018-11-15T23:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "News | HHS.gov", "url": "https:\/\/www.hhs.gov\/about\/news\/index.html",
+ "urlPingSuffix": "DevEx,5122.1", "about": [{"name": "United States Department
+ of Health and Human Services"}], "displayUrl": "https:\/\/www.hhs.gov\/about\/news",
+ "snippet": "Latest News Releases. Public Affairs Contacts. Visit our Public
+ Affairs Contacts page to access HHS media information as well as press office
+ contact information for ASPA and HHS operating divisions, staff divisions
+ and regional offices.", "dateLastCrawled": "2018-11-15T22:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "News
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/news\/", "urlPingSuffix":
+ "DevEx,5135.1", "displayUrl": "https:\/\/www.whitehouse.gov\/news", "snippet":
+ "Follow the latest updates from the Trump Administration, including briefings
+ and statements, Presidential actions, and news articles.", "dateLastCrawled":
+ "2018-11-16T01:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "News | Governor Andrew M. Cuomo", "url": "https:\/\/www.governor.ny.gov\/news",
+ "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "Andrew Cuomo"}], "displayUrl":
+ "https:\/\/www.governor.ny.gov\/news", "snippet": "The official website
+ of the 56th Governor of New York State, Andrew M. Cuomo. Find information
+ about the administration, issues, & news that affects you.", "dateLastCrawled":
+ "2018-11-16T12:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "News - USGS", "url": "https:\/\/www.usgs.gov\/news", "urlPingSuffix":
+ "DevEx,5163.1", "displayUrl": "https:\/\/www.usgs.gov\/news", "snippet":
+ "News Dive into the world of science! Read these stories and narratives
+ to learn about news items, hot topics, expeditions underway, and much more.",
+ "dateLastCrawled": "2018-11-09T18:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "News - Federal Aviation Administration", "url": "https:\/\/www.faa.gov\/news\/",
+ "urlPingSuffix": "DevEx,5177.1", "about": [{"name": "Federal Aviation Administration"}],
+ "displayUrl": "https:\/\/www.faa.gov\/news", "snippet": "A simple search
+ will return results that contain all of the specified words in the title or
+ in the body of the news story. The words may appear in any order. A phrase
+ search can be performed by enclosing the search string in quotes.", "dateLastCrawled":
+ "2018-11-16T04:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "News (U.S. National Park Service)", "url": "https:\/\/www.nps.gov\/aboutus\/news\/index.htm",
+ "urlPingSuffix": "DevEx,5191.1", "about": [{"name": "National Park Service"}],
+ "displayUrl": "https:\/\/www.nps.gov\/aboutus\/news", "snippet": "Wondering
+ what''s happening across the National Park Service? This is the place to
+ start. You can find links to news releases, subscribe to receive news
+ in your email, search for images and videos, discover facts and figures about
+ the National Park System, and learn how to contact media staff.", "dateLastCrawled":
+ "2018-10-16T09:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "News - News - Illinois.gov", "url": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "snippet": "News Articles. Passing of Mark A. Braun. Posted: 11\/9\/2018.
+ We regret to announce the passing of Mark A Braun. Mr. Braun was a valued
+ member of the Workers'' Compensation community and a member of the Illinois
+ Trial Lawyers Association.", "dateLastCrawled": "2018-11-15T13:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "News
+ | NIDDK", "url": "https:\/\/www.niddk.nih.gov\/news", "urlPingSuffix": "DevEx,5218.1",
+ "displayUrl": "https:\/\/www.niddk.nih.gov\/news", "snippet": "NIDDK News.
+ News and events from NIDDK-funded research and programs. Media Inquiries.
+ Advances in Health. Aug. 22, 2018. Learn about the new “Diabetes in America,”
+ a preeminent resource for scientific information on diabetes and its complications.",
+ "dateLastCrawled": "2018-11-11T15:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "News | NASA''s ARIA Maps California Wildfires from Space", "url":
+ "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278", "urlPingSuffix":
+ "DevEx,5233.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=ON.46AC640D6871B3F20785619219F1BFF5&pid=5.1&w=80&h=80&c=8",
+ "displayUrl": "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278",
+ "snippet": "The Advanced Rapid Imaging and Analysis (ARIA) team at NASA''s
+ Jet Propulsion Laboratory in Pasadena, California, created these Damage Proxy
+ Maps (DPMs) depicting areas in California likely damaged by the Woolsey and
+ Camp Fires.", "dateLastCrawled": "2018-11-15T21:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "News & Events | National Institutes of Health (NIH)", "url": "https:\/\/www.nih.gov\/news-events",
+ "urlPingSuffix": "DevEx,5245.1", "displayUrl": "https:\/\/www.nih.gov\/news-events",
+ "snippet": "News releases, events, videos, images, social media and outreach,
+ and more from the National Institutes of Health", "dateLastCrawled": "2018-11-15T19:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "News
+ & Events - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/news-events",
+ "urlPingSuffix": "DevEx,5259.1", "displayUrl": "https:\/\/www.cancer.gov\/news-events",
+ "snippet": "The latest cancer news from the U.S. government''s principal
+ agency for cancer research, plus resources designed for science writers and
+ reporters.", "dateLastCrawled": "2018-11-16T05:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "News — FBI", "url": "https:\/\/www.fbi.gov\/news\/", "urlPingSuffix":
+ "DevEx,5272.1", "displayUrl": "https:\/\/www.fbi.gov\/news", "snippet":
+ "Featured News, Latest News, Press Releases, Editor''s Pick and Feature
+ Photos, all the FBI News up to the minute.", "dateLastCrawled": "2018-11-15T05:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "All News",
+ "url": "http:\/\/www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "urlPingSuffix": "DevEx,5284.1", "displayUrl": "www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "snippet": "Maryland Recovers $81 million From Medicaid Technology Contractor
+ Baltimore Sun. Moving Co. Owner Accused of Overcharging Questioned in Court
+ NBCWashington", "dateLastCrawled": "2018-11-13T18:08:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "News | U.S.
+ Department of the Interior", "url": "https:\/\/www.doi.gov\/news", "urlPingSuffix":
+ "DevEx,5297.1", "displayUrl": "https:\/\/www.doi.gov\/news", "snippet":
+ "News from the Office of the Secretary of the Interior.", "dateLastCrawled":
+ "2018-11-16T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "News - Yellowstone National Park (U.S. National Park Service)",
+ "url": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm", "urlPingSuffix":
+ "DevEx,5311.1", "displayUrl": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm",
+ "snippet": "News Releases. Browse our latest news releases or subscribe
+ to our RSS feed.. Social Media. Social media provides a quick and easy way
+ for you to connect with us on a daily basis.. Photos, Sounds & Videos. Browse
+ our library of high-quality, public domain images on Flickr.Explore and download
+ the sounds of Yellowstone in our sound library.Check out our extensive video
+ collection of tours ...", "dateLastCrawled": "2018-09-09T02:38:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:21 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Image_search/English_Image_search.yml b/features/vcr_cassettes/Image_search/English_Image_search.yml
index 5aea1bb794..218a7650b5 100644
--- a/features/vcr_cassettes/Image_search/English_Image_search.yml
+++ b/features/vcr_cassettes/Image_search/English_Image_search.yml
@@ -484,4 +484,490 @@ http_interactions:
{"pivot": "(site:whitehouse.gov)", "suggestions": []}]}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:15:35 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=white%20house%20(site:whitehouse.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '94014'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2D511F2CA83A6D060A211380A9ED6C40; path=/; expires=Sat, 14-Dec-2019 22:39:25
+ GMT; domain=bingapis.com
+ - MUIDB=2D511F2CA83A6D060A211380A9ED6C40; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:25 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:24 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=4DC258D6DF4249BC8AA98B98CA966AE3&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:24 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:24
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3E0931E016CE60970A793D4C171961FF; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:25 GMT; domain=bingapis.com
+ - _SS=SID=3E0931E016CE60970A793D4C171961FF; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 471C7B0CE4CD4A3789E71D12421AE282
+ X-Msedge-Clientid:
+ - 2D511F2CA83A6D060A211380A9ED6C40
+ X-Msapi-Userstate:
+ - 142b
+ X-Msedge-Ref:
+ - 'Ref A: 471C7B0CE4CD4A3789E71D12421AE282 Ref B: CO1EDGE0310 Ref C: 2018-11-19T22:39:25Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:24 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=AB8D95216E61411FBDBCA2567C384269&CID=2D511F2CA83A6D060A211380A9ED6C40&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=AB8D95216E61411FBDBCA2567C384269&CID=2D511F2CA83A6D060A211380A9ED6C40&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=white%20house%20(site:whitehouse.gov)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5188.1", "totalEstimatedMatches": 105, "nextOffset":
+ 29, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=6D2D34DDA3F04CE3C814637ACBFF850188969934&simid=608025616397435160",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "About The White House |
+ The White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.vWpSQJSzVJ9lks69e2kbpAHaCx&pid=Api",
+ "datePublished": "2017-12-14T22:10:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/P20170614JB-0303-2-1920x720.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "357656 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house",
+ "width": 1920, "height": 720, "thumbnail": {"width": 474, "height": 177},
+ "imageInsightsToken": "ccid_vWpSQJSz*mid_6D2D34DDA3F04CE3C814637ACBFF850188969934*simid_608025616397435160",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "6D2D34DDA3F04CE3C814637ACBFF850188969934", "accentColor": "B11A26"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18&simid=608040648854406153",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "The White House Building
+ | The White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.TlRJvQlnk_hJVLgHxQU4DAHaCx&pid=Api",
+ "datePublished": "2018-10-05T16:05:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/35492069145_7d58e21088_k-1-1920x720.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-white-house\/",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "365382 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-white-house",
+ "width": 1920, "height": 720, "thumbnail": {"width": 474, "height": 177},
+ "imageInsightsToken": "ccid_TlRJvQln*mid_BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18*simid_608040648854406153",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18", "accentColor": "7B5A50"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=7B30B873411AC4D2575BAAEBD854247404669EE1&simid=608038574345817012",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "The Executive Branch |
+ whitehouse.gov", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.VtTAJ3NJvu3YE83YY_yfawHaDo&pid=Api",
+ "datePublished": "2015-04-03T23:46:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/1600\/page_masthead\/1600_executive_branch.jpg",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600\/executive-branch",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "213283 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/1600\/executive-branch",
+ "width": 800, "height": 393, "thumbnail": {"width": 474, "height": 232}, "imageInsightsToken":
+ "ccid_VtTAJ3NJ*mid_7B30B873411AC4D2575BAAEBD854247404669EE1*simid_608038574345817012",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7B30B873411AC4D2575BAAEBD854247404669EE1", "accentColor": "2665A5"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=C842520FBAAE820695E2E9DF39D29FAA113C1E30&simid=608052361171307410",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "President Trump Hosts Faith
+ Leaders at the White House | whitehouse.gov", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.ciJSod2ej_4Kzo0FrOhIkQHaE7&pid=Api",
+ "datePublished": "2017-05-04T19:20:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/P20170503SC-1494.jpg",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/blog\/2017\/05\/04\/president-trump-hosts-faith-leaders-white-house",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "2283410 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/blog\/2017\/05\/04\/president-trump-hosts...",
+ "width": 2048, "height": 1365, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_ciJSod2e*mid_C842520FBAAE820695E2E9DF39D29FAA113C1E30*simid_608052361171307410",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "C842520FBAAE820695E2E9DF39D29FAA113C1E30", "accentColor": "214B6B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838800476737194FE35BD7D&simid=607995839441800162",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Home Page | The White House",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.sb82N5yrT-BOcS9wudrRYAHaCx&pid=Api",
+ "datePublished": "2017-12-21T22:13:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/P20171220SKC-0293_1-1-1920x720.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "329622 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov", "width": 1920,
+ "height": 720, "thumbnail": {"width": 474, "height": 177}, "imageInsightsToken":
+ "ccid_sb82N5yr*mid_53513FFBBEDEC4707838800476737194FE35BD7D*simid_607995839441800162",
+ "imageId": "53513FFBBEDEC4707838800476737194FE35BD7D", "accentColor": "A92236"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=E0D364ECB84A080ED578357F7335746961EAED39&simid=608046653155640243",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "Photos of the Week: Christmas
+ at the White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.4-VJLpcY4fHo9-xPAl_UgAHaE8&pid=Api",
+ "datePublished": "2017-12-01T12:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/f20171120kd-0047_original-1-820x547.jpg",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-week-christmas-white-house\/",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "98292 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-week...",
+ "width": 820, "height": 547, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_4+VJLpcY*mid_E0D364ECB84A080ED578357F7335746961EAED39*simid_608046653155640243",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "E0D364ECB84A080ED578357F7335746961EAED39", "accentColor": "6F2D29"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=7EE781591D182839A8EF75D8B18B37AF2D8C3AB1&simid=608034622972038523",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "In Photos: Pope Francis
+ Visits the White House | whitehouse.gov", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.1GxurjZWSH_u2-OG_NjRHgHaE7&pid=Api",
+ "datePublished": "2015-09-25T16:39:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/email\/PopeFrancisPhoto19Sep23.jpeg",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis-visits-white-house",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "790323 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis...",
+ "width": 2000, "height": 1333, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_1GxurjZW*mid_7EE781591D182839A8EF75D8B18B37AF2D8C3AB1*simid_608034622972038523",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7EE781591D182839A8EF75D8B18B37AF2D8C3AB1", "accentColor": "286097"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0&simid=608022983647101646",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "About The White House |
+ The White House", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.LWQexhMC5cbyU43uA7UtRwHaEK&pid=Api",
+ "datePublished": "2017-12-14T22:10:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/IMG_5365-820x461.jpg",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "76171 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house",
+ "width": 820, "height": 461, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_LWQexhMC*mid_6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0*simid_608022983647101646",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0", "accentColor": "486337"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=ADE9DEAC634AFC7659974D16A275449793812A74&simid=608045802758865004",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "White House Easter Egg
+ Roll 2018 | The White House", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.kRhcxef8k3DP99QCww8-fQHaE7&pid=Api",
+ "datePublished": "2018-04-02T12:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/04\/EASTER01.jpg",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/white-house-easter-egg-roll-2018\/",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "120477 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/white-house-easter...",
+ "width": 680, "height": 453, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_kRhcxef8*mid_ADE9DEAC634AFC7659974D16A275449793812A74*simid_608045802758865004",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "ADE9DEAC634AFC7659974D16A275449793812A74", "accentColor": "A8232B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=CBF50BDF775F36773809C1D0478E1E1FFF13640C&simid=608035224272503272",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "President Trump Welcomes
+ Foxconn to the White House for a Major Jobs Announcement", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.g11wYu8BWTjRmwaZzsHQ8wHaE8&pid=Api",
+ "datePublished": "2018-07-05T16:55:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/P20170726SC-0585-820x547.jpg",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/articles\/president-trump-welcomes-foxconn-white-house-major-jobs-announcement\/",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "135227 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/articles\/president-trump-welcomes...",
+ "width": 820, "height": 547, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_g11wYu8B*mid_CBF50BDF775F36773809C1D0478E1E1FFF13640C*simid_608035224272503272",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "CBF50BDF775F36773809C1D0478E1E1FFF13640C", "accentColor": "A26B29"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838F708FB1688B050A7EF3B&simid=608020410909396177",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "The White House", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.MesezdL4dUOLtENtxopvdAAAAA&pid=Api",
+ "datePublished": "2018-07-20T07:55:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/bitmap-1.jpg",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "13119 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov", "width": 264,
+ "height": 177, "thumbnail": {"width": 264, "height": 177}, "imageInsightsToken":
+ "ccid_MesezdL4*mid_53513FFBBEDEC4707838F708FB1688B050A7EF3B*simid_608020410909396177",
+ "imageId": "53513FFBBEDEC4707838F708FB1688B050A7EF3B", "accentColor": "38485F"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=7EE781591D182839A8EF97CFDAFF8568F62AD57C&simid=607998850195982694",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "In Photos: Pope Francis
+ Visits the White House | whitehouse.gov", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.f1jG7noWwgjazXQ_lKinNgHaE7&pid=Api",
+ "datePublished": "2015-09-25T16:39:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/email\/PopeFrancisPhoto25Sep23.jpeg",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis-visits-white-house",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "884856 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis...",
+ "width": 2000, "height": 1333, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_f1jG7noW*mid_7EE781591D182839A8EF97CFDAFF8568F62AD57C*simid_607998850195982694",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7EE781591D182839A8EF97CFDAFF8568F62AD57C", "accentColor": "30629B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B&simid=608012357925734171",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "1600 Daily: Everything
+ White House for 3\/16\/17 | whitehouse.gov", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.V6RUls_b78Nl1kiq_nNY4QHaE8&pid=Api",
+ "datePublished": "2017-03-16T23:36:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/WH-in-snow_0.jpg",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600daily",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "520446 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/1600daily", "width":
+ 1200, "height": 800, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_V6RUls\/b*mid_27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B*simid_608012357925734171",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B", "accentColor": "2F2D21"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=FEE2750D3D3F09848A4A004DE14B13CF90D86447&simid=608051772797159982",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Photos of the Week | The
+ White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.R3Il7X7d92P2q1T1waICqAHaE7&pid=Api",
+ "datePublished": "2018-02-16T12:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/02\/flag.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-of-the-week-021618\/",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "646007 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-of-the-week...",
+ "width": 2000, "height": 1333, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_R3Il7X7d*mid_FEE2750D3D3F09848A4A004DE14B13CF90D86447*simid_608051772797159982",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "FEE2750D3D3F09848A4A004DE14B13CF90D86447", "accentColor": "343124"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=C61605EB6BEBF6753EE75DBF643936FD7F173E92&simid=608023288578900768",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "Photos of the Foreign Trip
+ | The White House", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.zIsbLsFt_87hw21ENQ2K_gHaE8&pid=Api",
+ "datePublished": "2018-09-27T21:35:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/Photo-1-820x547.jpg",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-foreign-trip\/",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "112937 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-foreign-trip",
+ "width": 820, "height": 547, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_zIsbLsFt*mid_C61605EB6BEBF6753EE75DBF643936FD7F173E92*simid_608023288578900768",
+ "imageId": "C61605EB6BEBF6753EE75DBF643936FD7F173E92", "accentColor": "4D5F30"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=27C02B7CBE052B093BAFD686D3031ECD76E3A6C9&simid=608000997664489966",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "1600 Daily: Everything
+ White House for 6\/2\/17 | whitehouse.gov", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.2Us-EQ5d6mP_y99dXci3iQHaE7&pid=Api",
+ "datePublished": "2017-06-02T23:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/P20170601JB-0149.jpg",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600daily",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "554495 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/1600daily", "width":
+ 2048, "height": 1365, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_2Us+EQ5d*mid_27C02B7CBE052B093BAFD686D3031ECD76E3A6C9*simid_608000997664489966",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "27C02B7CBE052B093BAFD686D3031ECD76E3A6C9", "accentColor": "445D87"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838978770512553DEFFAA2A&simid=608050067687344720",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "The White House", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.LwxG4x0F5CfYqbsImTJdVwHaD2&pid=Api",
+ "datePublished": "2018-07-20T07:55:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/WhiteHouse-Faded-1387x720.jpg",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "105313 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov", "width": 1387,
+ "height": 720, "thumbnail": {"width": 474, "height": 246}, "imageInsightsToken":
+ "ccid_LwxG4x0F*mid_53513FFBBEDEC4707838978770512553DEFFAA2A*simid_608050067687344720",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "53513FFBBEDEC4707838978770512553DEFFAA2A", "accentColor": "666A61"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838665F6E66F077F5D8C674&simid=608006997736490004",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "The White House", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.4WsNoOwpMacvZnfKwYS_vAHaDt&pid=Api",
+ "datePublished": "2018-09-24T23:12:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/09\/Q2-18-GDP-South-Lawn--e1536619273718-1200x600.png",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "1554275 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov", "width": 1200,
+ "height": 600, "thumbnail": {"width": 474, "height": 237}, "imageInsightsToken":
+ "ccid_4WsNoOwp*mid_53513FFBBEDEC4707838665F6E66F077F5D8C674*simid_608006997736490004",
+ "imageId": "53513FFBBEDEC4707838665F6E66F077F5D8C674", "accentColor": "81694A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=22F4B5F098E3004F80980E26D469FA44C0DF041D&simid=607987069124347733",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "A Look at Fourth of July
+ at the White House, Past and Present | The White House", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.gfXgtJIBY0Tq1S-NZnxtOwHaE8&pid=Api",
+ "datePublished": "2018-07-04T03:12:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/07\/P20180703KB-0554-2018-820x547.jpg",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/articles\/look-fourth-july-white-house-past-present\/",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "110609 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/articles\/look-fourth-july-white-house...",
+ "width": 820, "height": 547, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_gfXgtJIB*mid_22F4B5F098E3004F80980E26D469FA44C0DF041D*simid_607987069124347733",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "22F4B5F098E3004F80980E26D469FA44C0DF041D", "accentColor": "AE1D28"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=1A42C53E800BF3AEC4585390E416A09EC08BB70E&simid=608041112688658534",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "President Trump Welcomes
+ the Chicago Cubs to the White House", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.JgzZkS4fdqjvc8EYBc02zQHaE7&pid=Api",
+ "datePublished": "2018-07-06T22:23:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/CubsVisit1-1-820x546.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/www.whitehouse.gov\/articles\/president-trump-welcomes-the-chicago-cubs-to-the-white-house\/",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "155072 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/articles\/president-trump-welcomes-the...",
+ "width": 820, "height": 546, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_JgzZkS4f*mid_1A42C53E800BF3AEC4585390E416A09EC08BB70E*simid_608041112688658534",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "1A42C53E800BF3AEC4585390E416A09EC08BB70E", "accentColor": "B48118"}],
+ "queryExpansions": [{"text": "White House Roof", "displayText": "Roof", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Roof&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Roof%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Roof&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Roof%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Roof&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Basement", "displayText": "Basement", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Basement&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Basement%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Basement&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Basement%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Basement&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Inside White House", "displayText": "Inside", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Inside+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Inside%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Inside+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Inside%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Inside+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pink White House", "displayText": "Pink", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pink+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Pink+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Pink+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Red White House", "displayText": "Red", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Red+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Red+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Red+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Black White House", "displayText": "Black", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Black+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Black%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Black+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Black%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Black+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Victorian Houses", "displayText": "Victorian", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+Victorian+Houses&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Victorian%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+Victorian+Houses&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Victorian%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+Victorian+Houses&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Gingerbread House", "displayText": "Gingerbread", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Gingerbread+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gingerbread%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Gingerbread+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gingerbread%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Gingerbread+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Christmas", "displayText": "Christmas", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Christmas&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Christmas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Christmas&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Christmas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Christmas&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bathrooms", "displayText": "Bathrooms", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bathrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bathrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Bathrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bathrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Bathrooms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Kitchen", "displayText": "Kitchen", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Kitchen&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Kitchen&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Kitchen&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bedrooms", "displayText": "Bedrooms", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bedrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bedrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Bedrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bedrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Bedrooms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Stucco House", "displayText": "Stucco", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Stucco+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Stucco%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+Stucco+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Stucco%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+Stucco+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Brick House", "displayText": "Brick", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Brick+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Brick%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+Brick+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Brick%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+Brick+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Exterior", "displayText": "Exterior", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Exterior&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Exterior%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Exterior&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Exterior%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Exterior&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Down", "displayText": "Down", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Down&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Tours", "displayText": "Tours", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Tours&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tours%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Tours&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tours%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Tours&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Old White House", "displayText": "Old", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Old+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Old%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Old+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Old%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Old+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House China", "displayText": "China", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+China&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22China%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+China&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22China%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+China&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Wallpaper", "displayText": "Wallpaper", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Wallpaper&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wallpaper%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Wallpaper&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wallpaper%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Wallpaper&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Floral White House", "displayText": "Floral", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Floral+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Floral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Floral+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Floral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Floral+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Logo", "displayText": "Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Logo&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Logo&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Little White House", "displayText": "Little", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Little+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Little%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Little+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Little%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Little+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "LEGO White House", "displayText": "LEGO", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=LEGO+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22LEGO%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=LEGO+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22LEGO%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=LEGO+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Lawn", "displayText": "Lawn", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Lawn&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lawn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Lawn&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lawn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Lawn&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Driveway", "displayText": "Driveway", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Driveway&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Driveway%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Driveway&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Driveway%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Driveway&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Tennis Court", "displayText": "Tennis Court", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Tennis+Court&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tennis+Court%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Tennis+Court&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tennis+Court%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Tennis+Court&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Map", "displayText": "Map", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Map&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Map&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Diagram", "displayText": "Diagram", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Diagram&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Diagram%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Diagram&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Diagram%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Diagram&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Outline", "displayText": "Outline", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Outline&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Outline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Outline&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Outline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Outline&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Night", "displayText": "Night", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Night&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Night%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Night&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Night%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Night&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Coloring Page", "displayText": "Coloring Page", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Coloring+Page&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coloring+Page%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Coloring+Page&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coloring+Page%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Coloring+Page&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bowling Alley", "displayText": "Bowling Alley", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bowling+Alley&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bowling+Alley%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Bowling+Alley&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bowling+Alley%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Bowling+Alley&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Orange White House", "displayText": "Orange", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Orange+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Orange%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Orange+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Orange%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Orange+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Purple House", "displayText": "Purple", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Purple+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Purple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+Purple+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Purple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+Purple+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Rainbow", "displayText": "Rainbow", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Rainbow&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rainbow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Rainbow&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rainbow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Rainbow&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Snow White House", "displayText": "Snow", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Snow+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Snow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Snow+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Snow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Snow+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Storm", "displayText": "Storm", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Storm&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Storm%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Storm&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Storm%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Storm&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Winter White House", "displayText": "Winter", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Winter+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Winter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Winter+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Winter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Winter+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Obama White House", "displayText": "Obama", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Obama+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Obama%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Obama+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Obama%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Obama+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "white house", "suggestions": [{"text": "Washington
+ Monument", "displayText": "Washington Monument", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Washington+Monument&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington+Monument%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5277.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Washington+Monument&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington+Monument%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Washington+Monument&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Statue of Liberty", "displayText": "Statue of Liberty", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Statue+of+Liberty&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statue+of+Liberty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5279.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Statue+of+Liberty&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statue+of+Liberty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Statue+of+Liberty&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "West Wing", "displayText": "West Wing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=West+Wing&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22West+Wing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5281.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=West+Wing&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22West+Wing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=West+Wing&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Blair House", "displayText": "Blair House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Blair+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Blair+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5283.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Blair+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Blair+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Blair+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "The Pentagon", "displayText": "The Pentagon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=The+Pentagon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22The+Pentagon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5285.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=The+Pentagon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22The+Pentagon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=The+Pentagon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jefferson Memorial", "displayText": "Jefferson Memorial", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Jefferson+Memorial&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jefferson+Memorial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5287.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Jefferson+Memorial&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jefferson+Memorial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Jefferson+Memorial&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Mall", "displayText": "National Mall", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=National+Mall&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Mall%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5289.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=National+Mall&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Mall%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=National+Mall&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Empire State Building", "displayText": "Empire State Building",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Empire+State+Building&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Empire+State+Building%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5291.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Empire+State+Building&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Empire+State+Building%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Empire+State+Building&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Buckingham Palace", "displayText": "Buckingham Palace", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Buckingham+Palace&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Buckingham+Palace%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5293.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Buckingham+Palace&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Buckingham+Palace%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Buckingham+Palace&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Capitol Hill", "displayText": "Capitol Hill", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Capitol+Hill&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Capitol+Hill%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5295.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Capitol+Hill&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Capitol+Hill%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Capitol+Hill&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Eiffel Tower", "displayText": "Eiffel Tower", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Eiffel+Tower&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Eiffel+Tower%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5297.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Eiffel+Tower&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Eiffel+Tower%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Eiffel+Tower&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Grand Canyon", "displayText": "Grand Canyon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Grand+Canyon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Grand+Canyon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5299.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Grand+Canyon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Grand+Canyon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Grand+Canyon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Biltmore Estate", "displayText": "Biltmore Estate", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Biltmore+Estate&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Biltmore+Estate%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5301.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Biltmore+Estate&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Biltmore+Estate%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Biltmore+Estate&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Library White House", "displayText": "Library White House", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Library+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+White+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5303.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Library+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+White+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Library+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Washington, D C", "displayText": "Washington, D C", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Washington%2c+D+C&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington%2c+D+C%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5305.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Washington%2c+D+C&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington%2c+D+C%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Washington%2c+D+C&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Down", "displayText": "White House Down", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22White+House+Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5307.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22White+House+Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Down&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Library of Congress", "displayText": "Library of Congress", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Library+of+Congress&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+of+Congress%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5309.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Library+of+Congress&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+of+Congress%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Library+of+Congress&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:whitehouse.gov)", "suggestions": []}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:25 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Image_search/Image_search_using_BingV6.yml b/features/vcr_cassettes/Image_search/Image_search_using_BingV6.yml
index 95155399a3..a6e8f49437 100644
--- a/features/vcr_cassettes/Image_search/Image_search_using_BingV6.yml
+++ b/features/vcr_cassettes/Image_search/Image_search_using_BingV6.yml
@@ -408,4 +408,431 @@ http_interactions:
"suggestions": []}]}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:15:43 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=agency%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '69502'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0A77B55681CC632F1A33B9FA801B627F; path=/; expires=Sat, 14-Dec-2019 22:39:29
+ GMT; domain=bingapis.com
+ - MUIDB=0A77B55681CC632F1A33B9FA801B627F; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:29 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:29 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A8D7613BF19C4BF2933FDBE2DD0D29CE&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:29 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:29
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=236E319B20676D0715013D3721B06C89; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:29 GMT; domain=bingapis.com
+ - _SS=SID=236E319B20676D0715013D3721B06C89; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 72D8569B4ED74FE490C6A82380D9677D
+ X-Msedge-Clientid:
+ - 0A77B55681CC632F1A33B9FA801B627F
+ X-Msapi-Userstate:
+ - a327
+ X-Msedge-Ref:
+ - 'Ref A: 72D8569B4ED74FE490C6A82380D9677D Ref B: CO1EDGE0414 Ref C: 2018-11-19T22:39:29Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:29 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8F424B20B4DF45D2AB216C1BF80CBD4A&CID=0A77B55681CC632F1A33B9FA801B627F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8F424B20B4DF45D2AB216C1BF80CBD4A&CID=0A77B55681CC632F1A33B9FA801B627F&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=agency%20(site:.gov)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5186.1", "totalEstimatedMatches": 137, "nextOffset":
+ 22, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=819CFFF1608B150F476E1B23675B27819F212124&simid=608046086230901938",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "U.S. Department of Agriculture
+ | Department of Energy", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.CyWZl7oXoVek6hCi2FYaSwHaHa&pid=Api",
+ "datePublished": "2014-09-19T23:11:00.0000000Z", "contentUrl": "http:\/\/energy.gov\/sites\/prod\/files\/styles\/large\/public\/epa_seal-rgb-trim.jpg?itok=oq4OvACm",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/energy.gov\/eere\/solarpoweringamerica\/us-department-agriculture",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "168671 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "energy.gov\/eere\/solarpoweringamerica\/us-department-agriculture",
+ "width": 480, "height": 480, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_CyWZl7oX*mid_819CFFF1608B150F476E1B23675B27819F212124*simid_608046086230901938",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "819CFFF1608B150F476E1B23675B27819F212124", "accentColor": "004EB5"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=A4FE1FE4BDBB23F6E26708B68B99B60E7F2407E6&simid=608047872980682369",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "PA.GOV | The Official Website
+ for the Commonwealth of Pennsylvania.", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.x-lRw78VJ05Uk52QzecY7AAAAA&pid=Api",
+ "datePublished": "2018-07-19T02:48:00.0000000Z", "contentUrl": "https:\/\/www.pa.gov\/wp-content\/uploads\/2017\/06\/pennsylvania-emergency-management-agency-logo.png",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/www.pa.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "2514 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "www.pa.gov", "width": 300, "height": 300, "thumbnail":
+ {"width": 300, "height": 300}, "imageInsightsToken": "ccid_x+lRw78V*mid_A4FE1FE4BDBB23F6E26708B68B99B60E7F2407E6*simid_608047872980682369",
+ "imageId": "A4FE1FE4BDBB23F6E26708B68B99B60E7F2407E6", "accentColor": "BE8E0D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=463C2BE36692E55ECA404A1CB394B90898A0F67A&simid=608051502204586006",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "History of The NSA Insignia",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.t_hlj0iD71Sv3TH_SE-8vAAAAA&pid=Api",
+ "datePublished": "2018-05-19T05:52:00.0000000Z", "contentUrl": "https:\/\/www.nsa.gov\/about\/cryptologic-heritage\/center-cryptologic-history\/insignia\/assets\/img\/nsa-insignia-sm.png",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.nsa.gov\/about\/cryptologic-heritage\/center-cryptologic-history\/insignia\/nsa-insignia.shtml",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "135629 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.nsa.gov\/about\/cryptologic-heritage\/center-cryptologic...",
+ "width": 385, "height": 385, "thumbnail": {"width": 385, "height": 385}, "imageInsightsToken":
+ "ccid_t\/hlj0iD*mid_463C2BE36692E55ECA404A1CB394B90898A0F67A*simid_608051502204586006",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "463C2BE36692E55ECA404A1CB394B90898A0F67A", "accentColor": "00538D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=A363E46EF7671B08D4A8C14CF2C6AA7CF53AB66C&simid=608034734645184317",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Interactive Self-Sufficiency
+ Standard", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.wdHegczrLb5AedTcCvI2VAHaEc&pid=Api",
+ "datePublished": "2018-06-14T18:53:00.0000000Z", "contentUrl": "http:\/\/www.montgomerycountymd.gov\/HHS-Program\/Resources\/Images\/CAP%20LOGO-MCMD-CAA%20COPY(1).jpg",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "http:\/\/www.montgomerycountymd.gov\/HHS-Program\/OCA\/CommunityAction\/CommunityActionIndex.html",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "261743 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.montgomerycountymd.gov\/HHS-Program\/OCA\/CommunityAction...",
+ "width": 1500, "height": 900, "thumbnail": {"width": 474, "height": 284},
+ "imageInsightsToken": "ccid_wdHegczr*mid_A363E46EF7671B08D4A8C14CF2C6AA7CF53AB66C*simid_608034734645184317",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A363E46EF7671B08D4A8C14CF2C6AA7CF53AB66C", "accentColor": "004D86"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=7018E5341256D1A2D0339C70316B29C5E9EB235A&simid=608035018111845475",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Press Releases | Sonoma
+ County Water Agency", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.oMgH2AaCXMQNC8QsyXMDggHaI_&pid=Api",
+ "datePublished": "2012-05-11T12:00:00.0000000Z", "contentUrl": "http:\/\/www.scwa.ca.gov\/files\/images\/SCWA%20logo.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "http:\/\/www.scwa.ca.gov\/lower.php?url=press-releases&article=water-agency-county-of-sonoma-join-regional-effort-to-prevent-spread-of-invasive-mussels-2012-05-11",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "480134 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.scwa.ca.gov\/lower.php?url=press-releases&article=water-agency...",
+ "width": 1979, "height": 2404, "thumbnail": {"width": 474, "height": 575},
+ "imageInsightsToken": "ccid_oMgH2AaC*mid_7018E5341256D1A2D0339C70316B29C5E9EB235A*simid_608035018111845475",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7018E5341256D1A2D0339C70316B29C5E9EB235A", "accentColor": "027B70"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=92DF32FBF84EAD8DD5B2E2C400DB46A58A0252C1&simid=608016631393288606",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "15 Massachusetts National
+ Guard Soldiers Mobilizing to Puerto Rico to Assist in Hurricane ...", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.xjmL8l_Xo0EPGsH1H5O4PwHaHa&pid=Api",
+ "datePublished": "2018-07-08T21:09:00.0000000Z", "contentUrl": "https:\/\/www.mass.gov\/files\/2017-09\/MEMA%20Logo%202017.jpg",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "https:\/\/www.mass.gov\/news\/15-massachusetts-national-guard-soldiers-mobilizing-to-puerto-rico-to-assist-in-hurricane",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "92859 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.mass.gov\/news\/15-massachusetts-national-guard-soldiers...",
+ "width": 768, "height": 768, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_xjmL8l\/X*mid_92DF32FBF84EAD8DD5B2E2C400DB46A58A0252C1*simid_608016631393288606",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "92DF32FBF84EAD8DD5B2E2C400DB46A58A0252C1", "accentColor": "050466"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=54ED7A820EAC4EF8857E3EC04B5D943A86DD599B&simid=608029937171826643",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "U.S. DEPARTMENT OF DEFENSE
+ > Photos > Photo Gallery", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.ZGR1DXVQmOXzyLzQXidCngHaHa&pid=Api",
+ "datePublished": "2018-06-17T19:47:00.0000000Z", "contentUrl": "https:\/\/media.defense.gov\/2017\/Jun\/08\/2001759516\/-1\/-1\/0\/170608-D-ZZ999-888.JPG",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "https:\/\/www.defense.gov\/Photos\/Photo-Gallery\/igphoto\/2001759516\/mediaid\/1982343\/",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "86406 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.defense.gov\/Photos\/Photo-Gallery\/igphoto\/2001759516...",
+ "width": 480, "height": 480, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_ZGR1DXVQ*mid_54ED7A820EAC4EF8857E3EC04B5D943A86DD599B*simid_608029937171826643",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "54ED7A820EAC4EF8857E3EC04B5D943A86DD599B", "accentColor": "03274A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=11B3CB712E72DE82FDAC255C5063C1494EDC6499&simid=608035709596534909",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "images — Central Intelligence
+ Agency", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.9cWiyhb-U7Rly1CSraVNRwHaHa&pid=Api",
+ "datePublished": "2010-02-06T07:21:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/careers\/images\/VirtualCareerFairV.jpg\/image.jpg",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "https:\/\/www.cia.gov\/careers\/images\/index.html",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "572941 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/careers\/images\/index.html",
+ "width": 864, "height": 864, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_9cWiyhb+*mid_11B3CB712E72DE82FDAC255C5063C1494EDC6499*simid_608035709596534909",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "11B3CB712E72DE82FDAC255C5063C1494EDC6499", "accentColor": "BC8A0F"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=3B87C4BD9D055DF058003D6DD9244A27DEE7EEF8&simid=608009686429339559",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Revised TRICARE Pharmacy
+ Network Begins Dec. 1 > U.S. DEPARTMENT OF DEFENSE > Article", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.u4lrY3vT-vqVcGrHk8kjSQHaHa&pid=Api",
+ "datePublished": "2016-11-30T16:27:00.0000000Z", "contentUrl": "https:\/\/media.defense.gov\/2016\/Nov\/30\/2001673333\/-1\/-1\/0\/161130-D-ZZ999-790.JPG",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "https:\/\/www.defense.gov\/News\/Article\/Article\/1015726\/revised-tricare-pharmacy-network-begins-dec-1\/",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "336890 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.defense.gov\/News\/Article\/Article\/1015726\/revised...",
+ "width": 2192, "height": 2192, "thumbnail": {"width": 474, "height": 474},
+ "imageInsightsToken": "ccid_u4lrY3vT*mid_3B87C4BD9D055DF058003D6DD9244A27DEE7EEF8*simid_608009686429339559",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "3B87C4BD9D055DF058003D6DD9244A27DEE7EEF8", "accentColor": "C29509"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=D2F88A2240E61EF978FBBB504F1B09A258DE1C82&simid=608042564382165301",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "Hawaii Emergency Management
+ Agency | West Beach Emergency Proclamation", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.IY3pP8IA2XtcKFMLynzRVAHaHr&pid=Api",
+ "datePublished": "2017-10-13T12:00:00.0000000Z", "contentUrl": "https:\/\/dod.hawaii.gov\/hiema\/files\/2017\/08\/Newest-HIEMA-Logo-Copy.png",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "https:\/\/dod.hawaii.gov\/hiema\/west-beach-emergency-proclamation\/",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "1604709 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/dod.hawaii.gov\/hiema\/west-beach-emergency-proclamation",
+ "width": 618, "height": 641, "thumbnail": {"width": 474, "height": 491}, "imageInsightsToken":
+ "ccid_IY3pP8IA*mid_D2F88A2240E61EF978FBBB504F1B09A258DE1C82*simid_608042564382165301",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "D2F88A2240E61EF978FBBB504F1B09A258DE1C82", "accentColor": "049804"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=A5CD2FAE3842A92BD0814A5CFDCD2ADFF814B708&simid=608035052466210103",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "Blog | Federal Housing
+ Finance Agency", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.iz_6ahR3mGXSjw3TF4p-OAHaHa&pid=Api",
+ "datePublished": "2018-05-28T20:03:00.0000000Z", "contentUrl": "https:\/\/www.fhfa.gov\/Media\/Blog\/PublishingImages\/FHFA_Seal_Solid_Thicker_Type_Blue.png",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "https:\/\/www.fhfa.gov\/Media\/Blog\/Pages\/2016-Scorecard-for-Fannie-Mae-Freddie-Mac-and-Common-Securitization-Solutions.aspx",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "163098 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.fhfa.gov\/Media\/Blog\/Pages\/2016-Scorecard-for-Fannie-Mae...",
+ "width": 1800, "height": 1800, "thumbnail": {"width": 474, "height": 474},
+ "imageInsightsToken": "ccid_iz\/6ahR3*mid_A5CD2FAE3842A92BD0814A5CFDCD2ADFF814B708*simid_608035052466210103",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A5CD2FAE3842A92BD0814A5CFDCD2ADFF814B708", "accentColor": "003F7C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=D40F404889A3D0CD2061F25F783AF2C3BC9D8F20&simid=608022433895155941",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "Federal Housing Finance
+ Agency Office of Inspector General Semiannual Report to Congress ...", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.CVO_ws1i4WzMQFB-CXQL6AHaJp&pid=Api",
+ "datePublished": "2017-07-14T17:45:00.0000000Z", "contentUrl": "https:\/\/bookstore.gpo.gov\/sites\/default\/files\/covers\/023-000-00841-6.JPG",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "https:\/\/bookstore.gpo.gov\/products\/federal-housing-finance-agency-office-inspector-general-semiannual-report-congress-october",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "284582 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/bookstore.gpo.gov\/products\/federal-housing-finance-agency...",
+ "width": 499, "height": 650, "thumbnail": {"width": 474, "height": 617}, "imageInsightsToken":
+ "ccid_CVO\/ws1i*mid_D40F404889A3D0CD2061F25F783AF2C3BC9D8F20*simid_608022433895155941",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "D40F404889A3D0CD2061F25F783AF2C3BC9D8F20", "accentColor": "AD201E"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=8E5EE93BA3706D6B6712BCE90F8A949AE396F837&simid=608022579922338962",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "Grants.gov Community Blog
+ – Find. Apply. Succeed.", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.etTWfPvTjdz_CLIItSStzwAAAA&pid=Api",
+ "datePublished": "2017-08-11T23:53:00.0000000Z", "contentUrl": "https:\/\/grantsgovprod.files.wordpress.com\/2017\/08\/agency-spotlight-icon_v3.png?w=286&h=286",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "https:\/\/blog.grants.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "42835 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/blog.grants.gov", "width": 286, "height":
+ 286, "thumbnail": {"width": 286, "height": 286}, "imageInsightsToken": "ccid_etTWfPvT*mid_8E5EE93BA3706D6B6712BCE90F8A949AE396F837*simid_608022579922338962",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "8E5EE93BA3706D6B6712BCE90F8A949AE396F837", "accentColor": "CCA900"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=A65B6E8E545F05F2426C1768EFABCF6F7793B8D2&simid=608053877280867059",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Mission Economic Development
+ Agency | BroadbandUSA - NTIA", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.tcuIFe4rJA79S_ogWBajnwHaE8&pid=Api",
+ "datePublished": "2012-04-17T12:00:00.0000000Z", "contentUrl": "http:\/\/www2.ntia.doc.gov\/files\/grantees\/images\/meda_bia_class_0.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "http:\/\/www2.ntia.doc.gov\/grantees\/MissionEconomicDevelopment",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "2220485 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www2.ntia.doc.gov\/grantees\/MissionEconomicDevelopment",
+ "width": 2250, "height": 1500, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_tcuIFe4r*mid_A65B6E8E545F05F2426C1768EFABCF6F7793B8D2*simid_608053877280867059",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A65B6E8E545F05F2426C1768EFABCF6F7793B8D2", "accentColor": "1B5FB0"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=9A68765CD2A94C8B56A3B45F52CFC15F0E02793E&simid=608042061881937151",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "Forms for Local Governments
+ and State Agencies | TSLAC", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.rK28y1K2pxnY7HDHMZR6MQHaHP&pid=Api",
+ "datePublished": "2018-07-08T06:00:00.0000000Z", "contentUrl": "https:\/\/www.tsl.texas.gov\/sites\/default\/files\/public\/tslac\/slrm\/images\/noun_12741_cc1.png",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/www.tsl.texas.gov\/slrm\/forms",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "120387 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.tsl.texas.gov\/slrm\/forms", "width":
+ 613, "height": 600, "thumbnail": {"width": 474, "height": 463}, "imageInsightsToken":
+ "ccid_rK28y1K2*mid_9A68765CD2A94C8B56A3B45F52CFC15F0E02793E*simid_608042061881937151",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "9A68765CD2A94C8B56A3B45F52CFC15F0E02793E", "accentColor": "666666"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=666800948E384F1F30D6E7621DE4E1C0E9035306&simid=608009823861736964",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "Hawaii Emergency Management
+ Agency", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.C-aEA0enRxTqQ2ZZhunSwQHaHa&pid=Api",
+ "datePublished": "2016-12-23T11:02:00.0000000Z", "contentUrl": "http:\/\/dod.hawaii.gov\/hiema\/files\/2016\/03\/HIEMA-Logo-large.png",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "http:\/\/www.scd.hawaii.gov\/dp_kit.html",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "203425 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "www.scd.hawaii.gov\/dp_kit.html", "width": 735,
+ "height": 735, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_C+aEA0en*mid_666800948E384F1F30D6E7621DE4E1C0E9035306*simid_608009823861736964",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "666800948E384F1F30D6E7621DE4E1C0E9035306", "accentColor": "CAA901"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=F4836BAA996ADC596F7E80E5FD7034D6B74A6398&simid=608047241582543006",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "portlet_content — Central
+ Intelligence Agency", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.sDX-lIj_zDQITfLkbLI_rwHaHa&pid=Api",
+ "datePublished": "2018-07-13T18:12:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/careers\/portlet_content\/ICVCF_2016.gif\/image.gif",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "https:\/\/www.cia.gov\/careers\/portlet_content\/index.html",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "187020 B", "encodingFormat":
+ "gif", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/careers\/portlet_content\/index.html",
+ "width": 1000, "height": 1000, "thumbnail": {"width": 474, "height": 474},
+ "imageInsightsToken": "ccid_sDX+lIj\/*mid_F4836BAA996ADC596F7E80E5FD7034D6B74A6398*simid_608047241582543006",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "F4836BAA996ADC596F7E80E5FD7034D6B74A6398", "accentColor": "1D4588"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=14F185624A96C65653BCEDDCAD1B30330D3BAE76&simid=607992021202764230",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "Cardillo Discusses Importance
+ of Geospatial Intel at Senate Hearing > U.S. DEPARTMENT OF DEFENSE ...", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.hxFH4zD-DTsvtOdApi1BbgHaHa&pid=Api",
+ "datePublished": "2018-07-04T17:32:00.0000000Z", "contentUrl": "https:\/\/media.defense.gov\/2016\/Sep\/27\/2001640983\/-1\/-1\/0\/160927-D-ZZ999-666.JPG",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "http:\/\/www.defense.gov\/News\/Article\/Article\/957184\/cardillo-discusses-importance-of-geospatial-intel-at-senate-hearing",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "406191 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.defense.gov\/News\/Article\/Article\/957184\/cardillo-discusses...",
+ "width": 620, "height": 620, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_hxFH4zD+*mid_14F185624A96C65653BCEDDCAD1B30330D3BAE76*simid_607992021202764230",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "14F185624A96C65653BCEDDCAD1B30330D3BAE76", "accentColor": "B29110"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=591BD0B3F7470E08ABE38EFCE226A3D73F4251AB&simid=608013925584995098",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "Welcome | Nebraska Emergency
+ Management Agency", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.vT_-cQzSVwQM9U5h1ogtBgHaDP&pid=Api",
+ "datePublished": "2011-06-06T15:24:00.0000000Z", "contentUrl": "https:\/\/nema.nebraska.gov\/sites\/nema.nebraska.gov\/files\/logo_1.png",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "https:\/\/nema.nebraska.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "79462 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/nema.nebraska.gov", "width": 705,
+ "height": 309, "thumbnail": {"width": 474, "height": 207}, "imageInsightsToken":
+ "ccid_vT\/+cQzS*mid_591BD0B3F7470E08ABE38EFCE226A3D73F4251AB*simid_608013925584995098",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "591BD0B3F7470E08ABE38EFCE226A3D73F4251AB", "accentColor": "0862A8"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agency+(site%3a.gov)&id=B721718704FB05890CB1C5CAF3C61C9632E3105F&simid=607988881586720265",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "Welcome to the CIA Web
+ Site — Central Intelligence Agency", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.kUv6Rhtju8NQfl6pRGFDRgHaC4&pid=Api",
+ "datePublished": "2018-03-18T03:34:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/portlet_content\/home-slider-images\/cia_seal_slider\/image.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/www.cia.gov\/index.html#",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "36879 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/index.html#", "width":
+ 691, "height": 269, "thumbnail": {"width": 474, "height": 184}, "imageInsightsToken":
+ "ccid_kUv6Rhtj*mid_B721718704FB05890CB1C5CAF3C61C9632E3105F*simid_607988881586720265",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "B721718704FB05890CB1C5CAF3C61C9632E3105F", "accentColor": "0162C1"}],
+ "queryExpansions": [{"text": "Travel Agency", "displayText": "Travel", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5190.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Travel+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Central Agency", "displayText": "Central", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Central+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Central%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Central+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Central%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Central+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environmental Protection Agency", "displayText": "Environmental
+ Protection", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Environmental+Protection+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environmental+Protection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Environmental+Protection+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environmental+Protection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Environmental+Protection+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Arms", "displayText": "Arms", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Arms&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Arms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Arms&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Arms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Agency+Arms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Defense Intelligence Agency", "displayText": "Defense Intelligence",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Defense+Intelligence+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Intelligence%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Defense+Intelligence+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Intelligence%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Defense+Intelligence+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Collection Agency", "displayText": "Collection", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Collection+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Collection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Collection+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Collection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Collection+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Digital Agency", "displayText": "Digital", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Digital+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Digital%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Digital+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Digital%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Digital+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Advertising Agency", "displayText": "Advertising", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Advertising+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Advertising%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Advertising+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Advertising%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Advertising+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Creative Agency", "displayText": "Creative", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Creative+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Creative%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Creative+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Creative%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Creative+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "European Space Agency", "displayText": "European Space", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=European+Space+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22European+Space%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=European+Space+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22European+Space%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=European+Space+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency D3", "displayText": "D3", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+D3&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22D3%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+D3&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22D3%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+D3&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Education Agency", "displayText": "Education", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Education+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Education%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Education+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Education%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Education+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Agency", "displayText": "Job", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Job%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Job%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Job+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Detective Agency", "displayText": "Detective", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Detective+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Detective%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Detective+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Detective%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Detective+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Police Agency", "displayText": "Police", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Police+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Police%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Police+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Police%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Police+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Man", "displayText": "Man", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Man&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Man%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Man&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Man%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Man&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "NBA Free Agency", "displayText": "NBA Free", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=NBA+Free+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NBA+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=NBA+Free+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NBA+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=NBA+Free+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Defense Logistics Agency", "displayText": "Defense Logistics", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Defense+Logistics+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Logistics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Defense+Logistics+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Logistics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Defense+Logistics+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Geospatial Agency", "displayText": "National Geospatial",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=National+Geospatial+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Geospatial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=National+Geospatial+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Geospatial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=National+Geospatial+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Railway Express Agency", "displayText": "Railway Express", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Railway+Express+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Railway+Express%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Railway+Express+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Railway+Express%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Railway+Express+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Army Security Agency", "displayText": "Army Security", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Army+Security+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Army+Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Army+Security+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Army+Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Army+Security+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fun Agency", "displayText": "Fun", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Fun+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Fun+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Fun+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Modeling Agency", "displayText": "Modeling", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Modeling+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Modeling%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Modeling+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Modeling%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Modeling+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Adoption Agency", "displayText": "Adoption", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Adoption+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Adoption%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Adoption+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Adoption%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Adoption+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Design Agency", "displayText": "Design", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Design+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Design%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Design+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Design%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Design+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Services", "displayText": "Services", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Services&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Services%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Services&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Services%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+Services&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fashion Land Agency", "displayText": "Fashion Land", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Fashion+Land+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fashion+Land%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Fashion+Land+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fashion+Land%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Fashion+Land+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Missile Defense Agency", "displayText": "Missile Defense", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Missile+Defense+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Missile+Defense%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Missile+Defense+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Missile+Defense%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Missile+Defense+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "NFL Free Agency", "displayText": "NFL Free", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=NFL+Free+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NFL+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=NFL+Free+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NFL+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=NFL+Free+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environment Agency", "displayText": "Environment", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Environment+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Environment+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Environment+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Recruitment Agency", "displayText": "Recruitment", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Recruitment+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Recruitment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Recruitment+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Recruitment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Recruitment+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Government Agency", "displayText": "Government", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Government+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Government%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Government+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Government%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Government+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Icon", "displayText": "Icon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Icon&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Icon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Icon&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Icon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Icon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "SOG Agency", "displayText": "SOG", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=SOG+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22SOG%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=SOG+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22SOG%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=SOG+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Office", "displayText": "Office", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Office&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Office&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Office&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Media Agency", "displayText": "Media", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Media+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Media%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Media+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Media%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Media+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Law", "displayText": "Law", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Law&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Law%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Law&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Law%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Law&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nursing Agency", "displayText": "Nursing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nursing+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nursing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nursing+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nursing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Nursing+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Sign", "displayText": "Sign", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Sign&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sign%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Agency+Sign&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sign%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Sign&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Personal Agency", "displayText": "Personal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Personal+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Personal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Personal+Agency&tq=%7b%22pq%22%3a%22agency+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agency%22%2c%22pv%22%3a%22agency%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Personal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Personal+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "agency", "suggestions": []}, {"pivot": "(site:.gov)",
+ "suggestions": []}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:30 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Image_search/Image_search_with_spelling_suggestion.yml b/features/vcr_cassettes/Image_search/Image_search_with_spelling_suggestion.yml
index dc57245539..9786ca4673 100644
--- a/features/vcr_cassettes/Image_search/Image_search_with_spelling_suggestion.yml
+++ b/features/vcr_cassettes/Image_search/Image_search_with_spelling_suggestion.yml
@@ -373,4 +373,423 @@ http_interactions:
[]}, {"pivot": "site:mil)", "suggestions": []}]}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:15:38 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=ebuy%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '68777'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1E0A5104A48A640112585DA8A55D65FE; path=/; expires=Sat, 14-Dec-2019 22:39:26
+ GMT; domain=bingapis.com
+ - MUIDB=1E0A5104A48A640112585DA8A55D65FE; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:26 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:26 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7A1FEE5FE8494C05A9D88854F98361DA&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:26 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:26
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3E29C107371D6C98321ECDAB36CA6DC3; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:26 GMT; domain=bingapis.com
+ - _SS=SID=3E29C107371D6C98321ECDAB36CA6DC3; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - C503FC65DB9D40DF86B5A5FB3ED90996
+ X-Msedge-Clientid:
+ - 1E0A5104A48A640112585DA8A55D65FE
+ X-Msapi-Userstate:
+ - 537d
+ X-Msedge-Ref:
+ - 'Ref A: C503FC65DB9D40DF86B5A5FB3ED90996 Ref B: CO1EDGE0118 Ref C: 2018-11-19T22:39:26Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:26 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=CB58DD6F1DC347FAB2553D1B5CF84801&CID=1E0A5104A48A640112585DA8A55D65FE&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=CB58DD6F1DC347FAB2553D1B5CF84801&CID=1E0A5104A48A640112585DA8A55D65FE&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=ebuy%20(site:gov%20OR%20site:mil)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5186.1", "totalEstimatedMatches": 100, "nextOffset":
+ 25, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=426DCBA9FC3A9A5563CE6098C3159047B6B78810&simid=608039222925790300",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "EDGAR Filing Documents
+ for 0001206774-16-005069", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.5c3iHu1ePaFiFlhrnKqo1wHaCy&pid=Api",
+ "datePublished": "2018-07-02T10:18:00.0000000Z", "contentUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000120677416005069\/ebay_def14a1x1x1.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000120677416005069\/0001206774-16-005069-index.htm",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "26662 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sec.gov\/Archives\/edgar\/data\/1065088\/000120677416005069...",
+ "width": 347, "height": 131, "thumbnail": {"width": 474, "height": 178}, "imageInsightsToken":
+ "ccid_5c3iHu1e*mid_426DCBA9FC3A9A5563CE6098C3159047B6B78810*simid_608039222925790300",
+ "imageId": "426DCBA9FC3A9A5563CE6098C3159047B6B78810", "accentColor": "C9C102"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=FBEBD860827FD0E690A5AFC9DA32F200C1A79D80&simid=608007122297095272",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "GSS Scientific Catalog
+ Moving to eBuy Marketplace", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.f-YOnOpkGA1xFcb9jF7eLwAAAA&pid=Api",
+ "datePublished": "2015-11-06T12:00:00.0000000Z", "contentUrl": "http:\/\/2h963i3oa54o1nc84a14ihzo.wpengine.netdna-cdn.com\/wp-content\/uploads\/sites\/3\/2015\/08\/1340eBuy_logo-300x192.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/today.lbl.gov\/2015\/11\/06\/gss-scientific-catalog-moving-to-ebuy-marketplace\/",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "15659 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "today.lbl.gov\/2015\/11\/06\/gss-scientific-catalog-moving-to-ebuy...",
+ "width": 300, "height": 192, "thumbnail": {"width": 300, "height": 192}, "imageInsightsToken":
+ "ccid_f+YOnOpk*mid_FBEBD860827FD0E690A5AFC9DA32F200C1A79D80*simid_608007122297095272",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "FBEBD860827FD0E690A5AFC9DA32F200C1A79D80", "accentColor": "054363"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=764085BE6AA85BD08F79EEEACA81DA18FBDE83F7&simid=608022549855209275",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "eBuy Mobile Login| A GSA
+ Advantage!® Application", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.JEXGrwt87UUUt7oj_4CJmwAAAA&pid=Api",
+ "datePublished": "2013-03-15T13:57:00.0000000Z", "contentUrl": "https:\/\/www.ebuy.gsa.gov\/mobile\/images\/logo.png",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.ebuy.gsa.gov\/mobile\/login",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "2222 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.ebuy.gsa.gov\/mobile\/login",
+ "width": 112, "height": 35, "thumbnail": {"width": 112, "height": 35}, "imageInsightsToken":
+ "ccid_JEXGrwt8*mid_764085BE6AA85BD08F79EEEACA81DA18FBDE83F7*simid_608022549855209275",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "764085BE6AA85BD08F79EEEACA81DA18FBDE83F7", "accentColor": "033365"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=104F79F4F71998D4B4F25A1405C64C45969EC212&simid=608005034952624426",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Exhibit 10.26", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.ySrBDmcK3rIOnP2p7ONcwgAAAA&pid=Api",
+ "datePublished": "2018-05-27T08:02:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1633917\/000163391716000113\/ebayinclogo.jpg",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1633917\/000163391716000113\/exhibit1026pentlandofferle.htm",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "11533 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1633917\/000163391716000113...",
+ "width": 308, "height": 99, "thumbnail": {"width": 308, "height": 99}, "imageInsightsToken":
+ "ccid_ySrBDmcK*mid_104F79F4F71998D4B4F25A1405C64C45969EC212*simid_608005034952624426",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "104F79F4F71998D4B4F25A1405C64C45969EC212", "accentColor": "2662A5"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=78AB44022062A132F042A4780942A066A264D006&simid=608026002949145581",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "EDGAR Filing Documents
+ for 0001065088-17-000007", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.qMAWv3g2Ttw1gZFXcQ60ewHaDW&pid=Api",
+ "datePublished": "2018-06-03T17:04:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000106508817000007\/ebaynotm.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000106508817000007\/0001065088-17-000007-index.htm",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "25645 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000106508817000007...",
+ "width": 546, "height": 247, "thumbnail": {"width": 474, "height": 214}, "imageInsightsToken":
+ "ccid_qMAWv3g2*mid_78AB44022062A132F042A4780942A066A264D006*simid_608026002949145581",
+ "imageId": "78AB44022062A132F042A4780942A066A264D006", "accentColor": "0360C8"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=66A11B10F1981100B3DC77AE1BA37E04DB238C9A&simid=608054985382953381",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.49fEnvof2i6yssLcG-GbvgAAAA&pid=Api",
+ "datePublished": "2016-02-23T06:45:00.0000000Z", "contentUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312516471006\/g147282g05w98.jpg",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312516471006\/d147282d424b5.htm",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "63000 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312516471006...",
+ "width": 206, "height": 49, "thumbnail": {"width": 206, "height": 49}, "imageInsightsToken":
+ "ccid_49fEnvof*mid_66A11B10F1981100B3DC77AE1BA37E04DB238C9A*simid_608054985382953381",
+ "imageId": "66A11B10F1981100B3DC77AE1BA37E04DB238C9A", "accentColor": "0B6EAB"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=991204F6EEF8E18E97B5E5BAFA424F471889C857&simid=608046889394309585",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "EDGAR Filing Documents
+ for 0001065088-15-000017", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.OEB8Kp7pjLM8ZSpuHgAWYgHaB2&pid=Api",
+ "datePublished": "2018-07-18T17:37:00.0000000Z", "contentUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000106508815000017\/ebayinclogorgb.jpg",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000106508815000017\/0001065088-15-000017-index.htm",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "291302 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sec.gov\/Archives\/edgar\/data\/1065088\/000106508815000017...",
+ "width": 2428, "height": 607, "thumbnail": {"width": 474, "height": 118},
+ "imageInsightsToken": "ccid_OEB8Kp7p*mid_991204F6EEF8E18E97B5E5BAFA424F471889C857*simid_608046889394309585",
+ "imageId": "991204F6EEF8E18E97B5E5BAFA424F471889C857", "accentColor": "0050CC"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=76BE68A253BBCBD8726FB4C2902890AE602E364A&simid=608002586805274709",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "Training for eBuy Users",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.SYYvHPbWR80qphe16zOQWwAAAA&pid=Api",
+ "datePublished": "2014-07-25T16:46:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/09\/ebuy-3.png",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-training-for-ebuy-users\/",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "5205 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 189, "height": 226, "thumbnail": {"width": 189, "height": 226}, "imageInsightsToken":
+ "ccid_SYYvHPbW*mid_76BE68A253BBCBD8726FB4C2902890AE602E364A*simid_608002586805274709",
+ "imageId": "76BE68A253BBCBD8726FB4C2902890AE602E364A", "accentColor": "0F3F5E"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=2003248F7DC45158B461CC6D67B07F641A257C03&simid=608029709503430708",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "eBuy", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.oNsHaDchex9JKpA7FjOaQAHaBQ&pid=Api",
+ "datePublished": "2013-12-09T09:26:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/09\/log_into_ebuy.png",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "9670 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 539, "height": 92, "thumbnail": {"width": 474, "height": 80}, "imageInsightsToken":
+ "ccid_oNsHaDch*mid_2003248F7DC45158B461CC6D67B07F641A257C03*simid_608029709503430708",
+ "imageId": "2003248F7DC45158B461CC6D67B07F641A257C03", "accentColor": "084363"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=DEA572379BF7AB520E7732B3A5B48A3C6ECB44E1&simid=607994130023583185",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "eBay has delivered phenomenal
+ growth, resulting in substantial value creation for our shareholders", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.3gaaMA6dCXpMJf7xfKz9NQHaE7&pid=Api",
+ "datePublished": "2018-03-11T20:31:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000089882214000178\/fightletterchart.jpg",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000089882214000178\/body.htm",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "54979 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000089882214000178...",
+ "width": 649, "height": 432, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_3gaaMA6d*mid_DEA572379BF7AB520E7732B3A5B48A3C6ECB44E1*simid_607994130023583185",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "DEA572379BF7AB520E7732B3A5B48A3C6ECB44E1", "accentColor": "0150C2"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=76BE68A253BBCBD8726F09D8CB0E65CEBE87AC95&simid=608004360649706721",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "Training for eBuy Users",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.PkE2X6VSTH5CUUnp8lu4PQAAAA&pid=Api",
+ "datePublished": "2014-07-25T16:46:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/09\/ebuy-1.png",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-training-for-ebuy-users\/",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "4255 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 179, "height": 212, "thumbnail": {"width": 179, "height": 212}, "imageInsightsToken":
+ "ccid_PkE2X6VS*mid_76BE68A253BBCBD8726F09D8CB0E65CEBE87AC95*simid_608004360649706721",
+ "imageId": "76BE68A253BBCBD8726F09D8CB0E65CEBE87AC95", "accentColor": "9F722C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=EB6CD859233CB9FDF46EC953AE1B1DA7F6936632&simid=608054873711313519",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.ANpv80Fij8PcjgpwySWOXwHaJl&pid=Api",
+ "datePublished": "2018-06-13T05:18:00.0000000Z", "contentUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1365241\/000119312509080824\/g11143g00q06.jpg",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1365241\/000119312509080824\/dsctoc.htm",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "95486 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sec.gov\/Archives\/edgar\/data\/1365241\/000119312509080824\/dsctoc.htm",
+ "width": 618, "height": 800, "thumbnail": {"width": 474, "height": 613}, "imageInsightsToken":
+ "ccid_ANpv80Fi*mid_EB6CD859233CB9FDF46EC953AE1B1DA7F6936632*simid_608054873711313519",
+ "imageId": "EB6CD859233CB9FDF46EC953AE1B1DA7F6936632", "accentColor": "7F0000"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=75341BABE4ED15E27BF85B16085FDC88A3B2FACF&simid=608027725233457962",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.OYCWUTg8CNDKxZeSIQev8wHaEK&pid=Api",
+ "datePublished": "2018-10-08T23:02:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/g939081ex99_1pg032.jpg",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/d939081dex991.htm",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "31766 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424...",
+ "width": 880, "height": 495, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_OYCWUTg8*mid_75341BABE4ED15E27BF85B16085FDC88A3B2FACF*simid_608027725233457962",
+ "imageId": "75341BABE4ED15E27BF85B16085FDC88A3B2FACF", "accentColor": "0051CC"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=9FC3E5F8D61D508DCF181084782F79FE958871A9&simid=608004373525106079",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Operator: We’ll go next
+ to James Mitchell, Goldman Sachs.", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.EmUB0ErbuYtGDUvu0rSqsgHaFP&pid=Api",
+ "datePublished": "2018-07-26T17:56:00.0000000Z", "contentUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312509080824\/g94933txs2gbgd.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312509080824\/dsctoc.htm",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "33988 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312509080824\/dsctoc.htm",
+ "width": 961, "height": 681, "thumbnail": {"width": 474, "height": 335}, "imageInsightsToken":
+ "ccid_EmUB0Erb*mid_9FC3E5F8D61D508DCF181084782F79FE958871A9*simid_608004373525106079",
+ "imageId": "9FC3E5F8D61D508DCF181084782F79FE958871A9", "accentColor": "C60509"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=D755F20EC02D69649F525D144B27FFD476316A8F&simid=608028317942612229",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "RFQ | Interact", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.qTu4IX4WvIJNrxBBZNWecQHaEh&pid=Api",
+ "datePublished": "2012-12-24T21:12:00.0000000Z", "contentUrl": "https:\/\/interact.gsa.gov\/sites\/default\/files\/img_3.png",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/interact.gsa.gov\/tag\/rfq",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "101683 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/interact.gsa.gov\/tag\/rfq", "width":
+ 596, "height": 364, "thumbnail": {"width": 474, "height": 289}, "imageInsightsToken":
+ "ccid_qTu4IX4W*mid_D755F20EC02D69649F525D144B27FFD476316A8F*simid_608028317942612229",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "D755F20EC02D69649F525D144B27FFD476316A8F", "accentColor": "076497"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=75341BABE4ED15E27BF8595471473C004A7C9C1D&simid=608037809851338179",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.nQuLuQKjYvUyOsEIgT9KrgHaEK&pid=Api",
+ "datePublished": "2018-10-08T23:02:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/g939081ex99_1pg008.jpg",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/d939081dex991.htm",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "97002 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424...",
+ "width": 880, "height": 495, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_nQuLuQKj*mid_75341BABE4ED15E27BF8595471473C004A7C9C1D*simid_608037809851338179",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "75341BABE4ED15E27BF8595471473C004A7C9C1D", "accentColor": "0052CC"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=567D79D71C0A9B4DB57E1D21EB7EF486716E8DF1&simid=608049328966406119",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.PkTKYyXO_rlSZfVRunqEugHaEK&pid=Api",
+ "datePublished": "2015-06-08T15:16:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/g939081ex99_2pg009.jpg",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/d939081dex992.htm",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "196365 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424...",
+ "width": 880, "height": 495, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_PkTKYyXO*mid_567D79D71C0A9B4DB57E1D21EB7EF486716E8DF1*simid_608049328966406119",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "567D79D71C0A9B4DB57E1D21EB7EF486716E8DF1", "accentColor": "018BCA"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=3F12ADF459044F4239BFDCB15DDFF114B2CB6579&simid=608013654995306411",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "notice of 2015 annual meeting
+ of stockholders and proxy statement", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.KEDCynBFNUXTTvzr_VvMLAHaJr&pid=Api",
+ "datePublished": "2017-11-09T23:10:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000120677415000964\/cover.jpg",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000120677415000964\/ebay_def14a.htm",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "58034 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000120677415000964...",
+ "width": 715, "height": 934, "thumbnail": {"width": 474, "height": 619}, "imageInsightsToken":
+ "ccid_KEDCynBF*mid_3F12ADF459044F4239BFDCB15DDFF114B2CB6579*simid_608013654995306411",
+ "imageId": "3F12ADF459044F4239BFDCB15DDFF114B2CB6579", "accentColor": "007DC7"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=9FC3E5F8D61D508DCF18BEB64BD0F513F6374F43&simid=608019062286190439",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.c43TvNU6pRTtgDQEPJ-VdQHaBw&pid=Api",
+ "datePublished": "2018-05-09T00:30:00.0000000Z", "contentUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312509080824\/g79186img1-tx2.jpg",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "http:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312509080824\/dsctoc.htm",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "40230 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312509080824\/dsctoc.htm",
+ "width": 710, "height": 168, "thumbnail": {"width": 474, "height": 112}, "imageInsightsToken":
+ "ccid_c43TvNU6*mid_9FC3E5F8D61D508DCF18BEB64BD0F513F6374F43*simid_608019062286190439",
+ "imageId": "9FC3E5F8D61D508DCF18BEB64BD0F513F6374F43", "accentColor": "02029A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=75341BABE4ED15E27BF8F90AA5A521CD5FC407DC&simid=607986012561280789",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "LOGO", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.qhD1L2FH6tlXzn58-EojnwHaEK&pid=Api",
+ "datePublished": "2018-10-08T23:02:00.0000000Z", "contentUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/g939081ex99_1pg027.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424\/d939081dex991.htm",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "168143 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1065088\/000119312515215424...",
+ "width": 880, "height": 495, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_qhD1L2FH*mid_75341BABE4ED15E27BF8F90AA5A521CD5FC407DC*simid_607986012561280789",
+ "imageId": "75341BABE4ED15E27BF8F90AA5A521CD5FC407DC", "accentColor": "004FCC"}],
+ "queryExpansions": [{"text": "Banner eBay", "displayText": "Banner", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Banner+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Banner%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5190.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Banner+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Banner%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Banner+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Posters", "displayText": "Posters", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Posters&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Posters&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Posters&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Logo", "displayText": "Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Logo&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Logo&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Collectibles", "displayText": "Collectibles", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBay+Collectibles&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Collectibles%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Collectibles&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Collectibles%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Collectibles&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Antiques", "displayText": "Antiques", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Antiques&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Antiques%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Antiques&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Antiques%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Antiques&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Auction", "displayText": "Auction", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Auction&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Auction%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Auction&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Auction%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Auction&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Google eBay", "displayText": "Google", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Google+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Google%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Google+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Google%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Google+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay UK", "displayText": "UK", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+UK&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22UK%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+UK&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22UK%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+UK&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Amazon", "displayText": "Amazon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Amazon&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Amazon&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Amazon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Storefront eBay", "displayText": "Storefront", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Storefront+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Storefront%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Storefront+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Storefront%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Storefront+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Shop eBay", "displayText": "Shop", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Shop+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shop%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Shop+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shop%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Shop+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Warehouse", "displayText": "Warehouse", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Warehouse&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Warehouse%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Warehouse&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Warehouse%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBay+Warehouse&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Handbags", "displayText": "Handbags", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Handbags&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Handbags%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Handbags&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Handbags%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Handbags&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Dolls", "displayText": "Dolls", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Dolls&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dolls%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Dolls&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dolls%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Dolls&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Dresses", "displayText": "Dresses", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Dresses&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dresses%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Dresses&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dresses%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBay+Dresses&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Shoes", "displayText": "Shoes", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Shoes&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shoes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Shoes&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shoes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Shoes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Bracelets", "displayText": "Bracelets", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Bracelets&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bracelets%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Bracelets&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bracelets%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Bracelets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Wigs", "displayText": "Wigs", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Wigs&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wigs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Wigs&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wigs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Wigs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Women", "displayText": "Women", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Women&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Women%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Women&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Women%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Women&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay People", "displayText": "People", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+People&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22People%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+People&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22People%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+People&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Girls", "displayText": "Girls", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Girls&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Girls%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Girls&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Girls%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBay+Girls&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Card", "displayText": "Card", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Card&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Card%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Card&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Card%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Card&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Motors", "displayText": "Motors", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Motors&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Motors%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Motors&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Motors%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Motors&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Meg Whitman eBay", "displayText": "Meg Whitman", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Meg+Whitman+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Meg+Whitman%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Meg+Whitman+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Meg+Whitman%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Meg+Whitman+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Coupons", "displayText": "Coupons", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Coupons&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coupons%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Coupons&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coupons%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBay+Coupons&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Template", "displayText": "Template", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Template&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Template%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Template&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Template%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Template&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Reborn Baby Toddlers", "displayText": "Reborn Baby Toddlers",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Reborn+Baby+Toddlers&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Reborn+Baby+Toddlers%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Reborn+Baby+Toddlers&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Reborn+Baby+Toddlers%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Reborn+Baby+Toddlers&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Icons", "displayText": "Icons", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Icons&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Icons%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Icons&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Icons%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Icons&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Books", "displayText": "Books", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Books&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Books%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Books&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Books%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Books&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Homepage", "displayText": "Homepage", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Homepage&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Homepage%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Homepage&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Homepage%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Homepage&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Browse", "displayText": "Browse", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Browse&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Browse%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Browse&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Browse%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Browse&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay App", "displayText": "App", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+App&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22App%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+App&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22App%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBay+App&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Paintings", "displayText": "Paintings", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Paintings&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paintings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Paintings&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paintings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Paintings&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Jewelry", "displayText": "Jewelry", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Jewelry&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jewelry%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Jewelry&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jewelry%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Jewelry&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Pottery", "displayText": "Pottery", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Pottery&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pottery%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Pottery&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pottery%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Pottery&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Prints eBay", "displayText": "Prints", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Prints+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Prints%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Prints+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Prints%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Prints+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Artist", "displayText": "Artist", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Artist&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Artist%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Artist&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Artist%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Artist&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Art", "displayText": "Art", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Art&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Art%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Art&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Art%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Items for Sale", "displayText": "Items for Sale", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBay+Items+for+Sale&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Items+for+Sale%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=eBay+Items+for+Sale&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Items+for+Sale%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Items+for+Sale&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pierre Omidyar eBay", "displayText": "Pierre Omidyar", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Pierre+Omidyar+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pierre+Omidyar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Pierre+Omidyar+eBay&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pierre+Omidyar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Pierre+Omidyar+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "ebuy (site:gov OR site:mil)", "suggestions":
+ [{"text": "Amazon.com", "displayText": "Amazon.com", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Amazon.com&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazon.com%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5275.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Amazon.com&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazon.com%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Amazon.com&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Google", "displayText": "Google", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Google&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Google%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5277.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Google&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Google%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Google&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "PayPal", "displayText": "PayPal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=PayPal&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22PayPal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5279.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=PayPal&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22PayPal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=PayPal&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Half.com", "displayText": "Half.com", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Half.com&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Half.com%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5281.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Half.com&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Half.com%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Half.com&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "YouTube", "displayText": "YouTube", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=YouTube&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22YouTube%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5283.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=YouTube&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22pv%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22YouTube%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=YouTube&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:27 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Image_search/Spanish_image_search.yml b/features/vcr_cassettes/Image_search/Spanish_image_search.yml
index 8f35ccd525..9257fff3f9 100644
--- a/features/vcr_cassettes/Image_search/Spanish_image_search.yml
+++ b/features/vcr_cassettes/Image_search/Spanish_image_search.yml
@@ -482,4 +482,483 @@ http_interactions:
[]}, {"pivot": "site:mil)", "suggestions": []}]}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:15:41 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=barcelona%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '110350'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=309F96ADF45A6D543AA69A01F58D6CA1; path=/; expires=Sat, 14-Dec-2019 22:39:28
+ GMT; domain=bingapis.com
+ - MUIDB=309F96ADF45A6D543AA69A01F58D6CA1; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:28 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:28 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=357D911315A84B8DA852C652B20E9837&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:28 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:28
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=35995CA891856F312BE2500490526E83; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:28 GMT; domain=bingapis.com
+ - _SS=SID=35995CA891856F312BE2500490526E83; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 37ED89B6A7484DBD94137D9497405CF1
+ X-Msedge-Clientid:
+ - 309F96ADF45A6D543AA69A01F58D6CA1
+ X-Msapi-Userstate:
+ - 63c1
+ X-Msedge-Ref:
+ - 'Ref A: 37ED89B6A7484DBD94137D9497405CF1 Ref B: CO1EDGE0917 Ref C: 2018-11-19T22:39:28Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:27 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=9770F8E0B8BD467AB140B43AF1FB6D81&CID=309F96ADF45A6D543AA69A01F58D6CA1&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=9770F8E0B8BD467AB140B43AF1FB6D81&CID=309F96ADF45A6D543AA69A01F58D6CA1&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=barcelona%20(site:gov%20OR%20site:mil)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5188.1", "totalEstimatedMatches": 100, "nextOffset":
+ 23, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8&simid=608029834068362158",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Multipurpose Complex to
+ host FC Barcelona for youth soccer training program - City of Round Rock",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.jsNLG85IRlhmD2eLnbN7YAHaE8&pid=Api",
+ "datePublished": "2018-09-01T00:09:00.0000000Z", "contentUrl": "https:\/\/www.roundrocktexas.gov\/wp-content\/uploads\/2017\/03\/2016FCBEscolaCamp-CharlotteRound2-June202016-15-1948x1300.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "https:\/\/www.roundrocktexas.gov\/news\/official-fc-barcelona-soccer-school-opening-round-rock-austin\/",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "198990 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.roundrocktexas.gov\/news\/official-fc-barcelona-soccer...",
+ "width": 1948, "height": 1300, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_jsNLG85I*mid_753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8*simid_608029834068362158",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8", "accentColor": "B91228"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=9A7AFB70D6F872011900A7EF144EB87866F40B7A&simid=608037616573353764",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "Huitième", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.NAtt1FGsznDDMYfla25phwHaFj&pid=Api",
+ "datePublished": "2018-07-09T07:32:00.0000000Z", "contentUrl": "http:\/\/math.nist.gov\/~JBernal\/ramblas.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/math.nist.gov\/~JBernal\/JBernal_Htn.html",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "442821 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "math.nist.gov\/~JBernal\/JBernal_Htn.html",
+ "width": 1296, "height": 972, "thumbnail": {"width": 474, "height": 355},
+ "imageInsightsToken": "ccid_NAtt1FGs*mid_9A7AFB70D6F872011900A7EF144EB87866F40B7A*simid_608037616573353764",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "9A7AFB70D6F872011900A7EF144EB87866F40B7A", "accentColor": "AB3020"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A583450618A5A0788A7E2E432E241&simid=608011748000270633",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "The World Factbook — Central
+ Intelligence Agency", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.7tjP1Ywk1-RdxX7La_jt4QHaJ4&pid=Api",
+ "datePublished": "2018-09-28T23:43:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/SP_054.JPG",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp.html",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "60960 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp...",
+ "width": 480, "height": 640, "thumbnail": {"width": 474, "height": 632}, "imageInsightsToken":
+ "ccid_7tjP1Ywk*mid_09ED5C20B96A583450618A5A0788A7E2E432E241*simid_608011748000270633",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "09ED5C20B96A583450618A5A0788A7E2E432E241", "accentColor": "225CA9"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A58345061A91365F45F056A9D2CC7&simid=608050720534431260",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "The World Factbook — Central
+ Intelligence Agency", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.E0sVCismAH-jwmiKNPK05AHaJ4&pid=Api",
+ "datePublished": "2018-09-28T23:43:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/SP_057.JPG",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp.html",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "62694 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp...",
+ "width": 480, "height": 640, "thumbnail": {"width": 474, "height": 632}, "imageInsightsToken":
+ "ccid_E0sVCism*mid_09ED5C20B96A58345061A91365F45F056A9D2CC7*simid_608050720534431260",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "09ED5C20B96A58345061A91365F45F056A9D2CC7", "accentColor": "056FC6"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=3407D57FAAB19FF8B667AB9B71C283DF6AFB5596&simid=608022279269713736",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Beautiful Barcelona beckons
+ travelers | Article | The United States Army", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.E8XjvNHYQ1V9IBNpBd1onAHaNN&pid=Api",
+ "datePublished": "2018-05-29T14:54:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361328\/original.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/?from=RSS",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "427554 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons...",
+ "width": 573, "height": 1022, "thumbnail": {"width": 474, "height": 845},
+ "imageInsightsToken": "ccid_E8XjvNHY*mid_3407D57FAAB19FF8B667AB9B71C283DF6AFB5596*simid_608022279269713736",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "3407D57FAAB19FF8B667AB9B71C283DF6AFB5596", "accentColor": "257DA6"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=CDAFB350F666045DFCC4C46D448D88C2623FD2EA&simid=608049225887645968",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "NASA - Members of the FC
+ Barcelona Soccer Team", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.eyJX5eLaSaDJ00ORE_dOtgHaE6&pid=Api",
+ "datePublished": "2016-11-21T20:50:00.0000000Z", "contentUrl": "https:\/\/www.nasa.gov\/images\/content\/154346main_jsc2006e33427_high.jpg",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/Barcelona_soccer_team.html",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "2231422 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/Barcelona...",
+ "width": 3072, "height": 2040, "thumbnail": {"width": 474, "height": 314},
+ "imageInsightsToken": "ccid_eyJX5eLa*mid_CDAFB350F666045DFCC4C46D448D88C2623FD2EA*simid_608049225887645968",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "CDAFB350F666045DFCC4C46D448D88C2623FD2EA", "accentColor": "154274"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=531FE4044224BA2D24281097CC3A771C0FA1BEB3&simid=608003467273242453",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "Barcelona, Spain : Image
+ of the Day", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.bXoVxXWEqTBfEW9DCn7jUQHaE5&pid=Api",
+ "datePublished": "2013-08-15T21:09:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/4000\/4627\/ISS009-E-9987_lrg.jpg",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=4627&eocn=image&eoci=moreiotd",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "499979 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "earthobservatory.nasa.gov\/IOTD\/view.php?id=4627&eocn=image&eoci...",
+ "width": 1000, "height": 662, "thumbnail": {"width": 474, "height": 313},
+ "imageInsightsToken": "ccid_bXoVxXWE*mid_531FE4044224BA2D24281097CC3A771C0FA1BEB3*simid_608003467273242453",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "531FE4044224BA2D24281097CC3A771C0FA1BEB3", "accentColor": "22446B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=9026B2CF3D401DDFF995547D9EABA316E021D2EA&simid=608020080193374796",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "OCED''s Ocean Carbon Cycle
+ Barcelona Express Underway Data", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.a34yQo7HufBvoVHKocb44QAAAA&pid=Api",
+ "datePublished": "2014-11-15T02:56:00.0000000Z", "contentUrl": "http:\/\/www.aoml.noaa.gov\/ocd\/gcc\/graphics\/barcelona.jpg",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/www.aoml.noaa.gov\/ocd\/ocdweb\/barcelona\/barcelona_introduction.html",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "23911 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.aoml.noaa.gov\/ocd\/ocdweb\/barcelona\/barcelona_introduction.html",
+ "width": 300, "height": 225, "thumbnail": {"width": 300, "height": 225}, "imageInsightsToken":
+ "ccid_a34yQo7H*mid_9026B2CF3D401DDFF995547D9EABA316E021D2EA*simid_608020080193374796",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "9026B2CF3D401DDFF995547D9EABA316E021D2EA", "accentColor": "B93C12"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=8DB58A6E04EDE65C791BADE3C9F52D92C6363356&simid=607992330445063032",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Sanctuaries Go To Barcelona!",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.opZjrotxVK8XzQ6WwDB0lwAAAA&pid=Api",
+ "datePublished": "2014-11-07T17:49:00.0000000Z", "contentUrl": "http:\/\/sanctuaries.noaa.gov\/news\/images\/barcelona3.jpg",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/sanctuaries.noaa.gov\/news\/features\/1008_barcelona.html",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "11752 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "sanctuaries.noaa.gov\/news\/features\/1008_barcelona.html",
+ "width": 250, "height": 188, "thumbnail": {"width": 250, "height": 188}, "imageInsightsToken":
+ "ccid_opZjrotx*mid_8DB58A6E04EDE65C791BADE3C9F52D92C6363356*simid_607992330445063032",
+ "imageId": "8DB58A6E04EDE65C791BADE3C9F52D92C6363356", "accentColor": "3E528D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=7A54A3A6F1E98BAF2692221096CB6E11950374A2&simid=608011275554064412",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "Barcelona, Spain : Image
+ of the Day", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.kuEdKYM1VepA1LQtTVGOBAHaFj&pid=Api",
+ "datePublished": "2010-01-30T18:21:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/7000\/7421\/ISS014-E-10547_lrg.jpg",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=7421",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "680604 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "earthobservatory.nasa.gov\/IOTD\/view.php?id=7421",
+ "width": 1000, "height": 750, "thumbnail": {"width": 474, "height": 355},
+ "imageInsightsToken": "ccid_kuEdKYM1*mid_7A54A3A6F1E98BAF2692221096CB6E11950374A2*simid_608011275554064412",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7A54A3A6F1E98BAF2692221096CB6E11950374A2", "accentColor": "1D455A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=633361A66A4A4C4E8CEEC966054CA140B4A54898&simid=608045789880059623",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "AOT Archives | City of
+ Casa Grande", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.CTX9L3ONJSvu36MoJYf67wHaEr&pid=Api",
+ "datePublished": "2018-01-14T21:45:00.0000000Z", "contentUrl": "https:\/\/casagrandeaz.gov\/wp-content\/uploads\/2017\/07\/FC-Barcelona-320x202.jpg",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "https:\/\/www.casagrandeaz.gov\/category\/aot\/",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "12131 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.casagrandeaz.gov\/category\/aot",
+ "width": 320, "height": 202, "thumbnail": {"width": 474, "height": 299}, "imageInsightsToken":
+ "ccid_CTX9L3ON*mid_633361A66A4A4C4E8CEEC966054CA140B4A54898*simid_608045789880059623",
+ "imageId": "633361A66A4A4C4E8CEEC966054CA140B4A54898", "accentColor": "162DB5"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=1904E42AE28EA3B5F1508941A0D1B6C9930A66DC&simid=608013478909840547",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "Spangdahlem lt shares first-time
+ marathon experience > Spangdahlem Air Base > Display", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.NeZdg-Ti_Pz-idGQT8VGxgHaFj&pid=Api",
+ "datePublished": "2018-07-15T22:05:00.0000000Z", "contentUrl": "https:\/\/media.defense.gov\/2009\/Mar\/09\/2000613566\/780\/780\/0\/090301-F-0000R-148.JPG",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "http:\/\/www.spangdahlem.af.mil\/News\/Commentaries\/Display\/Article\/296930\/spangdahlem-lt-shares-first-time-marathon-experience\/",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "108714 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.spangdahlem.af.mil\/News\/Commentaries\/Display\/Article\/296930...",
+ "width": 780, "height": 585, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_NeZdg+Ti*mid_1904E42AE28EA3B5F1508941A0D1B6C9930A66DC*simid_608013478909840547",
+ "imageId": "1904E42AE28EA3B5F1508941A0D1B6C9930A66DC", "accentColor": "9F6B2C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=B7FDE023134A738697007907458EF2C489E789DE&simid=608009282697824516",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "Beautiful Barcelona beckons
+ travelers | Article | The United States Army", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.lbcg_5wtkT-xmWaiUVS4TwHaNJ&pid=Api",
+ "datePublished": "2018-07-01T22:51:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361327\/original.jpg",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "http:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "386581 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers",
+ "width": 577, "height": 1024, "thumbnail": {"width": 474, "height": 841},
+ "imageInsightsToken": "ccid_lbcg\/5wt*mid_B7FDE023134A738697007907458EF2C489E789DE*simid_608009282697824516",
+ "imageId": "B7FDE023134A738697007907458EF2C489E789DE", "accentColor": "2A77A1"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=3407D57FAAB19FF8B667EDB8CA3DE73B8B924AB7&simid=607998979053128488",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Beautiful Barcelona beckons
+ travelers | Article | The United States Army", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.woqA9kNlKusTTwArJrMO2gHaFh&pid=Api",
+ "datePublished": "2018-05-29T14:54:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361322\/size0.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/?from=RSS",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "58814 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons...",
+ "width": 583, "height": 435, "thumbnail": {"width": 474, "height": 353}, "imageInsightsToken":
+ "ccid_woqA9kNl*mid_3407D57FAAB19FF8B667EDB8CA3DE73B8B924AB7*simid_607998979053128488",
+ "imageId": "3407D57FAAB19FF8B667EDB8CA3DE73B8B924AB7", "accentColor": "996A32"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=3407D57FAAB19FF8B6673CA74348DE20F0C0157F&simid=608004403604492169",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "Beautiful Barcelona beckons
+ travelers | Article | The United States Army", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.8-fbOCs9tuPqag6Vqyuc3QHaNK&pid=Api",
+ "datePublished": "2018-05-29T14:54:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361324\/original.jpg",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/?from=RSS",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "351934 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons...",
+ "width": 576, "height": 1024, "thumbnail": {"width": 474, "height": 842},
+ "imageInsightsToken": "ccid_8+fbOCs9*mid_3407D57FAAB19FF8B6673CA74348DE20F0C0157F*simid_608004403604492169",
+ "imageId": "3407D57FAAB19FF8B6673CA74348DE20F0C0157F", "accentColor": "886C43"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=B7FDE023134A738697008B78B37963B42A6DA7A2&simid=608011198243014426",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "Beautiful Barcelona beckons
+ travelers | Article | The United States Army", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.KVdd2ZudMJbjbaz2gmgBGAHaJ7&pid=Api",
+ "datePublished": "2018-07-01T22:51:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361323\/original.jpg",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "http:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "567189 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers",
+ "width": 764, "height": 1024, "thumbnail": {"width": 474, "height": 635},
+ "imageInsightsToken": "ccid_KVdd2Zud*mid_B7FDE023134A738697008B78B37963B42A6DA7A2*simid_608011198243014426",
+ "imageId": "B7FDE023134A738697008B78B37963B42A6DA7A2", "accentColor": "323214"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=A4F4EBD807B723EDBD592CC07EE05ED57F62448B&simid=608014707255349048",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "Consulado General de Estados
+ Unidos en Barcelona | Embajada de EE.UU. en España y Andorra", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.CpB04nUDWfhd6Re-_meAyAHaDc&pid=Api",
+ "datePublished": "2018-06-21T16:36:00.0000000Z", "contentUrl": "https:\/\/es.usembassy.gov\/wp-content\/uploads\/sites\/260\/2015\/10\/ACB_7007-1140x530.jpg",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "https:\/\/es.usembassy.gov\/es\/embassy-consulates-es\/barcelona-es\/",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "116482 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/es.usembassy.gov\/es\/embassy-consulates-es\/barcelona-es",
+ "width": 1140, "height": 530, "thumbnail": {"width": 474, "height": 220},
+ "imageInsightsToken": "ccid_CpB04nUD*mid_A4F4EBD807B723EDBD592CC07EE05ED57F62448B*simid_608014707255349048",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A4F4EBD807B723EDBD592CC07EE05ED57F62448B", "accentColor": "4D5933"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A58345061DF3F983A42F8E0F0F164&simid=608028073125874228",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "The World Factbook — Central
+ Intelligence Agency", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.yk-fXFfE2TwtWOV6yhGHEQHaFj&pid=Api",
+ "datePublished": "2018-09-28T23:43:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/large\/SP_059_large.jpg",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp.html",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "61344 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp...",
+ "width": 640, "height": 480, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_yk+fXFfE*mid_09ED5C20B96A58345061DF3F983A42F8E0F0F164*simid_608028073125874228",
+ "imageId": "09ED5C20B96A58345061DF3F983A42F8E0F0F164", "accentColor": "A0982B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=D74130502E15461A214608D1F77251C30C2316A7&simid=607989087742067857",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "Parks and Recreation |
+ After School, Recreation & Community Services Programs", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.koTV3-v1B50RiGa9EqsIaAHaK5&pid=Api",
+ "datePublished": "2018-03-12T20:45:00.0000000Z", "contentUrl": "https:\/\/www.fresno.gov\/parks\/wp-content\/uploads\/sites\/14\/2016\/11\/FRESNO-AD.jpg",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "https:\/\/www.fresno.gov\/parks\/activities-recreational-programs\/",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "1684061 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.fresno.gov\/parks\/activities-recreational-programs",
+ "width": 1252, "height": 1843, "thumbnail": {"width": 474, "height": 697},
+ "imageInsightsToken": "ccid_koTV3+v1*mid_D74130502E15461A214608D1F77251C30C2316A7*simid_607989087742067857",
+ "imageId": "D74130502E15461A214608D1F77251C30C2316A7", "accentColor": "0C4992"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A58345061B6159328572048424B0B&simid=608004025633999048",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "The World Factbook — Central
+ Intelligence Agency", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.HwGJV0AxyCWDTEfY7d1x9QHaE7&pid=Api",
+ "datePublished": "2018-09-28T23:43:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/SP_040.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp.html",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "62600 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp...",
+ "width": 650, "height": 433, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_HwGJV0Ax*mid_09ED5C20B96A58345061B6159328572048424B0B*simid_608004025633999048",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "09ED5C20B96A58345061B6159328572048424B0B", "accentColor": "9C6D2F"}],
+ "queryExpansions": [{"text": "FC Barcelona", "displayText": "FC", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=FC+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Venezuela", "displayText": "Venezuela", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Venezuela&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venezuela%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Venezuela&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venezuela%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Venezuela&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spain", "displayText": "Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Las Ramblas Barcelona", "displayText": "Las Ramblas", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Las+Ramblas+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Las+Ramblas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Las+Ramblas+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Las+Ramblas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Las+Ramblas+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Gaudi Barcelona", "displayText": "Gaudi", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Gaudi+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gaudi%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Gaudi+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gaudi%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Gaudi+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sagrada Familia Barcelona", "displayText": "Sagrada Familia", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Sagrada+Familia+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sagrada+Familia%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sagrada+Familia+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sagrada+Familia%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sagrada+Familia+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Park Guell Barcelona", "displayText": "Park Guell", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Park+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Park+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Park+Guell+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Chair", "displayText": "Chair", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Chair&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Chair&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Chair&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Gothic Quarter Barcelona", "displayText": "Gothic Quarter", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Gothic+Quarter+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gothic+Quarter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Gothic+Quarter+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gothic+Quarter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Gothic+Quarter+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Statues", "displayText": "Statues", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Statues&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statues%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Statues&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statues%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Statues&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Cathedral", "displayText": "Cathedral", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Cathedral&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cathedral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Cathedral&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cathedral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Cathedral&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Monuments", "displayText": "Monuments", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Monuments&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Monuments%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Monuments&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Monuments%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Monuments&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Montjuic Barcelona", "displayText": "Montjuic", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Montjuic+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montjuic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Montjuic+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montjuic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Montjuic+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "La Pedrera Barcelona", "displayText": "La Pedrera", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=La+Pedrera+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Pedrera%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=La+Pedrera+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Pedrera%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=La+Pedrera+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Camp Nou Barcelona", "displayText": "Camp Nou", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Camp+Nou+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Camp+Nou%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Camp+Nou+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Camp+Nou%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Camp+Nou+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Neymar Barcelona", "displayText": "Neymar", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Neymar+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neymar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Neymar+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neymar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Neymar+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Dani Alves Barcelona", "displayText": "Dani Alves", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Dani+Alves+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dani+Alves%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Dani+Alves+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dani+Alves%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Dani+Alves+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona La Liga", "displayText": "La Liga", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+La+Liga&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Liga%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+La+Liga&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Liga%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+La+Liga&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Pavilion", "displayText": "Pavilion", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Pavilion&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pavilion%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Pavilion&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pavilion%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Pavilion&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Casa Batllo Barcelona", "displayText": "Casa Batllo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Casa+Batllo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Batllo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Casa+Batllo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Batllo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Casa+Batllo+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Real Madrid vs Barcelona", "displayText": "Real Madrid vs", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Real+Madrid+vs+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Real+Madrid+vs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Real+Madrid+vs+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Real+Madrid+vs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Real+Madrid+vs+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Architecture", "displayText": "Architecture", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Architecture&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Architecture%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Architecture&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Architecture%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Architecture&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Landscape", "displayText": "Landscape", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Landscape&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscape%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Landscape&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscape%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Landscape&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Skyline", "displayText": "Skyline", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Skyline&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Skyline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Skyline&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Skyline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Skyline&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Aquarium", "displayText": "Aquarium", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Aquarium&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Aquarium%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Aquarium&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Aquarium%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Aquarium&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Zoo", "displayText": "Zoo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Zoo&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Zoo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Zoo&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Zoo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Zoo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Animals", "displayText": "Animals", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Animals&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animals%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Animals&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animals%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Animals&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Montserrat Barcelona", "displayText": "Montserrat", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Montserrat+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montserrat%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Montserrat+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montserrat%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Montserrat+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Airport", "displayText": "Airport", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Airport&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Airport%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Airport&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Airport%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Airport&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "W Hotel Barcelona", "displayText": "W Hotel", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=W+Hotel+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22W+Hotel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=W+Hotel+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22W+Hotel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=W+Hotel+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Casa Mila Barcelona", "displayText": "Casa Mila", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Casa+Mila+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Mila%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Casa+Mila+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Mila%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Casa+Mila+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "La Boqueria Barcelona", "displayText": "La Boqueria", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=La+Boqueria+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Boqueria%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=La+Boqueria+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Boqueria%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=La+Boqueria+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Tibidabo Barcelona", "displayText": "Tibidabo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Tibidabo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tibidabo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Tibidabo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tibidabo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Tibidabo+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Neighborhoods", "displayText": "Neighborhoods", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Neighborhoods&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neighborhoods%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Neighborhoods&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neighborhoods%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Neighborhoods&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Barrios", "displayText": "Barrios", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Barrios&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barrios%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Barrios&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barrios%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Barrios&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Streets", "displayText": "Streets", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Streets&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Streets%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Streets&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Streets%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Streets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "El Barcelona", "displayText": "El", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=El+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22El%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=El+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22El%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=El+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spanish", "displayText": "Spanish", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spanish&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Spanish&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Spanish&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Ciudad", "displayText": "Ciudad", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Ciudad&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ciudad%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Barcelona+Ciudad&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ciudad%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Ciudad&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Parque Guell Barcelona", "displayText": "Parque Guell", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Parque+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Parque+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Parque+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Parque+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Parque+Guell+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "barcelona", "suggestions": [{"text": "Seville,
+ Spain", "displayText": "Seville, Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Seville%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Seville%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5277.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Seville%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Seville%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Seville%2c+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Paris", "displayText": "Paris", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Paris&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paris%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5279.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Paris&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paris%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Paris&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Rome", "displayText": "Rome", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Rome&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5281.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Rome&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Rome&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "London", "displayText": "London", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=London&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22London%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5283.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=London&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22London%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=London&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Malaga, Spain", "displayText": "Malaga, Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Malaga%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Malaga%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5285.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Malaga%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Malaga%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Malaga%2c+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Lisbon Portugal", "displayText": "Lisbon Portugal", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Lisbon+Portugal&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lisbon+Portugal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5287.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Lisbon+Portugal&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lisbon+Portugal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Lisbon+Portugal&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Milan Italy", "displayText": "Milan Italy", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Milan+Italy&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Milan+Italy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5289.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Milan+Italy&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Milan+Italy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Milan+Italy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Granada, Spain", "displayText": "Granada, Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Granada%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Granada%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5291.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Granada%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Granada%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Granada%2c+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Classis of Amsterdam", "displayText": "Classis of Amsterdam", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Classis+of+Amsterdam&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classis+of+Amsterdam%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5293.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Classis+of+Amsterdam&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classis+of+Amsterdam%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Classis+of+Amsterdam&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Berlin Germany", "displayText": "Berlin Germany", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Berlin+Germany&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Berlin+Germany%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5295.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Berlin+Germany&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Berlin+Germany%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Berlin+Germany&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Istanbul", "displayText": "Istanbul", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Istanbul&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Istanbul%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5297.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Istanbul&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Istanbul%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Istanbul&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Prague", "displayText": "Prague", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Prague&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Prague%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5299.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Prague&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Prague%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Prague&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Park Güell", "displayText": "Park Güell", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Park+G%c3%bcell&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+G%c3%bcell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5301.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Park+G%c3%bcell&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+G%c3%bcell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Park+G%c3%bcell&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "FC Barcelona", "displayText": "FC Barcelona", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC+Barcelona%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5303.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC+Barcelona%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=FC+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Spain", "displayText": "Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "webSearchUrlPingSuffix": "DevEx,5305.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:gov", "suggestions": []}, {"pivot": "OR", "suggestions":
+ []}, {"pivot": "site:mil)", "suggestions": []}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:28 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Image_search_using_mobile_template/English_Image_search_on_a_legacy_site.yml b/features/vcr_cassettes/Image_search_using_mobile_template/English_Image_search_on_a_legacy_site.yml
index fb11298661..9ed9df5d16 100644
--- a/features/vcr_cassettes/Image_search_using_mobile_template/English_Image_search_on_a_legacy_site.yml
+++ b/features/vcr_cassettes/Image_search_using_mobile_template/English_Image_search_on_a_legacy_site.yml
@@ -634,4 +634,655 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:45:09 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=sunset%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4267'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:00 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2719116753C4602121531DCB52136110; path=/; expires=Sat, 14-Dec-2019 22:41:00
+ GMT; domain=bingapis.com
+ - MUIDB=2719116753C4602121531DCB52136110; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:00 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:00 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=FF84BAB68EDC411DA6487130F5E3274F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:00 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:00
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=28217BBDE0496A7D2EA17711E19E6BD5; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:00 GMT; domain=bingapis.com
+ - _SS=SID=28217BBDE0496A7D2EA17711E19E6BD5; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 0A904BD95CD9453FBFC38C31EF488BEC
+ X-Msedge-Clientid:
+ - 2719116753C4602121531DCB52136110
+ X-Msapi-Userstate:
+ - fc8c
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 0A904BD95CD9453FBFC38C31EF488BEC Ref B: CO1EDGE0112 Ref C: 2018-11-19T22:41:00Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:00 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A0827437A16B4A9E9B1C050FF220F048&CID=2719116753C4602121531DCB52136110&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A0827437A16B4A9E9B1C050FF220F048&CID=2719116753C4602121531DCB52136110&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=sunset+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5420.1", "totalEstimatedMatches": 6660000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Town of Sunset Beach", "url": "https:\/\/www.sunsetbeachnc.gov\/", "urlPingSuffix":
+ "DevEx,5056.1", "about": [{"name": "Sunset Beach"}], "displayUrl": "https:\/\/www.sunsetbeachnc.gov",
+ "snippet": "Planning and Inspections Department Seeks Feedback. The Town of
+ Sunset Beach Planning and Inspections Department is seeking feedback. The
+ purpose of this feedback is to solicit input on the second draft of a proposed
+ re-write of Article 11 Sign Regulations.", "dateLastCrawled": "2018-11-16T09:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "DEEP:
+ Sunrise - Sunset Times", "url": "http:\/\/www.ct.gov\/deep\/cwp\/view.asp?Q=323422",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "www.ct.gov\/deep\/cwp\/view.asp?Q=323422",
+ "snippet": "Sunrise - Sunset Eastern Standard Time: Sunrise and sunset
+ times are approximate for central Connecticut. Add 1 hour for Daylight Saving
+ Time when in effect from second Sunday in March until the first Sunday in
+ November.", "dateLastCrawled": "2018-11-16T09:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Texas Sunset Commission", "url": "https:\/\/www.sunset.texas.gov\/",
+ "urlPingSuffix": "DevEx,5084.1", "about": [{"name": "Sunset Advisory Commission"},
+ {"name": "Sunset Advisory Commission"}], "displayUrl": "https:\/\/www.sunset.texas.gov",
+ "snippet": "The Sunset staff is composed of evaluation and administrative
+ professionals that support the Commission by performing agency reviews and
+ assisting in the legislative process. Commission Members The Impact", "dateLastCrawled":
+ "2018-11-13T15:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Sun or Moon Rise\/Set Table for One Year", "url": "http:\/\/aa.usno.navy.mil\/data\/docs\/RS_OneYear.php",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "aa.usno.navy.mil\/data\/docs\/RS_OneYear.php",
+ "snippet": "Important! Please read the Notes section. This page provides a
+ way for you to obtain a table of the times of sunrise\/sunset, moonrise\/moonset,
+ or the beginning and end of twilight, for one year.", "dateLastCrawled": "2018-11-12T03:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Sunrise
+ and Sunset Information", "url": "https:\/\/www.weather.gov\/mrx\/sr_ss",
+ "urlPingSuffix": "DevEx,5113.1", "displayUrl": "https:\/\/www.weather.gov\/mrx\/sr_ss",
+ "snippet": "The U.S. Naval Observatory (USNO) computes astronomical data.
+ Therefore, the NWS does not record, certify, or authenticate astronomical
+ data. Computed times of sunrise, sunset, moonrise, moonset; and twilight,
+ moon phases and other astronomical data are available from USNO''s Astronomical
+ ...", "dateLastCrawled": "2018-11-15T07:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Sunset Commission Meetings | Texas Sunset Commission", "url":
+ "https:\/\/www.sunset.texas.gov\/meetings", "urlPingSuffix": "DevEx,5125.1",
+ "displayUrl": "https:\/\/www.sunset.texas.gov\/meetings", "snippet": "The
+ Sunset Commission cannot override an agency’s decisions. At least a month
+ after the public hearing, the Sunset Commission meets again to vote on its
+ recommendations to the full Legislature about an agency.", "dateLastCrawled":
+ "2018-10-25T20:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Sunset Crater Volcano National Monument (U.S. National ...", "url":
+ "https:\/\/www.nps.gov\/sucr\/index.htm", "urlPingSuffix": "DevEx,5139.1",
+ "about": [{"name": "Sunset Crater Volcano National Monument"}, {"name": "Sunset
+ Crater"}], "displayUrl": "https:\/\/www.nps.gov\/sucr", "snippet": "The
+ cinder cone volcano''s rim is the dusky red of sunset, but the crater is
+ only part of the story. Around 1085 the ground began to shake, and lava spewed
+ high into the air.", "dateLastCrawled": "2018-09-25T01:26:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Sunset SB",
+ "url": "http:\/\/www.parks.ca.gov\/?page_id=544", "urlPingSuffix": "DevEx,5153.1",
+ "about": [{"name": "Sunset State Beach"}, {"name": "Sunset State Beach"}],
+ "displayUrl": "www.parks.ca.gov\/?page_id=544", "snippet": "Visiting Sunset.
+ A peaceful campground under the pines, picnicking on the beach, and unmatched
+ views of Monterey Bay make Sunset State Beach a favorite year-round destination.",
+ "dateLastCrawled": "2018-11-16T14:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Sunset Park - Clark County Regional Park", "url": "http:\/\/www.clarkcountynv.gov\/parks\/pages\/sunset-park-clark-county-nv.aspx",
+ "urlPingSuffix": "DevEx,5167.1", "about": [{"name": "Sunset Park, Las Vegas"},
+ {"name": "Sunset Park, Las Vegas"}], "displayUrl": "www.clarkcountynv.gov\/parks\/pages\/sunset-park-clark-county-nv.aspx",
+ "snippet": "Sunset Park hosts numerous special events, including a Clark
+ County signature event, the Age of Chivalry Renaissance Festival. The land
+ for Sunset Park was acquired in 1967 and contains the last remaining dunes
+ of what once covered most of Paradise Valley.", "dateLastCrawled": "2018-11-14T21:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "THE COLORS
+ OF TWILIGHT AND SUNSET - Stephen F. Corfidi", "url": "https:\/\/www.spc.noaa.gov\/publications\/corfidi\/sunset\/",
+ "urlPingSuffix": "DevEx,5179.1", "displayUrl": "https:\/\/www.spc.noaa.gov\/publications\/corfidi\/sunset",
+ "snippet": "The Colors of Sunset and Twilight. Stephen F. Corfidi. NOAA\/NWS
+ Storm Prediction Center. Norman, OK 73072. September 2014 (An early, abridged
+ version of this paper appeared in Weatherwise magazine, June\/July 1996; photographs
+ are by the author) Everyone at one time or another has marveled at the beautiful
+ red and orange colors of a sunrise or sunset.", "dateLastCrawled": "2018-11-11T11:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Complete
+ Sun and Moon Data for One Day", "url": "http:\/\/aa.usno.navy.mil\/data\/docs\/RS_OneDay.php\/",
+ "urlPingSuffix": "DevEx,5193.1", "about": [{"name": "Sun transit time"}],
+ "displayUrl": "aa.usno.navy.mil\/data\/docs\/RS_OneDay.php", "snippet":
+ "Use these forms to obtain rise, set, and transit times for the Sun and Moon;
+ civil twilight beginning and end times; and, lunar phase information for any
+ year between 1700 and 2100. First, specify the date and location in one of
+ the two forms below. Then, click the \"Get data\" button at the end of the
+ form.", "dateLastCrawled": "2018-11-11T20:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Sunrise and Sunset Tables for Select Cities", "url": "https:\/\/www.weather.gov\/dvn\/sunrise-sunset",
+ "urlPingSuffix": "DevEx,5207.1", "displayUrl": "https:\/\/www.weather.gov\/dvn\/sunrise-sunset",
+ "snippet": "Sunrise\/Sunset Tables are courtesy of the U.S. Naval Observatory.
+ Times are Central Standard. Add one hour for daylight time, when in use.",
+ "dateLastCrawled": "2018-11-14T04:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "NOAA Improved Sunrise\/Sunset Calculation", "url": "https:\/\/www.esrl.noaa.gov\/gmd\/grad\/solcalc\/sunrise.html",
+ "urlPingSuffix": "DevEx,5221.1", "displayUrl": "https:\/\/www.esrl.noaa.gov\/gmd\/grad\/solcalc\/sunrise.html",
+ "snippet": "For locations above the Arctic Circle and below the Antarctic
+ Circle, when a sunrise or sunset does not occur on the given day the program
+ locates the local time and date of the most recent sunrise or sunset, and
+ the next sunset or sunrise.", "dateLastCrawled": "2018-11-13T15:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Sunrise
+ and Sunset Information - weather.gov", "url": "https:\/\/www.weather.gov\/ohx\/sunrise_sunset",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "https:\/\/www.weather.gov\/ohx\/sunrise_sunset",
+ "snippet": "The U.S. Naval Observatory (USNO) computes astronomical data.
+ Therefore, the NWS does not record, certify, or authenticate astronomical
+ data. Computed times of sunrise, sunset, moonrise, moonset; and twilight,
+ moon phases and other astronomical data are available from USNO''s Astronomical
+ ...", "dateLastCrawled": "2018-11-15T21:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Sunset Campground - Bryce Canyon National Park (U.S ...", "url":
+ "https:\/\/www.nps.gov\/brca\/planyourvisit\/sunsetcampground.htm", "urlPingSuffix":
+ "DevEx,5250.1", "about": [{"name": "Sunset Campground"}, {"name": "Bryce Canyon
+ National Park"}, {"name": "Sunset Campground"}], "displayUrl": "https:\/\/www.nps.gov\/brca\/planyourvisit\/sunsetcampground.htm",
+ "snippet": "Sunset Campground is located west of Sunset Point, approximately
+ 1.5 miles south of the Bryce Canyon Visitor Center, and is comprised of 100
+ sites in 3 loops; A, B, and C. Loop A is for RV campers. Loops B and C are
+ for tent campers.", "dateLastCrawled": "2018-11-09T02:07:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Sunset Campground
+ - Sequoia & Kings Canyon National Parks ...", "url": "https:\/\/www.nps.gov\/seki\/planyourvisit\/sunset.htm",
+ "urlPingSuffix": "DevEx,5264.1", "about": [{"name": "Sunset Campground"},
+ {"name": "Sunset Campground"}], "displayUrl": "https:\/\/www.nps.gov\/seki\/planyourvisit\/sunset.htm",
+ "snippet": "Sunset Campground is in the Grant Grove area of Kings Canyon
+ National Park, 3 miles (5 km) from the park entrance on Hwy 180. The campground
+ is near Grant Grove Village in an open stand of evergreen trees at an elevation
+ of 6,500 ft (1,980 m).", "dateLastCrawled": "2018-09-11T09:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Sunset
+ Point - Bryce Canyon National Park (U.S. National ...", "url": "https:\/\/www.nps.gov\/brca\/planyourvisit\/sunset.htm",
+ "urlPingSuffix": "DevEx,5278.1", "about": [{"name": "Bryce Canyon National
+ Park"}], "displayUrl": "https:\/\/www.nps.gov\/brca\/planyourvisit\/sunset.htm",
+ "snippet": "Sunset Point is a wonderful place for watching birds. Here Violet-green
+ Swallows, Cliff Swallows, and White-throated Swifts patrol the cliffs and
+ hoodoos for insects that they devour on the wing. Clark''s Nutcrackers and
+ Steller''s Jays split open pinecones in search of nuts.", "dateLastCrawled":
+ "2018-09-11T07:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "How Sunset Works | Texas Sunset Commission", "url": "https:\/\/www.sunset.texas.gov\/how-sunset-works",
+ "urlPingSuffix": "DevEx,5292.1", "displayUrl": "https:\/\/www.sunset.texas.gov\/how-sunset-works",
+ "snippet": "How Sunset Works Sunset answers a basic question for the Texas
+ Legislature: Are an agency’s functions needed, and if so, how can the agency
+ work better and save money for Texans? Below is the general outline of the
+ Sunset process and how the public can participate.", "dateLastCrawled":
+ "2018-11-03T19:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "COPRRR Sunset Reviews | DORA OPRRR", "url": "https:\/\/www.colorado.gov\/pacific\/dora-oprrr\/coprrr-sunset-reviews",
+ "urlPingSuffix": "DevEx,5304.1", "displayUrl": "https:\/\/www.colorado.gov\/pacific\/dora-oprrr\/coprrr-sunset-reviews",
+ "snippet": "Sunset Reviews. The Colorado General Assembly sets specific
+ dates that a particular agency, board, or function of government will terminate
+ unless the legislature passes new legislation to continue.", "dateLastCrawled":
+ "2018-11-12T20:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Sunset Cliffs Natural Park | City of San Diego Official ...",
+ "url": "https:\/\/www.sandiego.gov\/park-and-recreation\/parks\/regional\/shoreline\/sunset",
+ "urlPingSuffix": "DevEx,5318.1", "about": [{"name": "Sunset Cliffs, San Diego"}],
+ "displayUrl": "https:\/\/www.sandiego.gov\/...\/parks\/regional\/shoreline\/sunset",
+ "snippet": "Dedicated in 1983, Sunset Cliffs Natural Park is a 68-acre resource-based
+ park stretching along the Pacific Ocean bordering the western edge of Point
+ Loma. The 18-acre linear section of the park lies to the west of Sunset Cliffs
+ Boulevard between Adair and Ladera streets.", "dateLastCrawled": "2018-11-15T01:25:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:01 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=sunset%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '85449'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=03D27761D01F64B13C8A7BCDD1C86568; path=/; expires=Sat, 14-Dec-2019 22:41:01
+ GMT; domain=bingapis.com
+ - MUIDB=03D27761D01F64B13C8A7BCDD1C86568; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:01 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:01 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CED550D9E7154CC59E5CDD8904AE734B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:01 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:01
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2A8581339BA5642816AF8D9F9A72650E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:01 GMT; domain=bingapis.com
+ - _SS=SID=2A8581339BA5642816AF8D9F9A72650E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 1E6CA9D81AF84F54BDB16E8E643CD953
+ X-Msedge-Clientid:
+ - 03D27761D01F64B13C8A7BCDD1C86568
+ X-Msapi-Userstate:
+ - 51e2
+ X-Msedge-Ref:
+ - 'Ref A: 1E6CA9D81AF84F54BDB16E8E643CD953 Ref B: CO1EDGE0916 Ref C: 2018-11-19T22:41:01Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:01 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5252CB333DC04B3EA317616C5862D7F8&CID=03D27761D01F64B13C8A7BCDD1C86568&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5252CB333DC04B3EA317616C5862D7F8&CID=03D27761D01F64B13C8A7BCDD1C86568&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=sunset%20(site:gov%20OR%20site:mil)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5188.1", "totalEstimatedMatches": 103, "nextOffset":
+ 22, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=B24F30C7544AB885FA198D7C75C0C2414399BA62&simid=608010287710867255",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Walgren Lake State Recreation
+ Area - Nebraska Game and ParksNebraska Game and Parks", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.SBTPODqVg6M450Xc4tXebAHaE6&pid=Api",
+ "datePublished": "2018-07-07T11:45:00.0000000Z", "contentUrl": "http:\/\/outdoornebraska.gov\/wp-content\/uploads\/2015\/11\/CI_P_sunset_111015.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/outdoornebraska.gov\/walgrenlake\/",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "90704 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "outdoornebraska.gov\/walgrenlake", "width":
+ 800, "height": 531, "thumbnail": {"width": 474, "height": 314}, "imageInsightsToken":
+ "ccid_SBTPODqV*mid_B24F30C7544AB885FA198D7C75C0C2414399BA62*simid_608010287710867255",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "B24F30C7544AB885FA198D7C75C0C2414399BA62", "accentColor": "A15C00"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=7902C930A3F8A5BBE293286293A3D530AE1A46CE&simid=608044587288300642",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "Start a career in the beautiful
+ city of Miami - VAntage Point", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.KlRXUwDKoc23u3uSgq7FSgHaDs&pid=Api",
+ "datePublished": "2018-07-14T08:31:00.0000000Z", "contentUrl": "https:\/\/www.blogs.va.gov\/VAntage\/wp-content\/uploads\/2016\/08\/Miami.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "https:\/\/www.blogs.va.gov\/VAntage\/30194\/career-opportunities-in-miami\/",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "262375 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.blogs.va.gov\/VAntage\/30194\/career-opportunities-in-miami",
+ "width": 1920, "height": 958, "thumbnail": {"width": 474, "height": 236},
+ "imageInsightsToken": "ccid_KlRXUwDK*mid_7902C930A3F8A5BBE293286293A3D530AE1A46CE*simid_608044587288300642",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7902C930A3F8A5BBE293286293A3D530AE1A46CE", "accentColor": "B14D1A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=4CE374F8F09BC9BD54944FF204264A3A7EC7E014&simid=608047443437552152",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Photo Gallery (U.S. National
+ Park Service)", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.T093O7b5czgVhQChZrZmDAHaE6&pid=Api",
+ "datePublished": "2017-12-25T08:40:00.0000000Z", "contentUrl": "https:\/\/www.nps.gov\/common\/uploads\/photogallery\/akr\/park\/guis\/89CE02B9-1DD8-B71C-07AD87C95B2FAD60\/89CE02B9-1DD8-B71C-07AD87C95B2FAD60.jpg",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.nps.gov\/media\/photo\/gallery.htm?id=89CDC44E-1DD8-B71C-070C285AEC7E1E05",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "633062 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.nps.gov\/media\/photo\/gallery.htm?id=89CDC44E-1DD8-B71C...",
+ "width": 1200, "height": 797, "thumbnail": {"width": 474, "height": 314},
+ "imageInsightsToken": "ccid_T093O7b5*mid_4CE374F8F09BC9BD54944FF204264A3A7EC7E014*simid_608047443437552152",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "4CE374F8F09BC9BD54944FF204264A3A7EC7E014", "accentColor": "AB7620"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=974F8222451410607034816DA366C2025B3A9314&simid=608056278165815876",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Sandy Pacific Sunset",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.TU2zznoH3Iov1idCIBBVpAHaE8&pid=Api",
+ "datePublished": "2018-07-11T03:41:00.0000000Z", "contentUrl": "https:\/\/prd-wret.s3-us-west-2.amazonaws.com\/assets\/palladium\/production\/s3fs-public\/styles\/full_width\/public\/LaJolla2-1-.jpg?itok=-s56oUhI",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.usgs.gov\/media\/images\/sandy-pacific-sunset",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "135318 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.usgs.gov\/media\/images\/sandy-pacific-sunset",
+ "width": 1180, "height": 787, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_TU2zznoH*mid_974F8222451410607034816DA366C2025B3A9314*simid_608056278165815876",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "974F8222451410607034816DA366C2025B3A9314", "accentColor": "C78004"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=12FFFD089370647E507A3594CAD7981D0EADA535&simid=608035907175252989",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Pristine Pacific Sunset",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.pmbCzYsAw5ta7xPdv98gfQHaD0&pid=Api",
+ "datePublished": "2018-07-05T08:27:00.0000000Z", "contentUrl": "https:\/\/prd-wret.s3-us-west-2.amazonaws.com\/assets\/palladium\/production\/s3fs-public\/styles\/full_width\/public\/LaJolla1-1-.jpg?itok=M3buNvLK",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/www.usgs.gov\/media\/images\/pristine-pacific-sunset",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "85308 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.usgs.gov\/media\/images\/pristine-pacific-sunset",
+ "width": 1180, "height": 609, "thumbnail": {"width": 474, "height": 244},
+ "imageInsightsToken": "ccid_pmbCzYsA*mid_12FFFD089370647E507A3594CAD7981D0EADA535*simid_608035907175252989",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "12FFFD089370647E507A3594CAD7981D0EADA535", "accentColor": "C68D05"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=A8216AB98F11A1278AA22381DF4903B27F8D05D9&simid=608001843781697941",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "NC National Wildlife Refuges",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.2NAuGYDLkkbLBqABa8a7nQHaFj&pid=Api",
+ "datePublished": "2016-05-19T12:00:00.0000000Z", "contentUrl": "http:\/\/www.fws.gov\/ncgatewayvc\/images\/sunset%206%20allie.JPG",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.fws.gov\/ncgatewayvc\/news\/2016%20News\/5-19-2016-sunset.html",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "119981 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.fws.gov\/ncgatewayvc\/news\/2016 News\/5-19-2016-sunset.html",
+ "width": 1012, "height": 759, "thumbnail": {"width": 474, "height": 355},
+ "imageInsightsToken": "ccid_2NAuGYDL*mid_A8216AB98F11A1278AA22381DF4903B27F8D05D9*simid_608001843781697941",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A8216AB98F11A1278AA22381DF4903B27F8D05D9", "accentColor": "AF7F1C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=B56FDC1DECA923545914234DB3E006569F057D50&simid=608027068104445245",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "June 4 PARK BUZZ: You haven''t
+ been there unless you have a PIC to PROVE it - Parkways", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.euFSHrdRSozo7qp9YFR-5AHaHa&pid=Api",
+ "datePublished": "2015-06-04T17:07:00.0000000Z", "contentUrl": "http:\/\/cosparkways.wpengine.netdna-cdn.com\/wp-content\/uploads\/2015\/06\/6.5-6.jpg",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/parkways.seattle.gov\/2015\/06\/04\/june-4-park-buzz-you-havent-been-there-unless-you-have-a-pic-to-prove-it\/",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "59942 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "parkways.seattle.gov\/2015\/06\/04\/june-4-park-buzz-you-havent-been...",
+ "width": 640, "height": 640, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_euFSHrdR*mid_B56FDC1DECA923545914234DB3E006569F057D50*simid_608027068104445245",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "B56FDC1DECA923545914234DB3E006569F057D50", "accentColor": "C99802"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=2435B7529C13244AD8D9F11DE247F609834F83AE&simid=608036426871080612",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "Sunsets on the Susquehanna
+ River | City of Harrisburg", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.5pjZMbiAqJgTq8Ee-cLKhQHaJ4&pid=Api",
+ "datePublished": "2018-07-06T18:20:00.0000000Z", "contentUrl": "http:\/\/s3.amazonaws.com\/harrisburgpa.gov\/wp-content\/uploads\/2017\/12\/27132408\/Sunsets-on-the-Susquehanna-8.jpg",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/harrisburgpa.gov\/sunsets-susquehanna-river\/",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "7258281 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "harrisburgpa.gov\/sunsets-susquehanna-river",
+ "width": 3024, "height": 4032, "thumbnail": {"width": 474, "height": 632},
+ "imageInsightsToken": "ccid_5pjZMbiA*mid_2435B7529C13244AD8D9F11DE247F609834F83AE*simid_608036426871080612",
+ "imageId": "2435B7529C13244AD8D9F11DE247F609834F83AE", "accentColor": "C07B0B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=0FADD014FBC959C9794A9B1E02B2EE082A5CBD45&simid=608050651809644931",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Winter sunset | News",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.in1eEQz0ztUaKB06iUDIHgHaFj&pid=Api",
+ "datePublished": "2018-07-06T18:56:00.0000000Z", "contentUrl": "http:\/\/news.fnal.gov\/wp-content\/uploads\/2017\/02\/2017-02-02_589343171d155_WinterSunsetBKristen.JPG",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/news.fnal.gov\/2017\/03\/winter-sunset\/",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "3621363 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "news.fnal.gov\/2017\/03\/winter-sunset", "width":
+ 3648, "height": 2736, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_in1eEQz0*mid_0FADD014FBC959C9794A9B1E02B2EE082A5CBD45*simid_608050651809644931",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "0FADD014FBC959C9794A9B1E02B2EE082A5CBD45", "accentColor": "CA8301"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=33A3804964EC8F5F4841887BA289AE200C43C639&simid=608048315350450481",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "APOD: 2011 December 29
+ - Conjunction at Sunset", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.unXn0g0dRUrV8jvR1peilgHaLK&pid=Api",
+ "datePublished": "2018-09-27T23:44:00.0000000Z", "contentUrl": "https:\/\/apod.nasa.gov\/apod\/image\/1112\/img_07981derosa.jpg",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "https:\/\/apod.nasa.gov\/apod\/ap111229.html",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "336786 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/apod.nasa.gov\/apod\/ap111229.html",
+ "width": 1500, "height": 2261, "thumbnail": {"width": 474, "height": 714},
+ "imageInsightsToken": "ccid_unXn0g0d*mid_33A3804964EC8F5F4841887BA289AE200C43C639*simid_608048315350450481",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "33A3804964EC8F5F4841887BA289AE200C43C639", "accentColor": "C0580B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=D5C12923EEDAB1F2E1ABA5FE9749F5DC5DA11135&simid=608015669328807992",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "Sunset is my favorite color
+ at Virginia State Parks", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.Ms9nJ4zWbWEVuGI2B6rdjAHaE8&pid=Api",
+ "datePublished": "2018-07-09T18:09:00.0000000Z", "contentUrl": "https:\/\/farm6.staticflickr.com\/5073\/14249578400_db8b8e8396_z.jpg",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "http:\/\/www.dcr.virginia.gov\/state-parks\/blog\/sunset-is-my-favorite-color-at-virginia-state-parks-5080",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "40891 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.dcr.virginia.gov\/state-parks\/blog\/sunset-is-my-favorite-color...",
+ "width": 500, "height": 334, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_Ms9nJ4zW*mid_D5C12923EEDAB1F2E1ABA5FE9749F5DC5DA11135*simid_608015669328807992",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "D5C12923EEDAB1F2E1ABA5FE9749F5DC5DA11135", "accentColor": "C79004"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=22004065F8F7094AFB0438E917264E1A1450D34F&simid=608031930039863986",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "First sunset of spring
+ | News", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.0neKSFm15_ki6akCPHiJoQHaFj&pid=Api",
+ "datePublished": "2018-05-21T08:09:00.0000000Z", "contentUrl": "http:\/\/news.fnal.gov\/wp-content\/uploads\/2017\/03\/lake-law-first-sunset.jpeg",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "http:\/\/news.fnal.gov\/2017\/04\/first-sunset-spring\/",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "173044 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "news.fnal.gov\/2017\/04\/first-sunset-spring",
+ "width": 1152, "height": 864, "thumbnail": {"width": 474, "height": 355},
+ "imageInsightsToken": "ccid_0neKSFm1*mid_22004065F8F7094AFB0438E917264E1A1450D34F*simid_608031930039863986",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "22004065F8F7094AFB0438E917264E1A1450D34F", "accentColor": "BE790D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=4AB2CBA3F5147AD8E8C59AC0AF7AC2C3F59926AD&simid=608009351419332041",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "Sunset from Eola | News",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.77kb4CHt8I6q7Yif_GPXrQHaE8&pid=Api",
+ "datePublished": "2018-07-20T07:05:00.0000000Z", "contentUrl": "http:\/\/news.fnal.gov\/wp-content\/uploads\/2016\/02\/eola-sunset.jpg",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "http:\/\/news.fnal.gov\/2016\/02\/sunset-from-eola\/",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "375714 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "news.fnal.gov\/2016\/02\/sunset-from-eola",
+ "width": 1224, "height": 816, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_77kb4CHt*mid_4AB2CBA3F5147AD8E8C59AC0AF7AC2C3F59926AD*simid_608009351419332041",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "4AB2CBA3F5147AD8E8C59AC0AF7AC2C3F59926AD", "accentColor": "C7A204"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=1CD874581CE673B1C6A8DCACBB4DDAC2E59E0E55&simid=608029911376465408",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Climate Change: Climate
+ Resource Center - Vivid sunset", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.piHtEgZoIOz1lwBHubyGPQHaLH&pid=Api",
+ "datePublished": "2018-05-13T04:58:00.0000000Z", "contentUrl": "https:\/\/climate.nasa.gov\/system\/resources\/detail_files\/87_Vivid-sunset-1000x1500.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "https:\/\/climate.nasa.gov\/climate_resources\/87\/",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "390952 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/climate.nasa.gov\/climate_resources\/87",
+ "width": 1000, "height": 1500, "thumbnail": {"width": 474, "height": 711},
+ "imageInsightsToken": "ccid_piHtEgZo*mid_1CD874581CE673B1C6A8DCACBB4DDAC2E59E0E55*simid_608029911376465408",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "1CD874581CE673B1C6A8DCACBB4DDAC2E59E0E55", "accentColor": "CBBA00"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=99ADBDAB2668748C3BD1BD7980CE73EFFAFC6789&simid=607990140001584649",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "13 Remarkable Trees to
+ See on Public Lands | U.S. Department of the Interior", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.pEwlGqZDs96HMG6Oe-1NHgHaE8&pid=Api",
+ "datePublished": "2018-09-04T22:02:00.0000000Z", "contentUrl": "https:\/\/www.doi.gov\/sites\/doi.gov\/files\/uploads\/evergladesnpjamespion.jpg",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/www.doi.gov\/blog\/13-remarkable-trees-see-public-lands",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "386987 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.doi.gov\/blog\/13-remarkable-trees-see-public-lands",
+ "width": 900, "height": 600, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_pEwlGqZD*mid_99ADBDAB2668748C3BD1BD7980CE73EFFAFC6789*simid_607990140001584649",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "99ADBDAB2668748C3BD1BD7980CE73EFFAFC6789", "accentColor": "AF421C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=2435B7529C13244AD8D9EE272DE0A6507A609047&simid=607990427776975526",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "Sunsets on the Susquehanna
+ River | City of Harrisburg", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.CSxfRKGMIapw349Ri6anEAHaJ4&pid=Api",
+ "datePublished": "2018-07-06T18:20:00.0000000Z", "contentUrl": "http:\/\/s3.amazonaws.com\/harrisburgpa.gov\/wp-content\/uploads\/2017\/12\/27132301\/Sunsets-on-the-Susquehanna-3.jpg",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "http:\/\/harrisburgpa.gov\/sunsets-susquehanna-river\/",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "5053301 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "harrisburgpa.gov\/sunsets-susquehanna-river",
+ "width": 3024, "height": 4032, "thumbnail": {"width": 474, "height": 632},
+ "imageInsightsToken": "ccid_CSxfRKGM*mid_2435B7529C13244AD8D9EE272DE0A6507A609047*simid_607990427776975526",
+ "imageId": "2435B7529C13244AD8D9EE272DE0A6507A609047", "accentColor": "9E752D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=57310D97350AD8D2278D8391E645074EF3B8734F&simid=608042658882716748",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "APOD: 2010 December 4 -
+ Sunset at the Spiral Jetty", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.mZvkfPJEhqzahMlFmY_xygHaJQ&pid=Api",
+ "datePublished": "2018-07-16T09:47:00.0000000Z", "contentUrl": "http:\/\/apod.nasa.gov\/apod\/image\/1012\/SpiralRays_erisoty.jpg",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "http:\/\/apod.nasa.gov\/apod\/ap101204.html",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "74169 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "apod.nasa.gov\/apod\/ap101204.html", "width":
+ 576, "height": 720, "thumbnail": {"width": 474, "height": 592}, "imageInsightsToken":
+ "ccid_mZvkfPJE*mid_57310D97350AD8D2278D8391E645074EF3B8734F*simid_608042658882716748",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "57310D97350AD8D2278D8391E645074EF3B8734F", "accentColor": "C66505"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=38F14C873F84C244E55DDE2A3A205046307E9332&simid=607986901616560147",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "Great Lakes National Program
+ Office- Image Collection", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.c3Ih0HAQaHzbb0vRVPc4KgHaE3&pid=Api",
+ "datePublished": "2018-11-01T22:26:00.0000000Z", "contentUrl": "https:\/\/archive.epa.gov\/greatlakes\/image\/web\/jpg\/475-2.jpg",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "https:\/\/archive.epa.gov\/greatlakes\/image\/web\/html\/viz_sce2.html",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "918621 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/archive.epa.gov\/greatlakes\/image\/web\/html\/viz_sce2.html",
+ "width": 2940, "height": 1930, "thumbnail": {"width": 474, "height": 311},
+ "imageInsightsToken": "ccid_c3Ih0HAQ*mid_38F14C873F84C244E55DDE2A3A205046307E9332*simid_607986901616560147",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "38F14C873F84C244E55DDE2A3A205046307E9332", "accentColor": "CCCC00"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=C3ADCCBDF9A50C6A6A444A85C88260F39B6ADA4C&simid=608032265046065668",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "Inside Region 3 | U.S.
+ Fish and Wildlife Service Midwest Region", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.MCATwbFyRZ38jPk40FPa-QHaCv&pid=Api",
+ "datePublished": "2018-06-03T00:51:00.0000000Z", "contentUrl": "https:\/\/www.fws.gov\/midwest\/InsideR3\/images\/Coteau-sunset-1AprilIssue.jpg",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "https:\/\/www.fws.gov\/midwest\/insider3\/April14Story5.htm",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "51043 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.fws.gov\/midwest\/insider3\/April14Story5.htm",
+ "width": 710, "height": 263, "thumbnail": {"width": 474, "height": 175}, "imageInsightsToken":
+ "ccid_MCATwbFy*mid_C3ADCCBDF9A50C6A6A444A85C88260F39B6ADA4C*simid_608032265046065668",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "C3ADCCBDF9A50C6A6A444A85C88260F39B6ADA4C", "accentColor": "BD990E"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=sunset+(site%3agov+OR+site%3amil)&id=277655840D3AC27EBE6989EFF48DF47B4C669F5E&simid=607987520094274774",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "Turning 100: Major Milestones
+ in the National Park Service | U.S. Department of the Interior", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.NSkPg0QqtmY1k1m-Wr5UpQHaE6&pid=Api",
+ "datePublished": "2016-08-22T13:16:00.0000000Z", "contentUrl": "https:\/\/www.doi.gov\/sites\/doi.gov\/files\/uploads\/gettysburg_nmp_nps_doug_shearer_ste_small.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/www.doi.gov\/blog\/turning-100-major-milestones-national-park-service",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "798729 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.doi.gov\/blog\/turning-100-major-milestones-national-park...",
+ "width": 1000, "height": 663, "thumbnail": {"width": 474, "height": 314},
+ "imageInsightsToken": "ccid_NSkPg0Qq*mid_277655840D3AC27EBE6989EFF48DF47B4C669F5E*simid_607987520094274774",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "277655840D3AC27EBE6989EFF48DF47B4C669F5E", "accentColor": "CB8600"}],
+ "queryExpansions": [{"text": "Beautiful Sunset", "displayText": "Beautiful",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Beautiful+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Beautiful%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Beautiful+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Beautiful%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Beautiful+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Amazing Sunsets", "displayText": "Amazing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Amazing+Sunsets&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Amazing+Sunsets&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Amazing+Sunsets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Gorgeous Sunsets", "displayText": "Gorgeous", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Gorgeous+Sunsets&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gorgeous%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Gorgeous+Sunsets&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gorgeous%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Gorgeous+Sunsets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Hawaii Sunset", "displayText": "Hawaii", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Hawaii+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Hawaii%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Hawaii+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Hawaii%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Hawaii+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Arizona Sunset", "displayText": "Arizona", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Arizona+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Arizona%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Arizona+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Arizona%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Arizona+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "California Sunset", "displayText": "California", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=California+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22California%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=California+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22California%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=California+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Island Sunset", "displayText": "Island", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Island+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Island%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Island+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Island%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Island+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ocean Sunset", "displayText": "Ocean", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ocean+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ocean%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Ocean+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ocean%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Ocean+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Tropical Sunset", "displayText": "Tropical", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Tropical+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tropical%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Tropical+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tropical%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Tropical+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Purple Sunset", "displayText": "Purple", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Purple+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Purple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Purple+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Purple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Purple+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Red Sunset", "displayText": "Red", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Red+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Red+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Red+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pink Sunset", "displayText": "Pink", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pink+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Pink+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Pink+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Summer Sunsets", "displayText": "Summer", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Summer+Sunsets&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Summer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Summer+Sunsets&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Summer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Summer+Sunsets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Autumn Sunset", "displayText": "Autumn", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Autumn+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Autumn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Autumn+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Autumn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Autumn+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Winter Sunset", "displayText": "Winter", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Winter+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Winter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Winter+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Winter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Winter+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "African Sunset", "displayText": "African", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=African+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22African%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=African+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22African%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=African+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Texas Sunset", "displayText": "Texas", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Texas+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Texas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Texas+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Texas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Texas+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Florida Sunset", "displayText": "Florida", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Florida+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Florida%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Florida+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Florida%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Florida+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Desert Sunset", "displayText": "Desert", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Desert+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Desert%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Desert+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Desert%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Desert+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mountain Sunset", "displayText": "Mountain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mountain+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Mountain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Mountain+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Mountain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mountain+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jungle Sunset", "displayText": "Jungle", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Jungle+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jungle%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Jungle+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jungle%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Jungle+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Sky", "displayText": "Sky", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Sky&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sky%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Sky&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sky%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Sunset+Sky&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Clouds", "displayText": "Clouds", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Clouds&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Clouds%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Clouds&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Clouds%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Sunset+Clouds&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunrise Sunset", "displayText": "Sunrise", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunrise+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sunrise%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunrise+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sunrise%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sunrise+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pastel Sunset", "displayText": "Pastel", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pastel+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pastel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Pastel+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pastel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Pastel+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Rainbow Sunset", "displayText": "Rainbow", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Rainbow+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rainbow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Rainbow+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rainbow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Rainbow+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Colorful Sunset", "displayText": "Colorful", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Colorful+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Colorful%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Colorful+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Colorful%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Colorful+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Orange Sunset", "displayText": "Orange", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Orange+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Orange%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Orange+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Orange%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Orange+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Blue Sunset", "displayText": "Blue", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Blue+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Blue%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Blue+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Blue%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Blue+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Green Sunset", "displayText": "Green", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Green+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Green%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Green+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Green%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Green+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Tree", "displayText": "Tree", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Tree&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tree%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Tree&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tree%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Sunset+Tree&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Deer", "displayText": "Deer", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Deer&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Deer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Deer&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Deer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Sunset+Deer&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Forest Sunset", "displayText": "Forest", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Forest+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Forest%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Forest+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Forest%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Forest+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Shimmer", "displayText": "Shimmer", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Shimmer&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shimmer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Shimmer&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shimmer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sunset+Shimmer&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Ombre", "displayText": "Ombre", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Ombre&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ombre%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Ombre&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ombre%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sunset+Ombre&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Silhouette", "displayText": "Silhouette", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Sunset+Silhouette&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Silhouette%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Silhouette&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Silhouette%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Sunset+Silhouette&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Paintings", "displayText": "Paintings", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Paintings&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paintings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Paintings&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paintings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sunset+Paintings&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Landscapes", "displayText": "Landscapes", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Sunset+Landscapes&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscapes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sunset+Landscapes&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscapes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Sunset+Landscapes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Watercolor Sunset", "displayText": "Watercolor", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Watercolor+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Watercolor%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Watercolor+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Watercolor%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Watercolor+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "River Sunset", "displayText": "River", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=River+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22River%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=River+Sunset&tq=%7b%22pq%22%3a%22sunset+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22sunset%22%2c%22pv%22%3a%22sunset%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22River%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=River+Sunset&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "sunset", "suggestions": []}, {"pivot": "(site:gov",
+ "suggestions": []}, {"pivot": "OR", "suggestions": []}, {"pivot": "site:mil)",
+ "suggestions": []}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:01 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Affiliate_search_on_affiliate_with_connections.yml b/features/vcr_cassettes/Legacy_Search/Affiliate_search_on_affiliate_with_connections.yml
index c9fb55fce2..06cf6f694a 100644
--- a/features/vcr_cassettes/Legacy_Search/Affiliate_search_on_affiliate_with_connections.yml
+++ b/features/vcr_cassettes/Legacy_Search/Affiliate_search_on_affiliate_with_connections.yml
@@ -432,4 +432,458 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:06 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3914'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:49 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=34D07FC567DA69F60A0C7369660D6865; path=/; expires=Sat, 14-Dec-2019 22:40:49
+ GMT; domain=bingapis.com
+ - MUIDB=34D07FC567DA69F60A0C7369660D6865; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:49 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=9FB46742FAFE42EB87C34197F14C509E&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:49 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:49
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=293BB14A44B36BE91EBBBDE645646A1B; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:49 GMT; domain=bingapis.com
+ - _SS=SID=293BB14A44B36BE91EBBBDE645646A1B; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - D87C0582D326458D9DE521DF09C1A6B3
+ X-Msedge-Clientid:
+ - 34D07FC567DA69F60A0C7369660D6865
+ X-Msapi-Userstate:
+ - '0613'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: D87C0582D326458D9DE521DF09C1A6B3 Ref B: CO1EDGE0216 Ref C: 2018-11-19T22:40:49Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=381639F3882243E58690C981DDAB28B9&CID=34D07FC567DA69F60A0C7369660D6865&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=381639F3882243E58690C981DDAB28B9&CID=34D07FC567DA69F60A0C7369660D6865&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5410.1", "totalEstimatedMatches": 31200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Virginia Jobs", "url": "http:\/\/jobs.virginia.gov\/", "urlPingSuffix":
+ "DevEx,5059.1", "about": [{"name": "Virginia"}], "displayUrl": "jobs.virginia.gov",
+ "snippet": "The Commonwealth of Virginia is an Equal Opportunity Employer
+ It is the policy of the Commonwealth of Virginia to prohibit discrimination
+ on the basis of race, sex, color, national origin, religion, sexual orientation,
+ gender identity, age, veteran status, political affiliation, genetics, or
+ disability in the recruitment, selection, and hiring ...", "dateLastCrawled":
+ "2018-11-14T21:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Jobs | Topics - Fairfax County Homepage | Fairfax County",
+ "url": "https:\/\/www.fairfaxcounty.gov\/topics\/jobs", "urlPingSuffix": "DevEx,5072.1",
+ "about": [{"name": "Fairfax County"}], "displayUrl": "https:\/\/www.fairfaxcounty.gov\/topics\/jobs",
+ "snippet": "Fairfax County, Virginia - Look and apply for a job with Fairfax
+ Count Government. Serve your community as a public servant in many ways.",
+ "dateLastCrawled": "2018-11-12T04:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "USAJOBS - The Federal Government''s Official Jobs Site", "url":
+ "https:\/\/www.usajobs.gov\/", "urlPingSuffix": "DevEx,5085.1", "about": [{"name":
+ "USAJOBS"}, {"name": "USAJOBS"}], "displayUrl": "https:\/\/www.usajobs.gov",
+ "snippet": "USAJOBS is the Federal Government''s official one-stop source
+ for Federal jobs and employment information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "jobs.utah.gov
+ - Department of Workforce Services", "url": "https:\/\/jobs.utah.gov\/", "urlPingSuffix":
+ "DevEx,5097.1", "displayUrl": "https:\/\/jobs.utah.gov", "snippet": "The
+ Department of Workforce Services strengthens Utah''s communities by supporting
+ the economic stability and quality of our workforce.", "dateLastCrawled":
+ "2018-11-16T02:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Jobs Home | City of New York", "url": "https:\/\/www1.nyc.gov\/jobs\/index.page",
+ "urlPingSuffix": "DevEx,5109.1", "about": [{"name": "New York"}], "displayUrl":
+ "https:\/\/www1.nyc.gov\/jobs\/index.page", "snippet": "Jobs ; Jobs
+ Home Get Started Explore Careers. Find a job in New York City government:
+ Search Search. Login or Create an Account. City Employee Login. Make a difference.
+ City government is filled with opportunities for talented people who want
+ to improve their communities and make an important difference in the lives
+ of their fellow New Yorkers.", "dateLastCrawled": "2018-11-16T08:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "NC.gov:
+ Jobs", "url": "https:\/\/www.nc.gov\/jobs", "urlPingSuffix": "DevEx,5123.1",
+ "about": [{"name": "North Carolina"}], "displayUrl": "https:\/\/www.nc.gov\/jobs",
+ "snippet": "Careers within the State of North Carolina include public safety,
+ education, transportation, and health care. State employees located in each
+ one of the 100 counties in North Carolina. We also have listings for jobs
+ in the local school system, and jobs in the private sector that are in our
+ Employment Security database.", "dateLastCrawled": "2018-11-15T22:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "NJDEP-Employment
+ Opportunities", "url": "https:\/\/www.nj.gov\/dep\/jobs\/", "urlPingSuffix":
+ "DevEx,5135.1", "about": [{"name": "New Jersey Department of Environmental
+ Protection"}], "displayUrl": "https:\/\/www.nj.gov\/dep\/jobs", "snippet":
+ "Government Jobs can also be found on the Civil Service Commission Home
+ Page. New Jersey Residency Requirements All employees of State and local government
+ must reside in the State of New Jersey, unless exempted under the law.", "dateLastCrawled":
+ "2018-11-13T21:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "2020 Census Jobs", "url": "https:\/\/2020census.gov\/jobs", "urlPingSuffix":
+ "DevEx,5148.1", "displayUrl": "https:\/\/2020census.gov\/jobs", "snippet":
+ "We are hiring for a variety of temporary jobs, including census takers,
+ recruiting assistants, office staff, and supervisory staff. To be eligible,
+ you must be at least 18 years old, have a valid Social Security number, and
+ be a U.S. citizen.", "dateLastCrawled": "2018-11-09T15:00:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Jobs - Federal
+ Aviation Administration", "url": "https:\/\/www.faa.gov\/jobs\/", "urlPingSuffix":
+ "DevEx,5161.1", "about": [{"name": "Federal Aviation Administration"}], "displayUrl":
+ "https:\/\/www.faa.gov\/jobs", "snippet": "Take control of your career.
+ The FAA has many opportunities for you to contribute to our safe and efficient
+ skies. Below is a sample of possible career fields:", "dateLastCrawled": "2018-11-16T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "myCase
+ - Home", "url": "https:\/\/jobs.utah.gov\/mycase\/", "urlPingSuffix": "DevEx,5175.1",
+ "displayUrl": "https:\/\/jobs.utah.gov\/mycase", "snippet": "jobs main
+ content Starting November 1, 2018 through December 15, 2018 ... Do I log into
+ myCase with the same ID\/password information that I use when I log in for
+ Unemployment or to search for employment? Yes. Use your UtahID information
+ to login. Will myCase share information with Google, Yahoo, Facebook or
+ any other sites?", "dateLastCrawled": "2018-11-12T16:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Job Search
+ Results", "url": "https:\/\/jobs.ca.gov\/CalHRPublic\/Search\/JobSearchResults.aspx",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/jobs.ca.gov\/CalHRPublic\/Search\/JobSearchResults.aspx",
+ "snippet": "System Updates - CalCareers: CalCareers will be offline for maintenance
+ on Tuesday, November 13th, 2018 between 4:30PM - 9:30PM. The Office Technician
+ exam will be offline from 3:30PM - 9:30PM. Thank you for your cooperation.",
+ "dateLastCrawled": "2018-11-15T12:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "CalCareers", "url": "https:\/\/jobs.ca.gov\/", "urlPingSuffix": "DevEx,5202.1",
+ "about": [{"name": "JobsMoGov"}], "displayUrl": "https:\/\/jobs.ca.gov",
+ "snippet": "The State of California offers a wide variety of careers and
+ jobs, ranging from accounting to zoology. The services our employees provide
+ are truly essential to the people of California. In public service, you
+ will spend every day doing work that is vital to your state and your community.",
+ "dateLastCrawled": "2018-11-16T07:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Careers.ohio.gov", "url": "http:\/\/careers.ohio.gov\/", "urlPingSuffix":
+ "DevEx,5215.1", "about": [{"name": "Ohio"}], "displayUrl": "careers.ohio.gov",
+ "snippet": "The State of Ohio transitioned to a new applicant tracking system
+ to post jobs and receive applications. Job seekers will continue to have
+ access to view their existing profile\/account at governmentjobs.com. This
+ includes application status information and any correspondences sent concerning
+ applications submitted prior to April 6, 2018.", "dateLastCrawled": "2018-11-15T04:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Careers
+ | US EPA", "url": "https:\/\/www.epa.gov\/careers", "urlPingSuffix": "DevEx,5226.1",
+ "displayUrl": "https:\/\/www.epa.gov\/careers", "snippet": "Find out more
+ information on the special hiring authority for Individuals with disabilities,
+ Schedule A, as well as all EPA jobs currently open. Attorneys at EPA work
+ on cutting-edge legal issues. Learn more about our legal offices and law career
+ opportunities , and about opportunities for law school grads .", "dateLastCrawled":
+ "2018-11-05T14:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5242.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Jobs | Communications & Public Information | City of ...", "url":
+ "https:\/\/www.alexandriava.gov\/Jobs", "urlPingSuffix": "DevEx,5256.1", "about":
+ [{"name": "Alexandria"}], "displayUrl": "https:\/\/www.alexandriava.gov\/Jobs",
+ "snippet": "Jobs Alexandria offers wide range of job opportunities and services.
+ Work for City government or City Public Schools, find out about an internship
+ opportunity or learn about workforce development and career training options.",
+ "dateLastCrawled": "2018-11-12T15:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "FBIJOBS", "url": "https:\/\/www.fbijobs.gov\/", "urlPingSuffix":
+ "DevEx,5270.1", "about": [{"name": "Federal Bureau of Investigation"}, {"name":
+ "Federal Bureau of Investigation"}], "displayUrl": "https:\/\/www.fbijobs.gov",
+ "snippet": "FBIJOBS.GOV is an official site of the U.S. Government, U.S.
+ Department of Justice FBI is a partner with the U.S. Intelligence Community
+ Federal Bureau of Investigation.", "dateLastCrawled": "2018-11-16T13:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Jobs
+ & Careers at TPWD - Texas Parks & Wildlife Department", "url": "https:\/\/tpwd.texas.gov\/jobs\/",
+ "urlPingSuffix": "DevEx,5284.1", "about": [{"name": "Texas Parks and Wildlife
+ Department"}], "displayUrl": "https:\/\/tpwd.texas.gov\/jobs", "snippet":
+ "Veteran Hiring at TPWD. Texas state law requires agencies to give veterans,
+ surviving spouses of veterans, and orphans of veterans preference in the selection
+ process when candidates are similarly qualified.", "dateLastCrawled": "2018-11-11T09:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Jobs
+ Express: Job Openings in New York State - New York ...", "url": "https:\/\/labor.ny.gov\/jobs\/regional.shtm",
+ "urlPingSuffix": "DevEx,5300.1", "displayUrl": "https:\/\/labor.ny.gov\/jobs\/regional.shtm",
+ "snippet": "Jobs Express: Job Openings in New York State. Below are current
+ job openings in New York''s 10 regional economies. New Yorkers can view the
+ region they live in, see which industries are growing and find out what jobs
+ are available in that economic sector.", "dateLastCrawled": "2018-11-16T09:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "USAJobs",
+ "url": "https:\/\/login.usajobs.gov\/", "urlPingSuffix": "DevEx,5312.1", "about":
+ [{"name": "USAJOBS"}], "displayUrl": "https:\/\/login.usajobs.gov", "snippet":
+ "USAJobs", "dateLastCrawled": "2018-11-15T18:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:49 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3913'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:49 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=32955B3BA51F664504155797A4C86756; path=/; expires=Sat, 14-Dec-2019 22:40:50
+ GMT; domain=bingapis.com
+ - MUIDB=32955B3BA51F664504155797A4C86756; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:49 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F83531BAFFD849C1A649E05BAAF1C4F2&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:49 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:49
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=043D8660DF4268F926AA8ACCDE95690A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:50 GMT; domain=bingapis.com
+ - _SS=SID=043D8660DF4268F926AA8ACCDE95690A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 0A3C81DF314A46A2A28096D01457C3E4
+ X-Msedge-Clientid:
+ - 32955B3BA51F664504155797A4C86756
+ X-Msapi-Userstate:
+ - 70a9
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 0A3C81DF314A46A2A28096D01457C3E4 Ref B: CO1EDGE0917 Ref C: 2018-11-19T22:40:50Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D817EAC154884085819E6A0A1062F8DF&CID=32955B3BA51F664504155797A4C86756&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D817EAC154884085819E6A0A1062F8DF&CID=32955B3BA51F664504155797A4C86756&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5410.1", "totalEstimatedMatches": 31200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Virginia Jobs", "url": "http:\/\/jobs.virginia.gov\/", "urlPingSuffix":
+ "DevEx,5059.1", "about": [{"name": "Virginia"}], "displayUrl": "jobs.virginia.gov",
+ "snippet": "The Commonwealth of Virginia is an Equal Opportunity Employer
+ It is the policy of the Commonwealth of Virginia to prohibit discrimination
+ on the basis of race, sex, color, national origin, religion, sexual orientation,
+ gender identity, age, veteran status, political affiliation, genetics, or
+ disability in the recruitment, selection, and hiring ...", "dateLastCrawled":
+ "2018-11-14T21:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Jobs | Topics - Fairfax County Homepage | Fairfax County",
+ "url": "https:\/\/www.fairfaxcounty.gov\/topics\/jobs", "urlPingSuffix": "DevEx,5072.1",
+ "about": [{"name": "Fairfax County"}], "displayUrl": "https:\/\/www.fairfaxcounty.gov\/topics\/jobs",
+ "snippet": "Fairfax County, Virginia - Look and apply for a job with Fairfax
+ Count Government. Serve your community as a public servant in many ways.",
+ "dateLastCrawled": "2018-11-12T04:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "USAJOBS - The Federal Government''s Official Jobs Site", "url":
+ "https:\/\/www.usajobs.gov\/", "urlPingSuffix": "DevEx,5085.1", "about": [{"name":
+ "USAJOBS"}, {"name": "USAJOBS"}], "displayUrl": "https:\/\/www.usajobs.gov",
+ "snippet": "USAJOBS is the Federal Government''s official one-stop source
+ for Federal jobs and employment information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "jobs.utah.gov
+ - Department of Workforce Services", "url": "https:\/\/jobs.utah.gov\/", "urlPingSuffix":
+ "DevEx,5097.1", "displayUrl": "https:\/\/jobs.utah.gov", "snippet": "The
+ Department of Workforce Services strengthens Utah''s communities by supporting
+ the economic stability and quality of our workforce.", "dateLastCrawled":
+ "2018-11-16T02:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Jobs Home | City of New York", "url": "https:\/\/www1.nyc.gov\/jobs\/index.page",
+ "urlPingSuffix": "DevEx,5109.1", "about": [{"name": "New York"}], "displayUrl":
+ "https:\/\/www1.nyc.gov\/jobs\/index.page", "snippet": "Jobs ; Jobs
+ Home Get Started Explore Careers. Find a job in New York City government:
+ Search Search. Login or Create an Account. City Employee Login. Make a difference.
+ City government is filled with opportunities for talented people who want
+ to improve their communities and make an important difference in the lives
+ of their fellow New Yorkers.", "dateLastCrawled": "2018-11-16T08:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "NC.gov:
+ Jobs", "url": "https:\/\/www.nc.gov\/jobs", "urlPingSuffix": "DevEx,5123.1",
+ "about": [{"name": "North Carolina"}], "displayUrl": "https:\/\/www.nc.gov\/jobs",
+ "snippet": "Careers within the State of North Carolina include public safety,
+ education, transportation, and health care. State employees located in each
+ one of the 100 counties in North Carolina. We also have listings for jobs
+ in the local school system, and jobs in the private sector that are in our
+ Employment Security database.", "dateLastCrawled": "2018-11-15T22:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "NJDEP-Employment
+ Opportunities", "url": "https:\/\/www.nj.gov\/dep\/jobs\/", "urlPingSuffix":
+ "DevEx,5135.1", "about": [{"name": "New Jersey Department of Environmental
+ Protection"}], "displayUrl": "https:\/\/www.nj.gov\/dep\/jobs", "snippet":
+ "Government Jobs can also be found on the Civil Service Commission Home
+ Page. New Jersey Residency Requirements All employees of State and local government
+ must reside in the State of New Jersey, unless exempted under the law.", "dateLastCrawled":
+ "2018-11-13T21:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "2020 Census Jobs", "url": "https:\/\/2020census.gov\/jobs", "urlPingSuffix":
+ "DevEx,5148.1", "displayUrl": "https:\/\/2020census.gov\/jobs", "snippet":
+ "We are hiring for a variety of temporary jobs, including census takers,
+ recruiting assistants, office staff, and supervisory staff. To be eligible,
+ you must be at least 18 years old, have a valid Social Security number, and
+ be a U.S. citizen.", "dateLastCrawled": "2018-11-09T15:00:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Jobs - Federal
+ Aviation Administration", "url": "https:\/\/www.faa.gov\/jobs\/", "urlPingSuffix":
+ "DevEx,5161.1", "about": [{"name": "Federal Aviation Administration"}], "displayUrl":
+ "https:\/\/www.faa.gov\/jobs", "snippet": "Take control of your career.
+ The FAA has many opportunities for you to contribute to our safe and efficient
+ skies. Below is a sample of possible career fields:", "dateLastCrawled": "2018-11-16T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "myCase
+ - Home", "url": "https:\/\/jobs.utah.gov\/mycase\/", "urlPingSuffix": "DevEx,5175.1",
+ "displayUrl": "https:\/\/jobs.utah.gov\/mycase", "snippet": "jobs main
+ content Starting November 1, 2018 through December 15, 2018 ... Do I log into
+ myCase with the same ID\/password information that I use when I log in for
+ Unemployment or to search for employment? Yes. Use your UtahID information
+ to login. Will myCase share information with Google, Yahoo, Facebook or
+ any other sites?", "dateLastCrawled": "2018-11-12T16:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Job Search
+ Results", "url": "https:\/\/jobs.ca.gov\/CalHRPublic\/Search\/JobSearchResults.aspx",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/jobs.ca.gov\/CalHRPublic\/Search\/JobSearchResults.aspx",
+ "snippet": "System Updates - CalCareers: CalCareers will be offline for maintenance
+ on Tuesday, November 13th, 2018 between 4:30PM - 9:30PM. The Office Technician
+ exam will be offline from 3:30PM - 9:30PM. Thank you for your cooperation.",
+ "dateLastCrawled": "2018-11-15T12:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "CalCareers", "url": "https:\/\/jobs.ca.gov\/", "urlPingSuffix": "DevEx,5202.1",
+ "about": [{"name": "JobsMoGov"}], "displayUrl": "https:\/\/jobs.ca.gov",
+ "snippet": "The State of California offers a wide variety of careers and
+ jobs, ranging from accounting to zoology. The services our employees provide
+ are truly essential to the people of California. In public service, you
+ will spend every day doing work that is vital to your state and your community.",
+ "dateLastCrawled": "2018-11-16T07:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Careers.ohio.gov", "url": "http:\/\/careers.ohio.gov\/", "urlPingSuffix":
+ "DevEx,5215.1", "about": [{"name": "Ohio"}], "displayUrl": "careers.ohio.gov",
+ "snippet": "The State of Ohio transitioned to a new applicant tracking system
+ to post jobs and receive applications. Job seekers will continue to have
+ access to view their existing profile\/account at governmentjobs.com. This
+ includes application status information and any correspondences sent concerning
+ applications submitted prior to April 6, 2018.", "dateLastCrawled": "2018-11-15T04:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Careers
+ | US EPA", "url": "https:\/\/www.epa.gov\/careers", "urlPingSuffix": "DevEx,5226.1",
+ "displayUrl": "https:\/\/www.epa.gov\/careers", "snippet": "Find out more
+ information on the special hiring authority for Individuals with disabilities,
+ Schedule A, as well as all EPA jobs currently open. Attorneys at EPA work
+ on cutting-edge legal issues. Learn more about our legal offices and law career
+ opportunities , and about opportunities for law school grads .", "dateLastCrawled":
+ "2018-11-05T14:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5242.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Jobs | Communications & Public Information | City of ...", "url":
+ "https:\/\/www.alexandriava.gov\/Jobs", "urlPingSuffix": "DevEx,5256.1", "about":
+ [{"name": "Alexandria"}], "displayUrl": "https:\/\/www.alexandriava.gov\/Jobs",
+ "snippet": "Jobs Alexandria offers wide range of job opportunities and services.
+ Work for City government or City Public Schools, find out about an internship
+ opportunity or learn about workforce development and career training options.",
+ "dateLastCrawled": "2018-11-12T15:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "FBIJOBS", "url": "https:\/\/www.fbijobs.gov\/", "urlPingSuffix":
+ "DevEx,5270.1", "about": [{"name": "Federal Bureau of Investigation"}, {"name":
+ "Federal Bureau of Investigation"}], "displayUrl": "https:\/\/www.fbijobs.gov",
+ "snippet": "FBIJOBS.GOV is an official site of the U.S. Government, U.S.
+ Department of Justice FBI is a partner with the U.S. Intelligence Community
+ Federal Bureau of Investigation.", "dateLastCrawled": "2018-11-16T13:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Jobs
+ & Careers at TPWD - Texas Parks & Wildlife Department", "url": "https:\/\/tpwd.texas.gov\/jobs\/",
+ "urlPingSuffix": "DevEx,5284.1", "about": [{"name": "Texas Parks and Wildlife
+ Department"}], "displayUrl": "https:\/\/tpwd.texas.gov\/jobs", "snippet":
+ "Veteran Hiring at TPWD. Texas state law requires agencies to give veterans,
+ surviving spouses of veterans, and orphans of veterans preference in the selection
+ process when candidates are similarly qualified.", "dateLastCrawled": "2018-11-11T09:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Jobs
+ Express: Job Openings in New York State - New York ...", "url": "https:\/\/labor.ny.gov\/jobs\/regional.shtm",
+ "urlPingSuffix": "DevEx,5300.1", "displayUrl": "https:\/\/labor.ny.gov\/jobs\/regional.shtm",
+ "snippet": "Jobs Express: Job Openings in New York State. Below are current
+ job openings in New York''s 10 regional economies. New Yorkers can view the
+ region they live in, see which industries are growing and find out what jobs
+ are available in that economic sector.", "dateLastCrawled": "2018-11-16T09:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "USAJobs",
+ "url": "https:\/\/login.usajobs.gov\/", "urlPingSuffix": "DevEx,5312.1", "about":
+ [{"name": "USAJOBS"}], "displayUrl": "https:\/\/login.usajobs.gov", "snippet":
+ "USAJobs", "dateLastCrawled": "2018-11-15T18:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:50 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/No_results_when_searching_on_Spanish_site_with_active_RSS_feeds.yml b/features/vcr_cassettes/Legacy_Search/No_results_when_searching_on_Spanish_site_with_active_RSS_feeds.yml
index e5d933d9a1..77d9c745ec 100644
--- a/features/vcr_cassettes/Legacy_Search/No_results_when_searching_on_Spanish_site_with_active_RSS_feeds.yml
+++ b/features/vcr_cassettes/Legacy_Search/No_results_when_searching_on_Spanish_site_with_active_RSS_feeds.yml
@@ -824,4 +824,940 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:18 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4768'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:02 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=17ED9C49869562683A4F90E587426346; path=/; expires=Sat, 14-Dec-2019 22:40:02
+ GMT; domain=bingapis.com
+ - MUIDB=17ED9C49869562683A4F90E587426346; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:02 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:02 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=8FC1209E859D4D268B03BD430B9D66B6&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:02 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:02
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2CAAF223DDDA6A670A73FE8FDC0D6B64; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:02 GMT; domain=bingapis.com
+ - _SS=SID=2CAAF223DDDA6A670A73FE8FDC0D6B64; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - '08E1D01410504951ABD9F2EFF590AE67'
+ X-Msedge-Clientid:
+ - 17ED9C49869562683A4F90E587426346
+ X-Msapi-Userstate:
+ - c76f
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 08E1D01410504951ABD9F2EFF590AE67 Ref B: CO1EDGE0220 Ref C: 2018-11-19T22:40:02Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:01 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=66A6BF124A7643D8B88135EFB63D3045&CID=17ED9C49869562683A4F90E587426346&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=66A6BF124A7643D8B88135EFB63D3045&CID=17ED9C49869562683A4F90E587426346&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:02 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4770'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:03 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2F16975CD0FE647E0D579BF0D12965A2; path=/; expires=Sat, 14-Dec-2019 22:40:03
+ GMT; domain=bingapis.com
+ - MUIDB=2F16975CD0FE647E0D579BF0D12965A2; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:03 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:03 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=353196311D6B4CA6BDBA0EA7F07E708A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:03 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:03
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2858C9BB91A964993CCBC517907E65EA; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:03 GMT; domain=bingapis.com
+ - _SS=SID=2858C9BB91A964993CCBC517907E65EA; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 1509D8B9598941B984A99C22DF9BEC87
+ X-Msedge-Clientid:
+ - 2F16975CD0FE647E0D579BF0D12965A2
+ X-Msapi-Userstate:
+ - 506d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 1509D8B9598941B984A99C22DF9BEC87 Ref B: CO1EDGE0112 Ref C: 2018-11-19T22:40:03Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:03 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A9202687204D422AA3573FEA0EA14F84&CID=2F16975CD0FE647E0D579BF0D12965A2&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A9202687204D422AA3573FEA0EA14F84&CID=2F16975CD0FE647E0D579BF0D12965A2&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:03 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4803'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:04 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=16531DBBF6076C6D27071117F7D06D40; path=/; expires=Sat, 14-Dec-2019 22:40:04
+ GMT; domain=bingapis.com
+ - MUIDB=16531DBBF6076C6D27071117F7D06D40; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:04 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:04 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=6B0224A441BD49A29384ABB89DA21DA0&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:04 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:04
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2640BFA7BBE96C5D3C27B30BBA3E6D16; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:04 GMT; domain=bingapis.com
+ - _SS=SID=2640BFA7BBE96C5D3C27B30BBA3E6D16; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 1CD080DD660F4C7AAD34DBF0A1765EA4
+ X-Msedge-Clientid:
+ - 16531DBBF6076C6D27071117F7D06D40
+ X-Msapi-Userstate:
+ - 5edb
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 1CD080DD660F4C7AAD34DBF0A1765EA4 Ref B: CO1EDGE0514 Ref C: 2018-11-19T22:40:04Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:03 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5A27E9618A7D4232B82F5032E39666D0&CID=16531DBBF6076C6D27071117F7D06D40&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5A27E9618A7D4232B82F5032E39666D0&CID=16531DBBF6076C6D27071117F7D06D40&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5402.1", "totalEstimatedMatches": 14800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "NPIS -
+ Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5072.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5082.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5092.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5105.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5117.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5128.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5144.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5156.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5170.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5186.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5198.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5212.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5225.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5242.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "FedCenter
+ - Items", "url": "https:\/\/www.fedcenter.gov\/ItemBrowser\/index.cfm?pge_prg_id=42308&pge_id=1859&fldlist=&archivedstatus=1",
+ "urlPingSuffix": "DevEx,5266.1", "displayUrl": "https:\/\/www.fedcenter.gov\/ItemBrowser\/index.cfm?pge_prg_id=42308&...",
+ "snippet": "Displays the item browser page. Offered by the National Preservation
+ Institute, this 3 day seminar covers the basics of project review under Section
+ 106 of the National Historic Preservation Act.", "dateLastCrawled": "2018-11-18T02:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "ISTEP+
+ Grades 3-8, 10 | IDOE", "url": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8-10",
+ "urlPingSuffix": "DevEx,5282.1", "about": [{"name": "Indiana Statewide Testing
+ for Educational Progress-Plus"}], "displayUrl": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8",
+ "snippet": "The Item Samplers on this website provide information about
+ ISTEP+ for students, parents, educators, and others. The items in each sampler
+ are examples of the types of items found on ISTEP+. These examples can serve
+ as models when teachers are constructing items for classroom assessment.",
+ "dateLastCrawled": "2018-11-16T08:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Agenda Agenda Item #12.A Item# 12.A c::1 TAT O CALI .. ORNIA",
+ "url": "https:\/\/www.bvnpt.ca.gov\/about_us\/meetings\/materials\/20181114_12a.pdf",
+ "urlPingSuffix": "DevEx,5294.1", "displayUrl": "https:\/\/www.bvnpt.ca.gov\/about_us\/meetings\/materials\/20181114_12a.pdf",
+ "snippet": "agenda agenda item #12.a item# 12.a c::1 tat o\" ccali ..a
+ ornia business, consumer services, and housing agency • governor edmund g.
+ brown jr. board of vocational nursing and psychiatric technicians", "dateLastCrawled":
+ "2018-11-14T04:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Pennsylvania System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5307.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:04 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4770'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:05 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=173AB17E3FCE6F29381EBDD23E196E20; path=/; expires=Sat, 14-Dec-2019 22:40:05
+ GMT; domain=bingapis.com
+ - MUIDB=173AB17E3FCE6F29381EBDD23E196E20; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:05 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:05 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A25435E486EB428BABD7A57666E5C5FB&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:05 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:05
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0E747FB1621C6DBD27F2731D63CB6C27; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:05 GMT; domain=bingapis.com
+ - _SS=SID=0E747FB1621C6DBD27F2731D63CB6C27; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - AAD1F54BCAE64D7A9F7D109434BDC839
+ X-Msedge-Clientid:
+ - 173AB17E3FCE6F29381EBDD23E196E20
+ X-Msapi-Userstate:
+ - c57d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: AAD1F54BCAE64D7A9F7D109434BDC839 Ref B: CO1EDGE0517 Ref C: 2018-11-19T22:40:05Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5FB2A0EEC65744BBA63E30DE44CD8FFD&CID=173AB17E3FCE6F29381EBDD23E196E20&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5FB2A0EEC65744BBA63E30DE44CD8FFD&CID=173AB17E3FCE6F29381EBDD23E196E20&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:05 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/No_results_when_searching_with_active_RSS_feeds.yml b/features/vcr_cassettes/Legacy_Search/No_results_when_searching_with_active_RSS_feeds.yml
index 71efd97a4b..83b301cc21 100644
--- a/features/vcr_cassettes/Legacy_Search/No_results_when_searching_with_active_RSS_feeds.yml
+++ b/features/vcr_cassettes/Legacy_Search/No_results_when_searching_with_active_RSS_feeds.yml
@@ -828,4 +828,940 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:15 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:58 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1A44E62BBA376EEB1265EA87BBE06F98; path=/; expires=Sat, 14-Dec-2019 22:39:58
+ GMT; domain=bingapis.com
+ - MUIDB=1A44E62BBA376EEB1265EA87BBE06F98; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:58 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:58 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=0DD3E9879BFC4A9A802E17F27AEE95CB&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:58 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:58
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2A8542CB2AB36DAE05E84E672B646C4F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:58 GMT; domain=bingapis.com
+ - _SS=SID=2A8542CB2AB36DAE05E84E672B646C4F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3E7C1008E0C84E96B70FF621F27DA257
+ X-Msedge-Clientid:
+ - 1A44E62BBA376EEB1265EA87BBE06F98
+ X-Msapi-Userstate:
+ - e02b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3E7C1008E0C84E96B70FF621F27DA257 Ref B: CO1EDGE0421 Ref C: 2018-11-19T22:39:58Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=1620DFF21ACB4B02B17655FCC112B35D&CID=1A44E62BBA376EEB1265EA87BBE06F98&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=1620DFF21ACB4B02B17655FCC112B35D&CID=1A44E62BBA376EEB1265EA87BBE06F98&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15100000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:59 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4770'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:59 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1D6A570F42F96532287F5BA3432E64A8; path=/; expires=Sat, 14-Dec-2019 22:39:59
+ GMT; domain=bingapis.com
+ - MUIDB=1D6A570F42F96532287F5BA3432E64A8; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:59 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:59 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7C8D874814DA44C4900E8CC004733884&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:59 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:59
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2942422BBC456A2A2BC84E87BD926BA0; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:59 GMT; domain=bingapis.com
+ - _SS=SID=2942422BBC456A2A2BC84E87BD926BA0; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B7179E4A1C614E6E80C4886FBA77928B
+ X-Msedge-Clientid:
+ - 1D6A570F42F96532287F5BA3432E64A8
+ X-Msapi-Userstate:
+ - cb9c
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B7179E4A1C614E6E80C4886FBA77928B Ref B: CO1EDGE0316 Ref C: 2018-11-19T22:39:59Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:58 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A124DC9AD8864DFFA3D8C5B4454DA556&CID=1D6A570F42F96532287F5BA3432E64A8&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A124DC9AD8864DFFA3D8C5B4454DA556&CID=1D6A570F42F96532287F5BA3432E64A8&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:59 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:59 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0EF9DFA854196CE51C54D30455CE6D79; path=/; expires=Sat, 14-Dec-2019 22:39:59
+ GMT; domain=bingapis.com
+ - MUIDB=0EF9DFA854196CE51C54D30455CE6D79; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:59 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:59 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A560633793244F739A7282005CA48B0B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:59 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:59
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=179A8F7BAA55607C3D2883D7AB82617F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:59 GMT; domain=bingapis.com
+ - _SS=SID=179A8F7BAA55607C3D2883D7AB82617F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FB9489B322524420B98ACD3587B5EBE5
+ X-Msedge-Clientid:
+ - 0EF9DFA854196CE51C54D30455CE6D79
+ X-Msapi-Userstate:
+ - 9b77
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FB9489B322524420B98ACD3587B5EBE5 Ref B: CO1EDGE0518 Ref C: 2018-11-19T22:39:59Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:59 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5F30C5B72E974649A4AEA0FF87038E92&CID=0EF9DFA854196CE51C54D30455CE6D79&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5F30C5B72E974649A4AEA0FF87038E92&CID=0EF9DFA854196CE51C54D30455CE6D79&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:00 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4770'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:00 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1F0DE6AC73C4671F2151EA00721366B9; path=/; expires=Sat, 14-Dec-2019 22:40:00
+ GMT; domain=bingapis.com
+ - MUIDB=1F0DE6AC73C4671F2151EA00721366B9; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:00 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:00 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=67C9BFF464F84120954873F190E08B2F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:00 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:00
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=15B03CA875E5626C1A23300474326368; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:00 GMT; domain=bingapis.com
+ - _SS=SID=15B03CA875E5626C1A23300474326368; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B815B1F1A08242B6947589EF171D143F
+ X-Msedge-Clientid:
+ - 1F0DE6AC73C4671F2151EA00721366B9
+ X-Msapi-Userstate:
+ - 511e
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B815B1F1A08242B6947589EF171D143F Ref B: CO1EDGE0919 Ref C: 2018-11-19T22:40:00Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:00 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=38B2498D747945BE983B03B335CDED8F&CID=1F0DE6AC73C4671F2151EA00721366B9&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=38B2498D747945BE983B03B335CDED8F&CID=1F0DE6AC73C4671F2151EA00721366B9&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:01 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Search_with_no_results.yml b/features/vcr_cassettes/Legacy_Search/Search_with_no_results.yml
new file mode 100644
index 0000000000..410d74d552
--- /dev/null
+++ b/features/vcr_cassettes/Legacy_Search/Search_with_no_results.yml
@@ -0,0 +1,284 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=chupacabra%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4227'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Tue, 04 Sep 2018 21:09:20 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=080985BC73CD62D60D1589DC721A63E6; path=/; expires=Sun, 29-Sep-2019 21:10:20
+ GMT; domain=bingapis.com
+ - MUIDB=080985BC73CD62D60D1589DC721A63E6; path=/; httponly; expires=Sun, 29-Sep-2019
+ 21:10:20 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Fri, 04-Sep-2020 21:10:20 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=E99F19549A714C9AB933C81773724A82&dmnchg=1; domain=.bingapis.com;
+ expires=Fri, 04-Sep-2020 21:10:20 GMT; path=/
+ - SRCHUSR=DOB=20180904; domain=.bingapis.com; expires=Fri, 04-Sep-2020 21:10:20
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=09A154E9F8F76DA339A25889F9206CFD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sun, 29-Sep-2019 21:10:20 GMT; domain=bingapis.com
+ - _SS=SID=09A154E9F8F76DA339A25889F9206CFD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 347C43B796384D378C119C32208B1858
+ X-Msedge-Clientid:
+ - '080985BC73CD62D60D1589DC721A63E6'
+ X-Msapi-Userstate:
+ - 2de1
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 347C43B796384D378C119C32208B1858 Ref B: CO1EDGE0211 Ref C: 2018-09-04T21:10:20Z'
+ Date:
+ - Tue, 04 Sep 2018 21:10:20 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=107371C0105F4ABCAE3E334C5AAE73BB&CID=080985BC73CD62D60D1589DC721A63E6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=107371C0105F4ABCAE3E334C5AAE73BB&CID=080985BC73CD62D60D1589DC721A63E6&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=chupacabra+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5414.1", "totalEstimatedMatches": 16000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Show-Me Freaks of Nature", "url": "https:\/\/mdc.mo.gov\/blogs\/fresh-afield\/show-me-freaks-nature",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/mdc.mo.gov\/blogs\/fresh-afield\/show-me-freaks-nature",
+ "snippet": "Although the chupacabra and Momo are ... Really enjoyed learning
+ about Show-Me Freaks of Nature. My brother wanted to know about the Piasa
+ Bird he spotted flying ...", "dateLastCrawled": "2018-08-14T07:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "TPWD:
+ Chupacabra Point | | Texas Paddling Trails", "url": "https:\/\/tpwd.texas.gov\/fishboat\/boat\/paddlingtrails\/inland\/runawaybay_chupacabra\/",
+ "urlPingSuffix": "DevEx,5080.1", "displayUrl": "https:\/\/tpwd.texas.gov\/...\/paddlingtrails\/inland\/runawaybay_chupacabra",
+ "snippet": "Chupacabra Point Paddling ... Proceed South on Blue Fathom drive,
+ until reaching the Chupacabra put in point & kiosk ... Crossing from Chupacabra
+ Point to the ...", "dateLastCrawled": "2018-08-20T03:37:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Chupacabra
+ | Pima County Public Library", "url": "https:\/\/www.library.pima.gov\/content\/chupacabra\/",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.library.pima.gov\/content\/chupacabra",
+ "snippet": "Chupacabra is a legendary beast that roams Puerto Rico, Mexico
+ and the southern United States. The descriptions of the chupacabra…", "dateLastCrawled":
+ "2018-08-19T23:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "SLEEPING WITH CHUPACABRAS? > Torch Magazine > Article Display", "url":
+ "https:\/\/www.torch.aetc.af.mil\/News\/Article-Display\/Article\/364812\/sleeping-with-chupacabras\/",
+ "urlPingSuffix": "DevEx,5105.1", "displayUrl": "https:\/\/www.torch.aetc.af.mil\/...\/364812\/sleeping-with-chupacabras",
+ "snippet": "A Chupacabra is a mythical creature rumored to inhabit parts
+ of Southwest Texas and Mexico. The name comes from the animal''s reported
+ habit of attacking and drinking the blood of livestock, especially goats.",
+ "dateLastCrawled": "2018-08-08T23:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "TPWD: News Images", "url": "https:\/\/tpwd.texas.gov\/newsmedia\/news_images\/?g=texas_travel_rally_day_2011&i=chupacabra_point_trail_kayakers--~city_of_rowlett.jpg",
+ "urlPingSuffix": "DevEx,5117.1", "displayUrl": "https:\/\/tpwd.texas.gov\/newsmedia\/news_images\/?g=texas_travel_rally...",
+ "snippet": "Navigation: Texas Travel Rally Day 2011 Group All Groups Group:
+ Texas Travel Rally Day 2011 Image: Chupacabra Point Trail Kayakers. File
+ Size: 3648 x 2736 pixels, 2.3 megabytes", "dateLastCrawled": "2018-08-12T05:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "chupacabra_2012.jpg
+ | Missouri Department of Conservation", "url": "https:\/\/mdc.mo.gov\/files\/chupacabra2012jpg",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/mdc.mo.gov\/files\/chupacabra2012jpg",
+ "snippet": "We protect and manage the fish, forest, and wildlife of the state.
+ We facilitate and provide opportunity for all citizens to use, enjoy, and
+ learn about these resources.", "dateLastCrawled": "2018-07-23T23:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "S3\/ Encl:
+ (1) NMCB SEVEN Deployment Completion Report", "url": "https:\/\/www.history.navy.mil\/content\/dam\/museums\/Seabee\/Online%20Reading%20Room\/DCRs\/NMCB7\/NMCB%207%20DCR%202000_2001.pdf",
+ "urlPingSuffix": "DevEx,5143.1", "displayUrl": "https:\/\/www.history.navy.mil\/content\/dam\/museums\/Seabee\/Online...",
+ "snippet": "Subj: SUBMISSION OF DEPLOYMENT COMPLETION REPORT Ref: (a) ...
+ The capstone event of Operation Chupacabra was the mount-out exercise. The
+ embark", "dateLastCrawled": "2018-08-29T23:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "abra.dc.gov", "url": "https:\/\/abra.dc.gov\/sites\/default\/files\/dc\/sites\/abra\/publication\/attachments\/822HStNE-9192013.pdf",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/abra.dc.gov\/sites\/default\/files\/dc\/sites\/abra\/publication\/...",
+ "snippet": "Chupacabra, LLC t\/a Chupacabra case No. 13-PRO-00123 License
+ No. ABRA-092662 Page 2 Accordingly, it is this 19th day of September, 2013,
+ ORDERED that:", "dateLastCrawled": "2018-07-20T09:33:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "chupacabra_2012.jpg
+ | MDC Discover Nature", "url": "https:\/\/nature.mdc.mo.gov\/file\/chupacabra2012jpg",
+ "urlPingSuffix": "DevEx,5168.1", "displayUrl": "https:\/\/nature.mdc.mo.gov\/file\/chupacabra2012jpg",
+ "snippet": "chupacabra_2012.jpg. This coyote is suffering from severe sarcoptic
+ mange and malnutrition. Janis and Jerry Hinde. Inside MDC. About Us; Magazines
+ & Newsletters; Blogs;", "dateLastCrawled": "2018-07-31T16:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "TPWD:
+ Inland Paddling Trails | Texas Paddling Trails", "url": "https:\/\/tpwd.texas.gov\/fishboat\/boat\/paddlingtrails\/inland\/",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/tpwd.texas.gov\/fishboat\/boat\/paddlingtrails\/inland",
+ "snippet": "Texas Parks and Wildlife Paddling Trails are statewide canoeing
+ and kayaking trails for outdoor recreation on the coast and ... Chupacabra
+ Point Paddling Trail ...", "dateLastCrawled": "2018-08-31T05:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "TPWD:
+ Bridgeport Falls | | Texas Paddling Trails", "url": "https:\/\/tpwd.texas.gov\/fishboat\/boat\/paddlingtrails\/inland\/bridgeportfalls\/",
+ "urlPingSuffix": "DevEx,5196.1", "displayUrl": "https:\/\/tpwd.texas.gov\/...\/boat\/paddlingtrails\/inland\/bridgeportfalls",
+ "snippet": "The Bridgeport Falls low water weir dam creates a pleasant 5.8
+ mile looped paddling trail under a lush canopy of ... Texas at the Chupacabra
+ Point Paddling Trail ...", "dateLastCrawled": "2018-08-04T14:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "BREED
+ CODE LIST", "url": "http:\/\/hdoa.hawaii.gov\/ai\/files\/2013\/01\/aqs-66.pdf",
+ "urlPingSuffix": "DevEx,5208.1", "displayUrl": "hdoa.hawaii.gov\/ai\/files\/2013\/01\/aqs-66.pdf",
+ "snippet": "BREED CODE LIST Unlisted Breeds May Not Be Eligible For Entry
+ Into Hawaii The regulation of breeds that are permitted or prohibited from
+ entering Hawaii are under the ...", "dateLastCrawled": "2018-08-31T09:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "McAllister
+ Park - The City of San Antonio - Official City ...", "url": "https:\/\/www.sanantonio.gov\/ParksAndRec\/Parks-Facilities\/All-Parks-Facilities\/Parks-Facilities-Details\/ArtMID\/14820\/ArticleID\/2578\/McAllister-Park",
+ "urlPingSuffix": "DevEx,5220.1", "displayUrl": "https:\/\/www.sanantonio.gov\/...\/14820\/ArticleID\/2578\/McAllister-Park",
+ "snippet": "\/ Parks & Facilities Details. Parks & Facilities Details.
+ McAllister Park. ... McAllister Park hours are 5 a.m. to 11 p.m., seven
+ days a week. No lighting in the ...", "dateLastCrawled": "2018-08-24T17:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Mermaids,
+ Giant Turtles, and Wild Men…Oh My! – The Indiana ...", "url": "https:\/\/blog.history.in.gov\/mermaids-giant-turtles-and-wild-men-oh-my\/",
+ "urlPingSuffix": "DevEx,5232.1", "displayUrl": "https:\/\/blog.history.in.gov\/mermaids-giant-turtles-and-wild-men-oh-my",
+ "snippet": "EDITOR’S NOTE: While the Indiana Historical Bureau does not research
+ folklore and cryptozoology, in the course of doing historical research in
+ newspapers about other topics, we sometimes come across odd stories like we
+ have collected here.", "dateLastCrawled": "2018-07-26T14:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Johns
+ Creek - Home", "url": "https:\/\/www.johnscreekga.gov\/", "urlPingSuffix":
+ "DevEx,5246.1", "about": [{"name": "Johns Creek"}, {"name": "Johns Creek"}],
+ "displayUrl": "https:\/\/www.johnscreekga.gov", "snippet": "Johns Creek
+ is a culturally diverse community with nearly 25 percent of our residents
+ joining us from India, China, South Korea and other nations.", "dateLastCrawled":
+ "2018-08-29T15:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Searching for mythical creatures; enjoying what was found ...",
+ "url": "http:\/\/magazine.outdoornebraska.gov\/2013\/10\/mythical-creatures-2\/",
+ "urlPingSuffix": "DevEx,5262.1", "displayUrl": "magazine.outdoornebraska.gov\/2013\/10\/mythical-creatures-2",
+ "snippet": "Sasquatch, chupacabra, Yellow Rail and White-eyed Vireo have
+ long been mythical creatures, at least for me in Nebraska. I’ll leave the
+ two mammals to be discussed elsewhere (this IS a blog about birds).", "dateLastCrawled":
+ "2018-08-31T05:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Yucca Valley, California, United States - Spot The Station",
+ "url": "https:\/\/spotthestation.nasa.gov\/sightings\/view.cfm?country=United_States®ion=California&city=Yucca_Valley",
+ "urlPingSuffix": "DevEx,5275.1", "displayUrl": "https:\/\/spotthestation.nasa.gov\/sightings\/view.cfm?country=United...",
+ "snippet": "Upcoming dates, times and sighting details for the space station’s
+ next passes over Yucca Valley, California, United States", "dateLastCrawled":
+ "2018-08-22T21:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "The Official Site of Rio Rancho, NM", "url": "https:\/\/rrnm.gov\/calendar.aspx?view=list&year=2017&month=10&day=3",
+ "urlPingSuffix": "DevEx,5287.1", "displayUrl": "https:\/\/rrnm.gov\/calendar.aspx?view=list&year=2017&month=10&day=3",
+ "snippet": "Calendar View all calendars is the default. Choose ... Tracking
+ the Chupacabra, and Investigating Ghosts: The Scientific Search for Spirits.
+ More Details", "dateLastCrawled": "2018-08-29T06:59:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Pages - default",
+ "url": "http:\/\/www.public.navy.mil\/surflant\/ddg94\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5301.1", "about": [{"name": "USS Nitze"}, {"name":
+ "USS Nitze"}], "displayUrl": "www.public.navy.mil\/surflant\/ddg94\/Pages\/default.aspx",
+ "snippet": "USS NITZE (DDG 94) \"Vision, Courage, Determination\" ISIC:
+ COMDESRON TWO Mailing Address: USS NITZE (DDG 94) UNIT 100514 BOX 1 FPO
+ AE 09579", "dateLastCrawled": "2018-08-21T23:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Congressman John Ratcliffe | Representing the 4th District ...",
+ "url": "https:\/\/ratcliffe.house.gov\/", "urlPingSuffix": "DevEx,5315.1",
+ "about": [{"name": "John Ratcliffe"}, {"name": "John Ratcliffe"}], "displayUrl":
+ "https:\/\/ratcliffe.house.gov", "snippet": "WASHINGTON – Rep. John Ratcliffe
+ (R-Texas) congratulated Harrison Benefield, William Humphrey, and Mayten Lumpkin
+ today for their successful completion of a congressional internship in his
+ Texarkana district office this summer.", "dateLastCrawled": "2018-09-01T02:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 21:10:20 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=foobarbazbiz%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '241'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Tue, 04 Sep 2018 21:11:17 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=038C16839D2769E213931AE39CF06849; path=/; expires=Sun, 29-Sep-2019 21:12:18
+ GMT; domain=bingapis.com
+ - MUIDB=038C16839D2769E213931AE39CF06849; path=/; httponly; expires=Sun, 29-Sep-2019
+ 21:12:18 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Fri, 04-Sep-2020 21:12:17 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CF99A53B45484952A65B5405F9993443&dmnchg=1; domain=.bingapis.com;
+ expires=Fri, 04-Sep-2020 21:12:17 GMT; path=/
+ - SRCHUSR=DOB=20180904; domain=.bingapis.com; expires=Fri, 04-Sep-2020 21:12:17
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=349625B644DB62D015C129D6450C6363; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sun, 29-Sep-2019 21:12:18 GMT; domain=bingapis.com
+ - _SS=SID=349625B644DB62D015C129D6450C6363; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 97F825619CA54D9CB6E44ED8B383AD9B
+ X-Msedge-Clientid:
+ - '038C16839D2769E213931AE39CF06849'
+ X-Msapi-Userstate:
+ - 1a11
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 97F825619CA54D9CB6E44ED8B383AD9B Ref B: CO1EDGE0308 Ref C: 2018-09-04T21:12:18Z'
+ Date:
+ - Tue, 04 Sep 2018 21:12:17 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=412A3A0DCA284C6F880381F913D64EFA&CID=038C16839D2769E213931AE39CF06849&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=412A3A0DCA284C6F880381F913D64EFA&CID=038C16839D2769E213931AE39CF06849&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Tue, 04 Sep 2018 21:12:18 GMT
+recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searchers_see_English_Medline_Govbox.yml b/features/vcr_cassettes/Legacy_Search/Searchers_see_English_Medline_Govbox.yml
index d776b3c2de..fce6c53d85 100644
--- a/features/vcr_cassettes/Legacy_Search/Searchers_see_English_Medline_Govbox.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searchers_see_English_Medline_Govbox.yml
@@ -231,4 +231,208 @@ http_interactions:
[{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:29 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotomonstrosesquippedaliophobia%20(site:nih.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '241'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:11 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=12A5F257520C6F9A042AFEFB53DB6E07; path=/; expires=Sat, 14-Dec-2019 22:40:11
+ GMT; domain=bingapis.com
+ - MUIDB=12A5F257520C6F9A042AFEFB53DB6E07; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:11 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:11 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=E39B87B0EB334E57BBD224B9314ABE6B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:11 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:11
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=12675F57E6AC63DB0D6253FBE77B626F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:11 GMT; domain=bingapis.com
+ - _SS=SID=12675F57E6AC63DB0D6253FBE77B626F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 2683DFEF2A3F4E35B3FC074F66E04598
+ X-Msedge-Clientid:
+ - 12A5F257520C6F9A042AFEFB53DB6E07
+ X-Msapi-Userstate:
+ - 71bd
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 2683DFEF2A3F4E35B3FC074F66E04598 Ref B: CO1EDGE0519 Ref C: 2018-11-19T22:40:11Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:11 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E93DAD0FB6A74EB6A2A2091A502DAE3B&CID=12A5F257520C6F9A042AFEFB53DB6E07&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E93DAD0FB6A74EB6A2A2091A502DAE3B&CID=12A5F257520C6F9A042AFEFB53DB6E07&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:11 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotomonstrosesquippedaliophobia%20(site:nih.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '243'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:12 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=09E84E85793A684502CE422978ED69A3; path=/; expires=Sat, 14-Dec-2019 22:40:12
+ GMT; domain=bingapis.com
+ - MUIDB=09E84E85793A684502CE422978ED69A3; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:12 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:12 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=30FBEAAE50AE4C98BBF3A4B857FEC218&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:12 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:12
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1C99CADBA167646F2BA5C677A0B06556; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:12 GMT; domain=bingapis.com
+ - _SS=SID=1C99CADBA167646F2BA5C677A0B06556; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 36800AF6616F4AF8A489464CC3D8A510
+ X-Msedge-Clientid:
+ - '09E84E85793A684502CE422978ED69A3'
+ X-Msapi-Userstate:
+ - '4995'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 36800AF6616F4AF8A489464CC3D8A510 Ref B: CO1EDGE0415 Ref C: 2018-11-19T22:40:12Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:11 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A99F8AD32A1E4041A4EE0F1E59CF5C4C&CID=09E84E85793A684502CE422978ED69A3&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A99F8AD32A1E4041A4EE0F1E59CF5C4C&CID=09E84E85793A684502CE422978ED69A3&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:12 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotomonstrosesquippedaliophobia%20(site:nih.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:14 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=38C8117AC10B6ECF34BA1DD6C0DC6F6C; path=/; expires=Sat, 14-Dec-2019 22:40:14
+ GMT; domain=bingapis.com
+ - MUIDB=38C8117AC10B6ECF34BA1DD6C0DC6F6C; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:14 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:14 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=BD16000F2F694277AA93C562B1E55515&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:14 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:14
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=22D2509ACE6A6FFF16A75C36CFBD6E41; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:14 GMT; domain=bingapis.com
+ - _SS=SID=22D2509ACE6A6FFF16A75C36CFBD6E41; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - DFC68BA418A24017AD50ADE31F563C16
+ X-Msedge-Clientid:
+ - 38C8117AC10B6ECF34BA1DD6C0DC6F6C
+ X-Msapi-Userstate:
+ - a726
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: DFC68BA418A24017AD50ADE31F563C16 Ref B: CO1EDGE0508 Ref C: 2018-11-19T22:40:14Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:14 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=49DA94C40D474875A4DB66C547E09F48&CID=38C8117AC10B6ECF34BA1DD6C0DC6F6C&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=49DA94C40D474875A4DB66C547E09F48&CID=38C8117AC10B6ECF34BA1DD6C0DC6F6C&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:14 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searchers_see_Spanish_Medline_Govbox.yml b/features/vcr_cassettes/Legacy_Search/Searchers_see_Spanish_Medline_Govbox.yml
index 62c2018588..de9ad991c9 100644
--- a/features/vcr_cassettes/Legacy_Search/Searchers_see_Spanish_Medline_Govbox.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searchers_see_Spanish_Medline_Govbox.yml
@@ -231,4 +231,208 @@ http_interactions:
[{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:32 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotomonstrosesquippedaliophobia%20(site:nih.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:16 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1E8A551DB7526E3E05B259B1B6856F8D; path=/; expires=Sat, 14-Dec-2019 22:40:16
+ GMT; domain=bingapis.com
+ - MUIDB=1E8A551DB7526E3E05B259B1B6856F8D; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:16 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:16 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CA7474DE29D24E809D7923D2B0EEAC6B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:16 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:16
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=15FA4A555FAA697F282246F95E7D683A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:16 GMT; domain=bingapis.com
+ - _SS=SID=15FA4A555FAA697F282246F95E7D683A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3785B5456AAF449582D4D5542E795579
+ X-Msedge-Clientid:
+ - 1E8A551DB7526E3E05B259B1B6856F8D
+ X-Msapi-Userstate:
+ - d366
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3785B5456AAF449582D4D5542E795579 Ref B: CO1EDGE0422 Ref C: 2018-11-19T22:40:16Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:16 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=1E27AEEED38B47F480443C1E7ACCADC1&CID=1E8A551DB7526E3E05B259B1B6856F8D&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=1E27AEEED38B47F480443C1E7ACCADC1&CID=1E8A551DB7526E3E05B259B1B6856F8D&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:17 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotomonstrosesquippedaliophobia%20(site:nih.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:17 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=031B29C0E1656D1E32C6256CE0B26C69; path=/; expires=Sat, 14-Dec-2019 22:40:17
+ GMT; domain=bingapis.com
+ - MUIDB=031B29C0E1656D1E32C6256CE0B26C69; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:17 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:17 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=1846EF168F7D41D58457A41AB2EEBDB7&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:17 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:17
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=265EA77525526BD61B12ABD924856AA4; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:17 GMT; domain=bingapis.com
+ - _SS=SID=265EA77525526BD61B12ABD924856AA4; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 342577700F644AEAA96977759DB36768
+ X-Msedge-Clientid:
+ - 031B29C0E1656D1E32C6256CE0B26C69
+ X-Msapi-Userstate:
+ - '5940'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 342577700F644AEAA96977759DB36768 Ref B: CO1EDGE0222 Ref C: 2018-11-19T22:40:17Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:17 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F088833C448343418B33DD5D0F258939&CID=031B29C0E1656D1E32C6256CE0B26C69&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F088833C448343418B33DD5D0F258939&CID=031B29C0E1656D1E32C6256CE0B26C69&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:18 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotomonstrosesquippedaliophobia%20(site:nih.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '243'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:19 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=30074932CB8E64630182459ECA59657A; path=/; expires=Sat, 14-Dec-2019 22:40:19
+ GMT; domain=bingapis.com
+ - MUIDB=30074932CB8E64630182459ECA59657A; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:19 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:19 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=59905D185A1142FF9DB131DBA990911C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:19 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:19
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=22105E993F566824001F52353E816928; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:19 GMT; domain=bingapis.com
+ - _SS=SID=22105E993F566824001F52353E816928; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - DC903ECA5FB44694B1B23644137EC9B6
+ X-Msedge-Clientid:
+ - 30074932CB8E64630182459ECA59657A
+ X-Msapi-Userstate:
+ - 4fda
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: DC903ECA5FB44694B1B23644137EC9B6 Ref B: CO1EDGE0414 Ref C: 2018-11-19T22:40:19Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:19 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=AFE503B969D249E583AD6C0C9CBBE3FA&CID=30074932CB8E64630182459ECA59657A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=AFE503B969D249E583AD6C0C9CBBE3FA&CID=30074932CB8E64630182459ECA59657A&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:20 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_a_domain_with_Bing_results_that_match_a_specific_news_item.yml b/features/vcr_cassettes/Legacy_Search/Searching_a_domain_with_Bing_results_that_match_a_specific_news_item.yml
index b280fab149..9496d94818 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_a_domain_with_Bing_results_that_match_a_specific_news_item.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_a_domain_with_Bing_results_that_match_a_specific_news_item.yml
@@ -194,4 +194,237 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:11 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hillary%20rodham%20clinton%20first%20lady%20(site:whitehouse.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3617'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:56 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2A0FDA9F3BEE662807B1D6333A3967CD; path=/; expires=Sat, 14-Dec-2019 22:39:57
+ GMT; domain=bingapis.com
+ - MUIDB=2A0FDA9F3BEE662807B1D6333A3967CD; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:57 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:56 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=9387CF028CC14FCEA680EC4CC4C0865D&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:56 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:56
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=13EAC73F31D5628A1A39CB93300263E8; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:57 GMT; domain=bingapis.com
+ - _SS=SID=13EAC73F31D5628A1A39CB93300263E8; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BEC5CABAF56E487790727235DB5ABBF0
+ X-Msedge-Clientid:
+ - 2A0FDA9F3BEE662807B1D6333A3967CD
+ X-Msapi-Userstate:
+ - 8af0
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BEC5CABAF56E487790727235DB5ABBF0 Ref B: CO1EDGE0521 Ref C: 2018-11-19T22:39:57Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:56 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=750E9AE92A1B4C8F8FD0E6FD38CF2542&CID=2A0FDA9F3BEE662807B1D6333A3967CD&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=750E9AE92A1B4C8F8FD0E6FD38CF2542&CID=2A0FDA9F3BEE662807B1D6333A3967CD&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=hillary+rodham+clinton+first+lady+(site%3awhitehouse.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5423.1", "totalEstimatedMatches": 51, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Hillary
+ Rodham Clinton | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/hillary-rodham-clinton\/",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "Hillary Clinton"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/hillary-rodham-clinton",
+ "snippet": "Hillary Diane Rodham Clinton served as the First Lady of
+ the United States to the 42nd President, Bill Clinton. She went on to become
+ a U.S. Secretary of State and U.S. Senator from New York. In ...", "dateLastCrawled":
+ "2018-11-12T16:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "First Ladies | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/",
+ "urlPingSuffix": "DevEx,5073.1", "about": [{"name": "Nancy Reagan"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies",
+ "snippet": "Which two first ladies met their husbands through local newspapers?
+ Who was the first First Lady to make regular nationwide radio broadcasts?
+ Which First Lady cared for wounded soldiers in her ...", "dateLastCrawled":
+ "2018-11-14T22:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "William J. Clinton | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/william-j-clinton\/",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "Bill Clinton"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/william-j-clinton", "snippet":
+ "Bill Clinton is an American politician from Arkansas who served as the
+ 42nd President of the United States (1993-2001). He took office at the end
+ of the Cold War, and was the first baby-boomer ...", "dateLastCrawled":
+ "2018-11-13T17:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Michelle Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/michelle-obama\/",
+ "urlPingSuffix": "DevEx,5101.1", "about": [{"name": "Michelle Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/michelle-obama", "snippet":
+ "Michelle LaVaughn Robinson Obama is a lawyer, writer, and the wife of the
+ 44th President, Barack Obama. She was the first African-American First
+ Lady of the United States. Through her four main ...", "dateLastCrawled":
+ "2018-11-13T06:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Barbara Pierce Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/barbara-pierce-bush\/",
+ "urlPingSuffix": "DevEx,5115.1", "about": [{"name": "Barbara Bush"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/barbara-pierce-bush",
+ "snippet": "After serving as Second Lady from 1981 to 1989, Barbara Pierce
+ Bush served as First Lady of the United States when her husband George
+ H. W. Bush won the Presidency. She is also the mother of the ...", "dateLastCrawled":
+ "2018-11-16T10:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Laura Welch Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/laura-welch-bush\/",
+ "urlPingSuffix": "DevEx,5129.1", "about": [{"name": "Laura Bush"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/...",
+ "snippet": "Laura Lane Welch Bush is the wife of the 43rd President, George
+ W. Bush. She served as First Lady from 2001 to 2009, advocating for historic
+ education reform and the well-being of women and ...", "dateLastCrawled":
+ "2018-11-13T23:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Jacqueline Lee Bouvier Kennedy | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/jacqueline-lee-bouvier-kennedy\/",
+ "urlPingSuffix": "DevEx,5143.1", "about": [{"name": "Jacqueline Kennedy Onassis"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/...",
+ "snippet": "First Lady Jacqueline Lee “Jackie” (Bouvier) Kennedy Onassis
+ was a symbol of strength for a traumatized nation after the assassination
+ of one the country’s most energetic political figures ...", "dateLastCrawled":
+ "2018-11-13T03:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Rosalynn Smith Carter | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/rosalynn-smith-carter\/",
+ "urlPingSuffix": "DevEx,5157.1", "about": [{"name": "Rosalynn Carter"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/rosalynn-smith-carter",
+ "snippet": "Politically active Eleanor Rosalynn Carter is the wife of 39th
+ President Jimmy Carter. Serving as the First Lady from 1977 to 1981, she
+ was an envoy abroad and a leading advocate for numerous ...", "dateLastCrawled":
+ "2018-11-16T00:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Claudia Alta Taylor \"Lady Bird\" Johnson | The White House",
+ "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/claudia-alta-taylor-lady-bird-johnson\/",
+ "urlPingSuffix": "DevEx,5171.1", "about": [{"name": "Lady Bird Johnson"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/claudia-alta-taylor-lady-bird-johnson",
+ "snippet": "Claudia Alta Taylor “Lady Bird” Johnson served as First Lady
+ of the United States (1963–1969) as the wife of President Lyndon B. Johnson.
+ A shrewd investor and manager, she broke ground for ...", "dateLastCrawled":
+ "2018-11-13T14:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Martha Dandridge Custis Washington | The White House", "url":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/martha-dandridge-custis-washington\/",
+ "urlPingSuffix": "DevEx,5185.1", "about": [{"name": "Martha Washington"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/...",
+ "snippet": "As the wife of George Washington, the first President of the
+ United States, Martha Dandridge Custis Washington is considered to be the
+ first First Lady, but the title was not coined until after ...", "dateLastCrawled":
+ "2018-11-16T13:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Nancy Davis Reagan | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/nancy-davis-reagan\/",
+ "urlPingSuffix": "DevEx,5199.1", "about": [{"name": "Nancy Reagan"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/nancy-davis-reagan",
+ "snippet": "Originally a Broadway actress, Nancy Davis Reagan served as
+ First Lady from 1981 to 1989. She served alongside her husband, President
+ Ronald Reagan, and is remembered for her passionate advocacy ...", "dateLastCrawled":
+ "2018-11-11T17:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Copyright Policy | The White House", "url": "https:\/\/www.whitehouse.gov\/copyright\/",
+ "urlPingSuffix": "DevEx,5213.1", "displayUrl": "https:\/\/www.whitehouse.gov\/copyright",
+ "snippet": "Pursuant to federal law, government-produced materials appearing
+ on this site are not copyright protected. The United States Government may
+ receive and hold copyrights transferred to it by ...", "dateLastCrawled":
+ "2018-11-15T12:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Louisa Catherine Johnson Adams | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/louisa-catherine-johnson-adams\/",
+ "urlPingSuffix": "DevEx,5227.1", "about": [{"name": "Louisa Adams"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/...",
+ "snippet": "Born in London, Louisa Catherine Johnson Adams was the wife
+ of the sixth President, John Quincy Adams (1825-1829). Louisa Catherine Adams,
+ the first of America’s First Ladies to be born outside ...", "dateLastCrawled":
+ "2018-11-15T20:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Eisenhower Executive Office Building | The White House", "url":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/eisenhower-executive-office-building\/",
+ "urlPingSuffix": "DevEx,5241.1", "about": [{"name": "Eisenhower Executive
+ Office Building"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/eisenhower-executive-office-building",
+ "snippet": "Completed in 1875, the State Department’s south wing was the first
+ to be occupied, with its elegant four-story library (completed in 1876), Diplomatic
+ Reception Room, and Secretary’s office ...", "dateLastCrawled": "2018-11-11T03:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5255.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "Donald J. Trump is the 45th President of the United States. He
+ believes the United States has incredible potential and will go on to exceed
+ anything that it has achieved in the past.", "dateLastCrawled": "2018-11-13T17:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "The
+ White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix": "DevEx,5269.1",
+ "about": [{"name": "The White House"}, {"name": "whitehouse.gov"}, {"name":
+ "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov", "snippet":
+ "History of The White House. Our first president, George Washington, selected
+ the site for the White House in 1791. Every president since John Adams has
+ occupied the White House, and the history of ...", "dateLastCrawled": "2018-11-16T14:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Economy
+ & Jobs | The White House", "url": "https:\/\/www.whitehouse.gov\/issues\/economy-jobs\/",
+ "urlPingSuffix": "DevEx,5283.1", "displayUrl": "https:\/\/www.whitehouse.gov\/issues\/economy-jobs",
+ "snippet": "The economy has come roaring back to life under President Trump.
+ The stock market has hit record high after record high, helping more Americans
+ build wealth and secure their futures.", "dateLastCrawled": "2018-11-16T05:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Ulysses
+ S. Grant | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/ulysses-s-grant\/",
+ "urlPingSuffix": "DevEx,5297.1", "about": [{"name": "Ulysses S. Grant"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/ulysses-s-grant",
+ "snippet": "In 1865, as commanding general, Ulysses S. Grant led the Union
+ Armies to victory over the Confederacy in the American Civil War. As an American
+ hero, Grant was later elected the 18th President of ...", "dateLastCrawled":
+ "2018-11-12T11:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "James K. Polk | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/james-k-polk\/",
+ "urlPingSuffix": "DevEx,5311.1", "about": [{"name": "James K. Polk"}, {"name":
+ "James K. Polk"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/james-k-polk",
+ "snippet": "Often referred to as the first “dark horse,” James K. Polk
+ was the 11th President of the United States from 1845 to 1849, the last strong
+ President until the Civil War. Often referred to as ...", "dateLastCrawled":
+ "2018-11-14T07:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "We the People - Petition the White House on the Issues ...",
+ "url": "https:\/\/petitions.whitehouse.gov\/", "urlPingSuffix": "DevEx,5325.1",
+ "about": [{"name": "We the People"}, {"name": "White House"}], "displayUrl":
+ "https:\/\/petitions.whitehouse.gov", "snippet": "Call on the White House
+ to take action on the issue that matters to you. Gather Signatures. Share
+ your petition with others, build a community for the change you want to make.
+ ... We The People Call for The Resignation of FCC Chairman Ajit Varadaraj
+ Pai. 118,312 signed. 100,000 goal.", "dateLastCrawled": "2018-11-14T20:15:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:57 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_document_collections.yml b/features/vcr_cassettes/Legacy_Search/Searching_document_collections.yml
index 101fd7db94..ca60c86d62 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_document_collections.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_document_collections.yml
@@ -70,4 +70,72 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Thu, 22 Feb 2018 08:33:33 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=%27death%20star%20r2d2%20xyz3%27%20(site:petitions.whitehouse.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:33 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0B353B1AC8F56B6C0CCE37B6C9226AD0; path=/; expires=Sat, 14-Dec-2019 22:40:33
+ GMT; domain=bingapis.com
+ - MUIDB=0B353B1AC8F56B6C0CCE37B6C9226AD0; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:33 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:33 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=709BBC3F8AE54422840D1AF2A959B4DA&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:33 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:33
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0509A3F9E72168FB2BE4AF55E6F6693A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:33 GMT; domain=bingapis.com
+ - _SS=SID=0509A3F9E72168FB2BE4AF55E6F6693A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B486B17B74414883808036BE3887EF14
+ X-Msedge-Clientid:
+ - 0B353B1AC8F56B6C0CCE37B6C9226AD0
+ X-Msapi-Userstate:
+ - d454
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B486B17B74414883808036BE3887EF14 Ref B: CO1EDGE0413 Ref C: 2018-11-19T22:40:33Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:32 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=439AC04463684940AB257D647680BEF2&CID=0B353B1AC8F56B6C0CCE37B6C9226AD0&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=439AC04463684940AB257D647680BEF2&CID=0B353B1AC8F56B6C0CCE37B6C9226AD0&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:33 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_query.yml b/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_query.yml
index 9fd43e5be4..15ee14e3af 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_query.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_query.yml
@@ -296,4 +296,320 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:55 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3394'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:38 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2061008E0FEC639727130C220E3B6299; path=/; expires=Sat, 14-Dec-2019 22:40:38
+ GMT; domain=bingapis.com
+ - MUIDB=2061008E0FEC639727130C220E3B6299; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:38 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:38 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=6685BDA52214404591C567894B55B151&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:38 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:38
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3040CFF7BF22632E233DC35BBEF562E7; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:38 GMT; domain=bingapis.com
+ - _SS=SID=3040CFF7BF22632E233DC35BBEF562E7; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - AA622235549D4AB1979853A89E952B33
+ X-Msedge-Clientid:
+ - 2061008E0FEC639727130C220E3B6299
+ X-Msapi-Userstate:
+ - bf77
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: AA622235549D4AB1979853A89E952B33 Ref B: CO1EDGE0414 Ref C: 2018-11-19T22:40:38Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:38 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=DBE505162FA845849547857A1DA9F462&CID=2061008E0FEC639727130C220E3B6299&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=DBE505162FA845849547857A1DA9F462&CID=2061008E0FEC639727130C220E3B6299&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5449.1", "totalEstimatedMatches": 70900,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Research Career Fields | USAGov", "url": "https:\/\/www.usa.gov\/jobs-careers",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-careers",
+ "snippet": "Find research information and videos about different career fields.
+ Learn more about other jobs at the Bureau of Labor Statistic’s Occupational
+ Outlook Handbook. Animal Care and Science Find career information about animal
+ science and care. Architecture and Engineering Find careers in the ...", "dateLastCrawled":
+ "2018-11-11T12:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Jobs and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5090.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "Find out how and where to look for a new job or career, get help
+ if you are unemployed, and more.", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "Looking for a New Job. Find out how to look for work in the private sector
+ and federal government. Find a Federal Government Job. Learn how to find a
+ job with the federal government.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Government
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/government-careers", "urlPingSuffix":
+ "DevEx,5122.1", "displayUrl": "https:\/\/www.usa.gov\/government-careers",
+ "snippet": "It is one of the greatest jobs that you could have. It is thoroughly
+ rewarding. I wanted to become a pilot because my dad''s a pilot and I wanted
+ to be in the military.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5138.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Healthcare Doctor (Physician) Doctors treat injuries and sick
+ patients. Doctors examine patients, find out patient''s medical histories
+ and give medications. Nurse. Nurses, also called registered nurses or RNs,
+ take care of sick and injured people.They give medicine, treat wounds and
+ give emotional support to patients and their families.", "dateLastCrawled":
+ "2018-11-15T01:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Find a Job | USAGov", "url": "https:\/\/www.usa.gov\/find-a-job",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/www.usa.gov\/find-a-job",
+ "snippet": "Find a Job The Ticket to Work program helps 18-to-64-year-old
+ Social Security disability recipients develop job skills to get to a higher
+ standard of living. The program is supportive, free, and voluntary.", "dateLastCrawled":
+ "2018-11-15T13:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Entertainment and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Pay and Benefits for Federal Employees | USAGov", "url": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "urlPingSuffix": "DevEx,5184.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "snippet": "Learn more about pay and benefits for federal employees.", "dateLastCrawled":
+ "2018-11-14T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5197.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Retirement | USAGov", "url": "https:\/\/www.usa.gov\/retirement",
+ "urlPingSuffix": "DevEx,5213.1", "displayUrl": "https:\/\/www.usa.gov\/retirement",
+ "snippet": "If you change jobs, keep your savings in the plan or roll them
+ over to another retirement account. Don’t dip into retirement savings
+ early. If you pay someone for investment advice, ask them to confirm in writing
+ that they are “fiduciaries”—meaning they are obliged to work in your best
+ interest.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "urlPingSuffix": "DevEx,5229.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The
+ .gov means it''s official. Federal government websites often end in .gov or
+ .mil. Before sharing sensitive information, make sure you''re on a federal
+ government site. This site is secure. The https:\/\/ ensures that you are
+ connecting to the official website and that any information you provide is
+ ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Farming, Fishing and Forestry Careers | USAGov", "url": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "urlPingSuffix": "DevEx,5244.1", "displayUrl": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "snippet": "Learn about the careers in farming, fishing and forestry.",
+ "dateLastCrawled": "2018-11-06T19:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Public Service and Volunteer Opportunities | USAGov", "url": "https:\/\/www.usa.gov\/volunteer",
+ "urlPingSuffix": "DevEx,5260.1", "displayUrl": "https:\/\/www.usa.gov\/volunteer",
+ "snippet": "Public Service and Volunteer Opportunities. Many federal agencies
+ offer ways you can volunteer: Serve.gov - Sign up to volunteer and create
+ projects.Tool kits are available to help develop your ideas into projects.",
+ "dateLastCrawled": "2018-11-13T09:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-11T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Animal
+ Care and Science | USAGov", "url": "https:\/\/www.usa.gov\/animal-science-careers",
+ "urlPingSuffix": "DevEx,5290.1", "displayUrl": "https:\/\/www.usa.gov\/animal-science-careers",
+ "snippet": "Animal Training Kristen: The training is done, basically, to
+ check every part of their bodies every day without actually being able to
+ touch them. We use training for medical reasons only, there are no special
+ tricks or anything that we ask them for.", "dateLastCrawled": "2018-11-14T04:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Indian
+ Tribes and Resources for Native Americans | USAGov", "url": "https:\/\/www.usa.gov\/tribes",
+ "urlPingSuffix": "DevEx,5305.1", "about": [{"name": "Southern Cherokee Nation
+ of Kentucky"}, {"name": "Native Americans in the United States"}, {"name":
+ "Tribe"}], "displayUrl": "https:\/\/www.usa.gov\/tribes", "snippet": "The
+ U.S. government officially recognizes nearly 600 Indian tribes in the contiguous
+ 48 states and Alaska. These federally recognized tribes are eligible for funding
+ and services from the Bureau of Indian Affairs, either directly or through
+ contracts, grants, or compacts. The Bureau of Indian ...", "dateLastCrawled":
+ "2018-11-16T09:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Jobs and Education for People with Disabilities | USAGov", "url":
+ "https:\/\/www.usa.gov\/disability-jobs-education", "urlPingSuffix": "DevEx,5319.1",
+ "displayUrl": "https:\/\/www.usa.gov\/disability-jobs-education", "snippet":
+ "Jobs and Education for People with Disabilities Learn about employment
+ resources on how to find a government job and prepare for a job interview.
+ You can also find information on employment laws and how to file a workplace
+ harassment or discrimination complaint.", "dateLastCrawled": "2018-11-12T09:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Architecture
+ and Engineering Jobs | USAGov", "url": "https:\/\/www.usa.gov\/architecture-engineering-careers",
+ "urlPingSuffix": "DevEx,5334.1", "displayUrl": "https:\/\/www.usa.gov\/architecture-engineering-careers",
+ "snippet": "Find careers in the architecture and engineering fields.", "dateLastCrawled":
+ "2018-11-15T02:08:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5347.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-11-12T20:24:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:38 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jazz%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1082'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:38 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1A453E9C88FC61A83BD93230892B60BC; path=/; expires=Sat, 14-Dec-2019 22:40:38
+ GMT; domain=bingapis.com
+ - MUIDB=1A453E9C88FC61A83BD93230892B60BC; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:38 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:38 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=349B4C0198D7485D83C6AD977B6E5CDE&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:38 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:38
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=27F2DC0735F16B230955D0AB34266A35; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:38 GMT; domain=bingapis.com
+ - _SS=SID=27F2DC0735F16B230955D0AB34266A35; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - E29411FD738F42DB8B786AE364F61465
+ X-Msedge-Clientid:
+ - 1A453E9C88FC61A83BD93230892B60BC
+ X-Msapi-Userstate:
+ - '2852'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: E29411FD738F42DB8B786AE364F61465 Ref B: CO1EDGE0207 Ref C: 2018-11-19T22:40:38Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:38 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=AFAB2F7B801A461C942A72C0B648F8B5&CID=1A453E9C88FC61A83BD93230892B60BC&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=AFAB2F7B801A461C942A72C0B648F8B5&CID=1A453E9C88FC61A83BD93230892B60BC&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jazz+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5130.1", "totalEstimatedMatches": 4, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Entertainment
+ and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5042.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers",
+ "urlPingSuffix": "DevEx,5058.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-09T16:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Medicare
+ | USAGov", "url": "https:\/\/www.usa.gov\/medicare\/", "urlPingSuffix": "DevEx,5074.1",
+ "about": [{"name": "Medicare"}], "displayUrl": "https:\/\/www.usa.gov\/medicare",
+ "snippet": "Get answers to your questions about Medicare, including how
+ to apply, get a replacement card, and what is Part D for prescription drugs.
+ Also, learn about Medicare coverage when you live outside the U.S.", "dateLastCrawled":
+ "2018-11-12T16:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Lesson Plans | USAGov", "url": "https:\/\/www.usa.gov\/lesson-plans?source=kids",
+ "urlPingSuffix": "DevEx,5088.1", "displayUrl": "https:\/\/www.usa.gov\/lesson-plans?source=kids",
+ "snippet": "Lesson Plans. Find lesson plans, activities and worksheets for
+ your classroom. Explaining Taxes to Kids Lesson Plan. Teach students about
+ the concept of sales tax, state income tax, property tax.", "dateLastCrawled":
+ "2018-11-12T00:33:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:39 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_sitelimit.yml b/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_sitelimit.yml
index 21d34e7560..b54c86fbf4 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_sitelimit.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_for_site_specific_results_using_sitelimit.yml
@@ -1942,4 +1942,2167 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:24:20 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:www.usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3400'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:40 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=01B2641613CE601A3CDA68BA121961A4; path=/; expires=Sat, 14-Dec-2019 22:40:40
+ GMT; domain=bingapis.com
+ - MUIDB=01B2641613CE601A3CDA68BA121961A4; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:40 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:40 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=FFB51A2568264CDEAF567B74BD0A3B9B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:40 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:40
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2A43A4D1306466853A6AA87D31B367AE; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:40 GMT; domain=bingapis.com
+ - _SS=SID=2A43A4D1306466853A6AA87D31B367AE; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BB7E5949A6284785B900E398C08F6AC9
+ X-Msedge-Clientid:
+ - 01B2641613CE601A3CDA68BA121961A4
+ X-Msapi-Userstate:
+ - '0033'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BB7E5949A6284785B900E398C08F6AC9 Ref B: CO1EDGE0316 Ref C: 2018-11-19T22:40:40Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:40 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=B19F70BC1A5A465E94EE4E540B64FCC8&CID=01B2641613CE601A3CDA68BA121961A4&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=B19F70BC1A5A465E94EE4E540B64FCC8&CID=01B2641613CE601A3CDA68BA121961A4&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3awww.usa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5452.1", "totalEstimatedMatches": 70900,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Research Career Fields | USAGov", "url": "https:\/\/www.usa.gov\/jobs-careers",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-careers",
+ "snippet": "Find research information and videos about different career fields.
+ Learn more about other jobs at the Bureau of Labor Statistic’s Occupational
+ Outlook Handbook. Animal Care and Science Find career information about animal
+ science and care. Architecture and Engineering Find careers in the ...", "dateLastCrawled":
+ "2018-11-11T12:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Careers | USAGov", "url": "https:\/\/www.usa.gov\/government-careers",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.usa.gov\/government-careers",
+ "snippet": "It is one of the greatest jobs that you could have. It is thoroughly
+ rewarding. I wanted to become a pilot because my dad''s a pilot and I wanted
+ to be in the military.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "Find out how and where to look for a new job or career, get help
+ if you are unemployed, and more.", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5122.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "Looking for a New Job. Find out how to look for work in the private sector
+ and federal government. Find a Federal Government Job. Learn how to find a
+ job with the federal government.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Entertainment
+ and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Find a Job | USAGov", "url": "https:\/\/www.usa.gov\/find-a-job",
+ "urlPingSuffix": "DevEx,5153.1", "displayUrl": "https:\/\/www.usa.gov\/find-a-job",
+ "snippet": "Find a Job The Ticket to Work program helps 18-to-64-year-old
+ Social Security disability recipients develop job skills to get to a higher
+ standard of living. The program is supportive, free, and voluntary.", "dateLastCrawled":
+ "2018-11-15T13:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Healthcare Doctor (Physician) Doctors treat injuries and sick
+ patients. Doctors examine patients, find out patient''s medical histories
+ and give medications. Nurse. Nurses, also called registered nurses or RNs,
+ take care of sick and injured people.They give medicine, treat wounds and
+ give emotional support to patients and their families.", "dateLastCrawled":
+ "2018-11-15T01:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5182.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Pay and Benefits for Federal Employees | USAGov", "url": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "snippet": "Learn more about pay and benefits for federal employees.", "dateLastCrawled":
+ "2018-11-14T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Local Governments | USAGov", "url": "https:\/\/www.usa.gov\/local-governments",
+ "urlPingSuffix": "DevEx,5212.1", "about": [{"name": "Local government"}],
+ "displayUrl": "https:\/\/www.usa.gov\/local-governments", "snippet": "Find
+ contact information for local governments by state.", "dateLastCrawled": "2018-11-14T19:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Farming,
+ Fishing and Forestry Careers | USAGov", "url": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "urlPingSuffix": "DevEx,5227.1", "displayUrl": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "snippet": "Learn about the careers in farming, fishing and forestry.",
+ "dateLastCrawled": "2018-11-06T19:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5243.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The Founding Fathers, the framers of the U.S. Constitution, wanted
+ to form a government that did not allow one person to have too much control.
+ With this in mind, they wrote the Constitution to provide for a separation
+ of powers, or three separate branches of government. Each branch has its
+ own ...", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Jobs and Education for People with Disabilities | USAGov", "url":
+ "https:\/\/www.usa.gov\/disability-jobs-education", "urlPingSuffix": "DevEx,5257.1",
+ "displayUrl": "https:\/\/www.usa.gov\/disability-jobs-education", "snippet":
+ "Jobs and Education for People with Disabilities Learn about employment
+ resources on how to find a government job and prepare for a job interview.
+ You can also find information on employment laws and how to file a workplace
+ harassment or discrimination complaint.", "dateLastCrawled": "2018-11-12T09:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "A-Z Index
+ of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5273.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Financial Assistance
+ After a Disaster | USAGov", "url": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "snippet": "Financial Assistance After a Disaster Find out how to get emergency
+ financial help from the government if you''ve been the victim of a disaster.
+ This can include disaster unemployment assistance, special home loans for
+ disaster victims, and disaster tax relief.", "dateLastCrawled": "2018-11-14T16:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "U.S.
+ Data and Statistics | USAGov", "url": "https:\/\/www.usa.gov\/statistics",
+ "urlPingSuffix": "DevEx,5305.1", "about": [{"name": "Statistics"}], "displayUrl":
+ "https:\/\/www.usa.gov\/statistics", "snippet": "National Center for Health
+ Statistics is the principal health statistics agency for improving the
+ health of the American people. National Center for Science and Engineering
+ Statistics publishes data on the American science and engineering workforce
+ and the progress of science, technology, engineering, and mathematics (STEM)
+ education in the ...", "dateLastCrawled": "2018-11-15T05:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Retirement
+ | USAGov", "url": "https:\/\/www.usa.gov\/retirement", "urlPingSuffix": "DevEx,5321.1",
+ "displayUrl": "https:\/\/www.usa.gov\/retirement", "snippet": "If you
+ change jobs, keep your savings in the plan or roll them over to another
+ retirement account. Don’t dip into retirement savings early. If you pay
+ someone for investment advice, ask them to confirm in writing that they are
+ “fiduciaries”—meaning they are obliged to work in your best interest.", "dateLastCrawled":
+ "2018-11-12T04:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "urlPingSuffix": "DevEx,5335.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-11T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Business
+ and Financial Careers | USAGov", "url": "https:\/\/www.usa.gov\/business-financial-careers",
+ "urlPingSuffix": "DevEx,5350.1", "displayUrl": "https:\/\/www.usa.gov\/business-financial-careers",
+ "snippet": "Find careers in the business and financial fields. The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.",
+ "dateLastCrawled": "2018-11-15T15:06:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:41 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '66725'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=38147A6610AD691533C176CA117A68CD; path=/; expires=Sat, 14-Dec-2019 22:40:41
+ GMT; domain=bingapis.com
+ - MUIDB=38147A6610AD691533C176CA117A68CD; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:41 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:40 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=9FA41EDAEBE3454A9899ED539A6ECF4F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:40 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:40
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2B8BA2B677226FDC00C0AE1A76F56E25; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:41 GMT; domain=bingapis.com
+ - _SS=SID=2B8BA2B677226FDC00C0AE1A76F56E25; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - D629DE46D76D4DF9B4E0E9EA01CEC4D5
+ X-Msedge-Clientid:
+ - 38147A6610AD691533C176CA117A68CD
+ X-Msapi-Userstate:
+ - ad9d
+ X-Msedge-Ref:
+ - 'Ref A: D629DE46D76D4DF9B4E0E9EA01CEC4D5 Ref B: CO1EDGE0512 Ref C: 2018-11-19T22:40:41Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:40 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=2E70AF73A07D41E581F8F4A9A948AE67&CID=38147A6610AD691533C176CA117A68CD&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=2E70AF73A07D41E581F8F4A9A948AE67&CID=38147A6610AD691533C176CA117A68CD&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=jobs%20(site:.gov)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5186.1", "totalEstimatedMatches": 126, "nextOffset":
+ 20, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=2DE1398FAA9526303BAE7C1267CD7DB4918F004D&simid=608013075186123697",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Virginia Jobs", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.AIGFeteR54KszBGdtkt87wHaFJ&pid=Api",
+ "datePublished": "2018-10-08T23:02:00.0000000Z", "contentUrl": "http:\/\/jobs.virginia.gov\/images\/people.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/jobs.virginia.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "49581 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "jobs.virginia.gov", "width": 512, "height":
+ 356, "thumbnail": {"width": 474, "height": 329}, "imageInsightsToken": "ccid_AIGFeteR*mid_2DE1398FAA9526303BAE7C1267CD7DB4918F004D*simid_608013075186123697",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "2DE1398FAA9526303BAE7C1267CD7DB4918F004D", "accentColor": "9B8830"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=17611597FDFB36DB2F8A893F12BEEE0A0512966F&simid=608048199398264702",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "Job Opportunities - District
+ Court of Guam", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.iwh6nih6vYJcmDEccMy3PgHaEg&pid=Api",
+ "datePublished": "2016-11-04T13:54:00.0000000Z", "contentUrl": "http:\/\/www.gud.uscourts.gov\/sites\/default\/files\/dreamstime_m_21912762.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/www.gud.uscourts.gov\/public\/jobs-opportunities",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "827132 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.gud.uscourts.gov\/public\/jobs-opportunities",
+ "width": 2218, "height": 1351, "thumbnail": {"width": 474, "height": 288},
+ "imageInsightsToken": "ccid_iwh6nih6*mid_17611597FDFB36DB2F8A893F12BEEE0A0512966F*simid_608048199398264702",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "17611597FDFB36DB2F8A893F12BEEE0A0512966F", "accentColor": "C61D05"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=32A8D8BC5FD3D924E0450C83F7EC7940D11530D2&simid=608011743704385556",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Creating Connecticut Jobs
+ | Connecticut House Democrats", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.Uu0tpbqd5FB0USrF-YRdFAHaE7&pid=Api",
+ "datePublished": "2018-07-09T13:37:00.0000000Z", "contentUrl": "http:\/\/www.housedems.ct.gov\/sites\/default\/files\/field\/image\/lets-create-jobs.jpg",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "http:\/\/www.housedems.ct.gov\/article\/creating-Connecticut-jobs",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "125240 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.housedems.ct.gov\/article\/creating-Connecticut-jobs",
+ "width": 1460, "height": 973, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_Uu0tpbqd*mid_32A8D8BC5FD3D924E0450C83F7EC7940D11530D2*simid_608011743704385556",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "32A8D8BC5FD3D924E0450C83F7EC7940D11530D2", "accentColor": "004C80"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=75BD03D62232837F1FA4673DB7924B00329F6DBA&simid=608045167105409439",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Self-employment in the
+ United States : Spotlight on Statistics: U.S. Bureau of Labor Statistics",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.wzh_X8f9FgbdYc4kv50E-wHaEV&pid=Api",
+ "datePublished": "2018-07-28T23:16:00.0000000Z", "contentUrl": "https:\/\/www.bls.gov\/spotlight\/2016\/self-employment-in-the-united-states\/images\/slide1-cover-image.png",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.bls.gov\/spotlight\/2016\/self-employment-in-the-united-states\/home.htm",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "252804 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.bls.gov\/spotlight\/2016\/self-employment-in-the-united...",
+ "width": 600, "height": 351, "thumbnail": {"width": 474, "height": 277}, "imageInsightsToken":
+ "ccid_wzh\/X8f9*mid_75BD03D62232837F1FA4673DB7924B00329F6DBA*simid_608045167105409439",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "75BD03D62232837F1FA4673DB7924B00329F6DBA", "accentColor": "C2AB09"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A38468C9B05A1C41078CADDCDBE891AA77838DED&simid=608055582386818513",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Bost Responds to Dismal
+ March Jobs Report | Congressman Mike Bost", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.Ma7dAwcJJKP2NMwFJ2NqKgHaFj&pid=Api",
+ "datePublished": "2015-04-04T14:41:00.0000000Z", "contentUrl": "https:\/\/bost.house.gov\/sites\/bost.house.gov\/files\/featured_image\/Jobs%20Graphic.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/bost.house.gov\/media-center\/press-releases\/bost-responds-dismal-march-jobs-report",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "80295 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/bost.house.gov\/media-center\/press-releases\/bost-responds...",
+ "width": 800, "height": 600, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_Ma7dAwcJ*mid_A38468C9B05A1C41078CADDCDBE891AA77838DED*simid_608055582386818513",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A38468C9B05A1C41078CADDCDBE891AA77838DED", "accentColor": "B91212"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=FC3474765658F91852B8592EE0FB3109F0491A34&simid=608055273144977490",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "HR Home", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.gcmzJmP6gX7a-TWZEnsbOwHaE7&pid=Api",
+ "datePublished": "2018-07-18T01:52:00.0000000Z", "contentUrl": "http:\/\/cms.sbcounty.gov\/portals\/54\/Images\/executive-hr-jobs.jpg?ver=2015-06-11-101957-990",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.sbcounty.gov\/hr\/",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "1362664 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sbcounty.gov\/hr", "width": 1698, "height":
+ 1131, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken": "ccid_gcmzJmP6*mid_FC3474765658F91852B8592EE0FB3109F0491A34*simid_608055273144977490",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "FC3474765658F91852B8592EE0FB3109F0491A34", "accentColor": "404B5B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=9855F8CBE1D5E5E3C4CF81E6DF9311C6DE951EA6&simid=607992420636690276",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "Careers.ohio.gov", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.BE66poTUEYIPuw7csMzNpwHaIP&pid=Api",
+ "datePublished": "2010-02-06T06:31:00.0000000Z", "contentUrl": "http:\/\/careers.ohio.gov\/portals\/0\/images\/omj_com_r_2color.png",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/careers.ohio.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "22287 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "careers.ohio.gov", "width": 603, "height": 671,
+ "thumbnail": {"width": 474, "height": 527}, "imageInsightsToken": "ccid_BE66poTU*mid_9855F8CBE1D5E5E3C4CF81E6DF9311C6DE951EA6*simid_607992420636690276",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "9855F8CBE1D5E5E3C4CF81E6DF9311C6DE951EA6", "accentColor": "B9122B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A1C25B0DFE284D5FFAFC7974AFD0D5C37BE0B138&simid=608001783647308586",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "Jobs", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.EhO2T0yVXKihuDI07DZ6hQHaDt&pid=Api",
+ "datePublished": "2018-05-21T15:54:00.0000000Z", "contentUrl": "http:\/\/hopewellva.gov\/wp-content\/uploads\/2017\/03\/jobs.png",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/hopewellva.gov\/jobs\/",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "415247 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "hopewellva.gov\/jobs", "width": 2000, "height":
+ 1000, "thumbnail": {"width": 474, "height": 237}, "imageInsightsToken": "ccid_EhO2T0yV*mid_A1C25B0DFE284D5FFAFC7974AFD0D5C37BE0B138*simid_608001783647308586",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A1C25B0DFE284D5FFAFC7974AFD0D5C37BE0B138", "accentColor": "AB2023"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=4D1B2AD2832E82E31F8804D45CA8075D3A8D8187&simid=608023842622931357",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Summer Jobs | Mayor''s
+ Office of Employment Development", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.SnlLf2J2psSz1yK0kyviJQHaDd&pid=Api",
+ "datePublished": "2017-09-10T15:25:00.0000000Z", "contentUrl": "http:\/\/moed.baltimorecity.gov\/sites\/default\/files\/YouthWorks_logo_0.jpg",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/moed.baltimorecity.gov\/youth-services\/summer-jobs",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "352950 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "moed.baltimorecity.gov\/youth-services\/summer-jobs",
+ "width": 1753, "height": 821, "thumbnail": {"width": 474, "height": 221},
+ "imageInsightsToken": "ccid_SnlLf2J2*mid_4D1B2AD2832E82E31F8804D45CA8075D3A8D8187*simid_608023842622931357",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "4D1B2AD2832E82E31F8804D45CA8075D3A8D8187", "accentColor": "B96912"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A94109F55094A29BFC715C6F5A1F8FC4DFABB320&simid=608039609473566595",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "Careers at CDC | Jobs |
+ CDC", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.FLG8Psw85voXFnp_cfmM7wHaCs&pid=Api",
+ "datePublished": "2014-03-22T00:26:00.0000000Z", "contentUrl": "https:\/\/tbcdn.talentbrew.com\/company\/250\/v1_0\/img\/hero-home.jpg",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "https:\/\/jobs.cdc.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "96040 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/jobs.cdc.gov", "width": 936, "height":
+ 340, "thumbnail": {"width": 474, "height": 172}, "imageInsightsToken": "ccid_FLG8Psw8*mid_A94109F55094A29BFC715C6F5A1F8FC4DFABB320*simid_608039609473566595",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A94109F55094A29BFC715C6F5A1F8FC4DFABB320", "accentColor": "2F6D89"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=1DC882D9E1FF5CB05ED2573B8B35A96D2D7D776D&simid=608014419510889656",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "Benefits", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.9YeGpDxpifJPuMShu48pPwHaHa&pid=Api",
+ "datePublished": "2014-08-28T08:01:00.0000000Z", "contentUrl": "http:\/\/statejobs.nebraska.gov\/images\/2015-statejobs-logo-square109x109.png?crc=444313693",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "http:\/\/www.statejobs.nebraska.gov\/benefits.html",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "9214 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "www.statejobs.nebraska.gov\/benefits.html",
+ "width": 275, "height": 275, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_9YeGpDxp*mid_1DC882D9E1FF5CB05ED2573B8B35A96D2D7D776D*simid_608014419510889656",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "1DC882D9E1FF5CB05ED2573B8B35A96D2D7D776D", "accentColor": "B11A27"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=C6E8C09DD9CFCE0C16803B8FAD924FDCF9BACC04&simid=608040683205103015",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "DHS Jobs", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.9SX-kml9FX2P_DKVGxBNRAHaCV&pid=Api",
+ "datePublished": "2016-12-06T04:21:00.0000000Z", "contentUrl": "http:\/\/dhsjobs.dhs.ga.gov\/Public\/Images\/DHSJobsHeaderImage.jpg",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "http:\/\/dhsjobs.dhs.ga.gov\/Public\/Home",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "657300 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "dhsjobs.dhs.ga.gov\/Public\/Home", "width":
+ 1900, "height": 600, "thumbnail": {"width": 474, "height": 149}, "imageInsightsToken":
+ "ccid_9SX+kml9*mid_C6E8C09DD9CFCE0C16803B8FAD924FDCF9BACC04*simid_608040683205103015",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "C6E8C09DD9CFCE0C16803B8FAD924FDCF9BACC04", "accentColor": "416982"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=EA28A0A31392A31745C75F379491095A0C11DC74&simid=608007139471592907",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "CTMD: Employment Opportunities",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP._yKUnQtvMoerWM-1RKtTpwHaBc&pid=Api",
+ "datePublished": "2018-07-03T03:29:00.0000000Z", "contentUrl": "http:\/\/www.ct.gov\/mil\/lib\/mil\/CTMD_Jobs.jpg",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "http:\/\/www.ct.gov\/mil\/cwp\/view.asp?a=1347&Q=257224&milNav=%7C",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "42915 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.ct.gov\/mil\/cwp\/view.asp?a=1347&Q=257224&milNav=|",
+ "width": 1158, "height": 225, "thumbnail": {"width": 474, "height": 92}, "imageInsightsToken":
+ "ccid_\/yKUnQtv*mid_EA28A0A31392A31745C75F379491095A0C11DC74*simid_608007139471592907",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "EA28A0A31392A31745C75F379491095A0C11DC74", "accentColor": "12401A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=516C83F517F5EF88FEF919CACD659976670144D8&simid=608004712844165638",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Forensic Science - Career
+ Opportunities | Police | AustinTexas.gov - The Official Website of the ...",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.NKkjqYrg_Cfr5iimkAl31wHaE8&pid=Api",
+ "datePublished": "2018-07-07T13:32:00.0000000Z", "contentUrl": "https:\/\/www.austintexas.gov\/sites\/default\/files\/files\/Police\/IMG_1201.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "https:\/\/www.austintexas.gov\/page\/forensics-career-opportunities",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "81908 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.austintexas.gov\/page\/forensics-career-opportunities",
+ "width": 1024, "height": 683, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_NKkjqYrg*mid_516C83F517F5EF88FEF919CACD659976670144D8*simid_608004712844165638",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "516C83F517F5EF88FEF919CACD659976670144D8", "accentColor": "2D3F68"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=F75E554BF08DD1AC9688D4E1D670DA8F91EE4227&simid=608048263824805584",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "CDC Global Health - South
+ Africa - Jobs and Opportunities", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.jdYxW1JZoHcLJs4FiXUddwHaE8&pid=Api",
+ "datePublished": "2018-07-11T20:44:00.0000000Z", "contentUrl": "https:\/\/www.cdc.gov\/globalhealth\/countries\/southafrica\/images\/south-africa-slogan.jpg",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/www.cdc.gov\/globalhealth\/countries\/southafrica\/opportunities\/default.htm",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "1483250 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cdc.gov\/globalhealth\/countries\/southafrica...",
+ "width": 3888, "height": 2592, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_jdYxW1JZ*mid_F75E554BF08DD1AC9688D4E1D670DA8F91EE4227*simid_608048263824805584",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "F75E554BF08DD1AC9688D4E1D670DA8F91EE4227", "accentColor": "694037"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=095BDF5C34E7F7C53F7C18AAA817CD0101B29DE0&simid=608054053387372147",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "Education level and jobs:
+ Opportunities by state : Career Outlook: U.S. Bureau of Labor Statistics",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.cwmnLXcq7xyJB4Vj141W_AHaE6&pid=Api",
+ "datePublished": "2018-10-07T22:20:00.0000000Z", "contentUrl": "https:\/\/www.bls.gov\/careeroutlook\/2014\/images\/oes_biochemist2.jpg",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "https:\/\/www.bls.gov\/careeroutlook\/2014\/article\/education-level-and-jobs.htm",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "63602 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.bls.gov\/careeroutlook\/2014\/article\/education-level-and...",
+ "width": 550, "height": 365, "thumbnail": {"width": 474, "height": 314}, "imageInsightsToken":
+ "ccid_cwmnLXcq*mid_095BDF5C34E7F7C53F7C18AAA817CD0101B29DE0*simid_608054053387372147",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "095BDF5C34E7F7C53F7C18AAA817CD0101B29DE0", "accentColor": "2C4C5D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=4AA030D02CF78155D6CAD98968113C97ACDB6191&simid=608008299140810780",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "NC OSHR: Work for North
+ Carolina", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.YroKinTPiEuy9lV3HaDBRQHaFk&pid=Api",
+ "datePublished": "2010-12-01T01:13:00.0000000Z", "contentUrl": "https:\/\/ncoshr.s3.amazonaws.com\/s3fs-public\/styles\/card_photo\/public\/cool_jobs_logo_0.png?itok=IkcV0qb_",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "https:\/\/oshr.nc.gov\/work-for-nc",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "66169 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/oshr.nc.gov\/work-for-nc", "width":
+ 500, "height": 376, "thumbnail": {"width": 474, "height": 356}, "imageInsightsToken":
+ "ccid_YroKinTP*mid_4AA030D02CF78155D6CAD98968113C97ACDB6191*simid_608008299140810780",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "4AA030D02CF78155D6CAD98968113C97ACDB6191", "accentColor": "C7A904"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=7047CBBB022DC63803C25D71F82773D87B882E2C&simid=608052490007416432",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "Careers", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.4fzVK9upjp2RBheObJqYngHaE7&pid=Api",
+ "datePublished": "2010-02-06T04:22:00.0000000Z", "contentUrl": "http:\/\/www.mdt.mt.gov\/jobs\/images\/careerSign.jpg",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "http:\/\/www.mdt.mt.gov\/jobs\/",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "85426 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.mdt.mt.gov\/jobs", "width": 500, "height":
+ 333, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken": "ccid_4fzVK9up*mid_7047CBBB022DC63803C25D71F82773D87B882E2C*simid_608052490007416432",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7047CBBB022DC63803C25D71F82773D87B882E2C", "accentColor": "CA3A01"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=812D28B472C26416F0B1B0B04B82E797508A6C59&simid=608002427893973766",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "Missouri Job Center Branson
+ | Springfield, MO - Official Website", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.ty35OXizqTJa7BJtn5wriQHaHa&pid=Api",
+ "datePublished": "2017-02-09T06:21:00.0000000Z", "contentUrl": "http:\/\/www.springfieldmo.gov\/ImageRepository\/Document?documentID=27089",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "http:\/\/www.springfieldmo.gov\/3423\/Missouri-Job-Center-Branson",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "19268 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.springfieldmo.gov\/3423\/Missouri-Job-Center-Branson",
+ "width": 326, "height": 326, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_ty35OXiz*mid_812D28B472C26416F0B1B0B04B82E797508A6C59*simid_608002427893973766",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "812D28B472C26416F0B1B0B04B82E797508A6C59", "accentColor": "81161B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A44FB8E5548626891178914240F30C905C2E9C63&simid=608032269335987155",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "Department of Workforce
+ Services", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.f9TFiX4NZ3R6eb4EwtqUGQHaFC&pid=Api",
+ "datePublished": "2018-03-18T11:55:00.0000000Z", "contentUrl": "https:\/\/jobs.utah.gov\/images\/home\/jobs2.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/jobs.utah.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "492984 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/jobs.utah.gov", "width": 2397, "height":
+ 1630, "thumbnail": {"width": 474, "height": 322}, "imageInsightsToken": "ccid_f9TFiX4N*mid_A44FB8E5548626891178914240F30C905C2E9C63*simid_608032269335987155",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A44FB8E5548626891178914240F30C905C2E9C63", "accentColor": "C60E05"}],
+ "queryExpansions": [{"text": "Steve Jobs", "displayText": "Steve", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Steve+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Steve%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5190.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Steve+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Steve%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Steve+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jobs Spanish", "displayText": "Spanish", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Jobs+Spanish&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Jobs+Spanish&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Jobs+Spanish&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "American Jobs", "displayText": "American", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=American+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22American%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=American+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22American%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=American+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fantastic Job", "displayText": "Fantastic", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Fantastic+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fantastic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Fantastic+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fantastic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Fantastic+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Awesome Job", "displayText": "Awesome", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Awesome+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Awesome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Awesome+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Awesome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Awesome+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nice Job", "displayText": "Nice", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nice+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nice%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nice+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nice%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Nice+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "You Had One Job", "displayText": "You Had One", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=You+Had+One+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22You+Had+One%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=You+Had+One+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22You+Had+One%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=You+Had+One+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Interview", "displayText": "Interview", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Interview&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Interview%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Interview&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Interview%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Job+Interview&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Search", "displayText": "Search", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Search&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Search%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Search&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Search%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Search&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Classroom Jobs", "displayText": "Classroom", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Classroom+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classroom%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Classroom+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classroom%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Classroom+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Desk Job", "displayText": "Desk", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Desk+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Desk%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Desk+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Desk%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Desk+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Kitchen Job", "displayText": "Kitchen", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Kitchen+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Kitchen+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Kitchen+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "I Love My Job", "displayText": "I Love My", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=I+Love+My+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22I+Love+My%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=I+Love+My+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22I+Love+My%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=I+Love+My+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Dream Job", "displayText": "Dream", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Dream+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dream%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Dream+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dream%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Dream+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Application", "displayText": "Application", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Job+Application&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Application%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Application&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Application%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Application&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Description", "displayText": "Description", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Job+Description&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Description%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Description&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Description%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Description&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nose Job", "displayText": "Nose", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nose+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nose%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nose+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nose%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Nose+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Excellent Job", "displayText": "Excellent", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Excellent+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Excellent%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Excellent+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Excellent%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Excellent+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Amazing Job", "displayText": "Amazing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Amazing+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Amazing+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Amazing+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ideal Job", "displayText": "Ideal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ideal+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ideal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Ideal+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ideal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Ideal+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Get Job", "displayText": "Get", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Get+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Get%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Get+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Get%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Get+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Need Job", "displayText": "Need", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Need+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Need%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Need+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Need%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Need+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Got Job", "displayText": "Got", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Got+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Got%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Got+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Got%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Got+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Openings", "displayText": "Openings", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Openings&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Openings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Openings&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Openings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Job+Openings&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Vacancy", "displayText": "Vacancy", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Vacancy&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Vacancy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Vacancy&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Vacancy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Job+Vacancy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Employment", "displayText": "Employment", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Employment&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Employment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Employment&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Employment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Employment&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sleeping Job", "displayText": "Sleeping", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sleeping+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sleeping%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sleeping+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sleeping%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Sleeping+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Chart", "displayText": "Chart", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Chart&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chart%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Chart&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chart%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Chart&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Security", "displayText": "Security", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Security&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Security&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Security&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Dirty Jobs", "displayText": "Dirty", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Dirty+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dirty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Dirty+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dirty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Dirty+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Fair", "displayText": "Fair", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Fair&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Fair&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Fair&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Posting", "displayText": "Posting", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Posting&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posting%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Posting&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posting%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Posting&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Satisfaction", "displayText": "Satisfaction", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Job+Satisfaction&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Satisfaction%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Satisfaction&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Satisfaction%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Satisfaction&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Apple Jobs", "displayText": "Apple", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Apple+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Apple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Apple+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Apple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Apple+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Banana Job", "displayText": "Banana", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Banana+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Banana%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Banana+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Banana%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Banana+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nut Job", "displayText": "Nut", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nut+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nut%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nut+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nut%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Nut+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Summer Jobs", "displayText": "Summer", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Summer+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Summer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Summer+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Summer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Summer+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Resume", "displayText": "Resume", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Resume&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Resume%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Resume&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Resume%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Job+Resume&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "First Job", "displayText": "First", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=First+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22First%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=First+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22First%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=First+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Office Job", "displayText": "Office", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Office+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Office+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Office+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "jobs", "suggestions": []}, {"pivot": "(site:.gov)",
+ "suggestions": []}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:41 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '66725'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2BAA94A9AFE46D9D2E6C9805AE336C96; path=/; expires=Sat, 14-Dec-2019 22:40:41
+ GMT; domain=bingapis.com
+ - MUIDB=2BAA94A9AFE46D9D2E6C9805AE336C96; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:41 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:41 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CAC2AB25B8754A349626B81258DD2FC9&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:41 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:41
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2ABF352EC5AF69AF24E83982C4786861; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:41 GMT; domain=bingapis.com
+ - _SS=SID=2ABF352EC5AF69AF24E83982C4786861; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 6FD68C4A6E854543ADC1CA2D3B4DAB97
+ X-Msedge-Clientid:
+ - 2BAA94A9AFE46D9D2E6C9805AE336C96
+ X-Msapi-Userstate:
+ - '0376'
+ X-Msedge-Ref:
+ - 'Ref A: 6FD68C4A6E854543ADC1CA2D3B4DAB97 Ref B: CO1EDGE0108 Ref C: 2018-11-19T22:40:41Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:41 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E9F277A8588D4A28A1D923143647426E&CID=2BAA94A9AFE46D9D2E6C9805AE336C96&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E9F277A8588D4A28A1D923143647426E&CID=2BAA94A9AFE46D9D2E6C9805AE336C96&Type=Event.CPT&DATA=0"},
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=jobs%20(site:.gov)&FORM=OIIARP",
+ "webSearchUrlPingSuffix": "DevEx,5186.1", "totalEstimatedMatches": 126, "nextOffset":
+ 20, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=2DE1398FAA9526303BAE7C1267CD7DB4918F004D&simid=608013075186123697",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Virginia Jobs", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.AIGFeteR54KszBGdtkt87wHaFJ&pid=Api",
+ "datePublished": "2018-10-08T23:02:00.0000000Z", "contentUrl": "http:\/\/jobs.virginia.gov\/images\/people.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/jobs.virginia.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "49581 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "jobs.virginia.gov", "width": 512, "height":
+ 356, "thumbnail": {"width": 474, "height": 329}, "imageInsightsToken": "ccid_AIGFeteR*mid_2DE1398FAA9526303BAE7C1267CD7DB4918F004D*simid_608013075186123697",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "2DE1398FAA9526303BAE7C1267CD7DB4918F004D", "accentColor": "9B8830"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=17611597FDFB36DB2F8A893F12BEEE0A0512966F&simid=608048199398264702",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "Job Opportunities - District
+ Court of Guam", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.iwh6nih6vYJcmDEccMy3PgHaEg&pid=Api",
+ "datePublished": "2016-11-04T13:54:00.0000000Z", "contentUrl": "http:\/\/www.gud.uscourts.gov\/sites\/default\/files\/dreamstime_m_21912762.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/www.gud.uscourts.gov\/public\/jobs-opportunities",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "827132 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.gud.uscourts.gov\/public\/jobs-opportunities",
+ "width": 2218, "height": 1351, "thumbnail": {"width": 474, "height": 288},
+ "imageInsightsToken": "ccid_iwh6nih6*mid_17611597FDFB36DB2F8A893F12BEEE0A0512966F*simid_608048199398264702",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "17611597FDFB36DB2F8A893F12BEEE0A0512966F", "accentColor": "C61D05"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=32A8D8BC5FD3D924E0450C83F7EC7940D11530D2&simid=608011743704385556",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Creating Connecticut Jobs
+ | Connecticut House Democrats", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.Uu0tpbqd5FB0USrF-YRdFAHaE7&pid=Api",
+ "datePublished": "2018-07-09T13:37:00.0000000Z", "contentUrl": "http:\/\/www.housedems.ct.gov\/sites\/default\/files\/field\/image\/lets-create-jobs.jpg",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "http:\/\/www.housedems.ct.gov\/article\/creating-Connecticut-jobs",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "125240 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.housedems.ct.gov\/article\/creating-Connecticut-jobs",
+ "width": 1460, "height": 973, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_Uu0tpbqd*mid_32A8D8BC5FD3D924E0450C83F7EC7940D11530D2*simid_608011743704385556",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "32A8D8BC5FD3D924E0450C83F7EC7940D11530D2", "accentColor": "004C80"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=75BD03D62232837F1FA4673DB7924B00329F6DBA&simid=608045167105409439",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Self-employment in the
+ United States : Spotlight on Statistics: U.S. Bureau of Labor Statistics",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.wzh_X8f9FgbdYc4kv50E-wHaEV&pid=Api",
+ "datePublished": "2018-07-28T23:16:00.0000000Z", "contentUrl": "https:\/\/www.bls.gov\/spotlight\/2016\/self-employment-in-the-united-states\/images\/slide1-cover-image.png",
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.bls.gov\/spotlight\/2016\/self-employment-in-the-united-states\/home.htm",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "252804 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/www.bls.gov\/spotlight\/2016\/self-employment-in-the-united...",
+ "width": 600, "height": 351, "thumbnail": {"width": 474, "height": 277}, "imageInsightsToken":
+ "ccid_wzh\/X8f9*mid_75BD03D62232837F1FA4673DB7924B00329F6DBA*simid_608045167105409439",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "75BD03D62232837F1FA4673DB7924B00329F6DBA", "accentColor": "C2AB09"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A38468C9B05A1C41078CADDCDBE891AA77838DED&simid=608055582386818513",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Bost Responds to Dismal
+ March Jobs Report | Congressman Mike Bost", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.Ma7dAwcJJKP2NMwFJ2NqKgHaFj&pid=Api",
+ "datePublished": "2015-04-04T14:41:00.0000000Z", "contentUrl": "https:\/\/bost.house.gov\/sites\/bost.house.gov\/files\/featured_image\/Jobs%20Graphic.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/bost.house.gov\/media-center\/press-releases\/bost-responds-dismal-march-jobs-report",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "80295 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/bost.house.gov\/media-center\/press-releases\/bost-responds...",
+ "width": 800, "height": 600, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_Ma7dAwcJ*mid_A38468C9B05A1C41078CADDCDBE891AA77838DED*simid_608055582386818513",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A38468C9B05A1C41078CADDCDBE891AA77838DED", "accentColor": "B91212"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=FC3474765658F91852B8592EE0FB3109F0491A34&simid=608055273144977490",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "HR Home", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.gcmzJmP6gX7a-TWZEnsbOwHaE7&pid=Api",
+ "datePublished": "2018-07-18T01:52:00.0000000Z", "contentUrl": "http:\/\/cms.sbcounty.gov\/portals\/54\/Images\/executive-hr-jobs.jpg?ver=2015-06-11-101957-990",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.sbcounty.gov\/hr\/",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "1362664 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.sbcounty.gov\/hr", "width": 1698, "height":
+ 1131, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken": "ccid_gcmzJmP6*mid_FC3474765658F91852B8592EE0FB3109F0491A34*simid_608055273144977490",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "FC3474765658F91852B8592EE0FB3109F0491A34", "accentColor": "404B5B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=9855F8CBE1D5E5E3C4CF81E6DF9311C6DE951EA6&simid=607992420636690276",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "Careers.ohio.gov", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.BE66poTUEYIPuw7csMzNpwHaIP&pid=Api",
+ "datePublished": "2010-02-06T06:31:00.0000000Z", "contentUrl": "http:\/\/careers.ohio.gov\/portals\/0\/images\/omj_com_r_2color.png",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/careers.ohio.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "22287 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "careers.ohio.gov", "width": 603, "height": 671,
+ "thumbnail": {"width": 474, "height": 527}, "imageInsightsToken": "ccid_BE66poTU*mid_9855F8CBE1D5E5E3C4CF81E6DF9311C6DE951EA6*simid_607992420636690276",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "9855F8CBE1D5E5E3C4CF81E6DF9311C6DE951EA6", "accentColor": "B9122B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A1C25B0DFE284D5FFAFC7974AFD0D5C37BE0B138&simid=608001783647308586",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "Jobs", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.EhO2T0yVXKihuDI07DZ6hQHaDt&pid=Api",
+ "datePublished": "2018-05-21T15:54:00.0000000Z", "contentUrl": "http:\/\/hopewellva.gov\/wp-content\/uploads\/2017\/03\/jobs.png",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/hopewellva.gov\/jobs\/",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "415247 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "hopewellva.gov\/jobs", "width": 2000, "height":
+ 1000, "thumbnail": {"width": 474, "height": 237}, "imageInsightsToken": "ccid_EhO2T0yV*mid_A1C25B0DFE284D5FFAFC7974AFD0D5C37BE0B138*simid_608001783647308586",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A1C25B0DFE284D5FFAFC7974AFD0D5C37BE0B138", "accentColor": "AB2023"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=4D1B2AD2832E82E31F8804D45CA8075D3A8D8187&simid=608023842622931357",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Summer Jobs | Mayor''s
+ Office of Employment Development", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.SnlLf2J2psSz1yK0kyviJQHaDd&pid=Api",
+ "datePublished": "2017-09-10T15:25:00.0000000Z", "contentUrl": "http:\/\/moed.baltimorecity.gov\/sites\/default\/files\/YouthWorks_logo_0.jpg",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/moed.baltimorecity.gov\/youth-services\/summer-jobs",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "352950 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "moed.baltimorecity.gov\/youth-services\/summer-jobs",
+ "width": 1753, "height": 821, "thumbnail": {"width": 474, "height": 221},
+ "imageInsightsToken": "ccid_SnlLf2J2*mid_4D1B2AD2832E82E31F8804D45CA8075D3A8D8187*simid_608023842622931357",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "4D1B2AD2832E82E31F8804D45CA8075D3A8D8187", "accentColor": "B96912"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A94109F55094A29BFC715C6F5A1F8FC4DFABB320&simid=608039609473566595",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "Careers at CDC | Jobs |
+ CDC", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.FLG8Psw85voXFnp_cfmM7wHaCs&pid=Api",
+ "datePublished": "2014-03-22T00:26:00.0000000Z", "contentUrl": "https:\/\/tbcdn.talentbrew.com\/company\/250\/v1_0\/img\/hero-home.jpg",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "https:\/\/jobs.cdc.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "96040 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/jobs.cdc.gov", "width": 936, "height":
+ 340, "thumbnail": {"width": 474, "height": 172}, "imageInsightsToken": "ccid_FLG8Psw8*mid_A94109F55094A29BFC715C6F5A1F8FC4DFABB320*simid_608039609473566595",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A94109F55094A29BFC715C6F5A1F8FC4DFABB320", "accentColor": "2F6D89"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=1DC882D9E1FF5CB05ED2573B8B35A96D2D7D776D&simid=608014419510889656",
+ "webSearchUrlPingSuffix": "DevEx,5085.1", "name": "Benefits", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.9YeGpDxpifJPuMShu48pPwHaHa&pid=Api",
+ "datePublished": "2014-08-28T08:01:00.0000000Z", "contentUrl": "http:\/\/statejobs.nebraska.gov\/images\/2015-statejobs-logo-square109x109.png?crc=444313693",
+ "contentUrlPingSuffix": "DevEx,5087.1", "hostPageUrl": "http:\/\/www.statejobs.nebraska.gov\/benefits.html",
+ "hostPageUrlPingSuffix": "DevEx,5086.1", "contentSize": "9214 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "www.statejobs.nebraska.gov\/benefits.html",
+ "width": 275, "height": 275, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_9YeGpDxp*mid_1DC882D9E1FF5CB05ED2573B8B35A96D2D7D776D*simid_608014419510889656",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "1DC882D9E1FF5CB05ED2573B8B35A96D2D7D776D", "accentColor": "B11A27"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=C6E8C09DD9CFCE0C16803B8FAD924FDCF9BACC04&simid=608040683205103015",
+ "webSearchUrlPingSuffix": "DevEx,5091.1", "name": "DHS Jobs", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.9SX-kml9FX2P_DKVGxBNRAHaCV&pid=Api",
+ "datePublished": "2016-12-06T04:21:00.0000000Z", "contentUrl": "http:\/\/dhsjobs.dhs.ga.gov\/Public\/Images\/DHSJobsHeaderImage.jpg",
+ "contentUrlPingSuffix": "DevEx,5093.1", "hostPageUrl": "http:\/\/dhsjobs.dhs.ga.gov\/Public\/Home",
+ "hostPageUrlPingSuffix": "DevEx,5092.1", "contentSize": "657300 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "dhsjobs.dhs.ga.gov\/Public\/Home", "width":
+ 1900, "height": 600, "thumbnail": {"width": 474, "height": 149}, "imageInsightsToken":
+ "ccid_9SX+kml9*mid_C6E8C09DD9CFCE0C16803B8FAD924FDCF9BACC04*simid_608040683205103015",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "C6E8C09DD9CFCE0C16803B8FAD924FDCF9BACC04", "accentColor": "416982"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=EA28A0A31392A31745C75F379491095A0C11DC74&simid=608007139471592907",
+ "webSearchUrlPingSuffix": "DevEx,5097.1", "name": "CTMD: Employment Opportunities",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP._yKUnQtvMoerWM-1RKtTpwHaBc&pid=Api",
+ "datePublished": "2018-07-03T03:29:00.0000000Z", "contentUrl": "http:\/\/www.ct.gov\/mil\/lib\/mil\/CTMD_Jobs.jpg",
+ "contentUrlPingSuffix": "DevEx,5099.1", "hostPageUrl": "http:\/\/www.ct.gov\/mil\/cwp\/view.asp?a=1347&Q=257224&milNav=%7C",
+ "hostPageUrlPingSuffix": "DevEx,5098.1", "contentSize": "42915 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.ct.gov\/mil\/cwp\/view.asp?a=1347&Q=257224&milNav=|",
+ "width": 1158, "height": 225, "thumbnail": {"width": 474, "height": 92}, "imageInsightsToken":
+ "ccid_\/yKUnQtv*mid_EA28A0A31392A31745C75F379491095A0C11DC74*simid_608007139471592907",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "EA28A0A31392A31745C75F379491095A0C11DC74", "accentColor": "12401A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=516C83F517F5EF88FEF919CACD659976670144D8&simid=608004712844165638",
+ "webSearchUrlPingSuffix": "DevEx,5103.1", "name": "Forensic Science - Career
+ Opportunities | Police | AustinTexas.gov - The Official Website of the ...",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.NKkjqYrg_Cfr5iimkAl31wHaE8&pid=Api",
+ "datePublished": "2018-07-07T13:32:00.0000000Z", "contentUrl": "https:\/\/www.austintexas.gov\/sites\/default\/files\/files\/Police\/IMG_1201.jpg",
+ "contentUrlPingSuffix": "DevEx,5105.1", "hostPageUrl": "https:\/\/www.austintexas.gov\/page\/forensics-career-opportunities",
+ "hostPageUrlPingSuffix": "DevEx,5104.1", "contentSize": "81908 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.austintexas.gov\/page\/forensics-career-opportunities",
+ "width": 1024, "height": 683, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_NKkjqYrg*mid_516C83F517F5EF88FEF919CACD659976670144D8*simid_608004712844165638",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "516C83F517F5EF88FEF919CACD659976670144D8", "accentColor": "2D3F68"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=F75E554BF08DD1AC9688D4E1D670DA8F91EE4227&simid=608048263824805584",
+ "webSearchUrlPingSuffix": "DevEx,5109.1", "name": "CDC Global Health - South
+ Africa - Jobs and Opportunities", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.jdYxW1JZoHcLJs4FiXUddwHaE8&pid=Api",
+ "datePublished": "2018-07-11T20:44:00.0000000Z", "contentUrl": "https:\/\/www.cdc.gov\/globalhealth\/countries\/southafrica\/images\/south-africa-slogan.jpg",
+ "contentUrlPingSuffix": "DevEx,5111.1", "hostPageUrl": "https:\/\/www.cdc.gov\/globalhealth\/countries\/southafrica\/opportunities\/default.htm",
+ "hostPageUrlPingSuffix": "DevEx,5110.1", "contentSize": "1483250 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.cdc.gov\/globalhealth\/countries\/southafrica...",
+ "width": 3888, "height": 2592, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_jdYxW1JZ*mid_F75E554BF08DD1AC9688D4E1D670DA8F91EE4227*simid_608048263824805584",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "F75E554BF08DD1AC9688D4E1D670DA8F91EE4227", "accentColor": "694037"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=095BDF5C34E7F7C53F7C18AAA817CD0101B29DE0&simid=608054053387372147",
+ "webSearchUrlPingSuffix": "DevEx,5115.1", "name": "Education level and jobs:
+ Opportunities by state : Career Outlook: U.S. Bureau of Labor Statistics",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.cwmnLXcq7xyJB4Vj141W_AHaE6&pid=Api",
+ "datePublished": "2018-10-07T22:20:00.0000000Z", "contentUrl": "https:\/\/www.bls.gov\/careeroutlook\/2014\/images\/oes_biochemist2.jpg",
+ "contentUrlPingSuffix": "DevEx,5117.1", "hostPageUrl": "https:\/\/www.bls.gov\/careeroutlook\/2014\/article\/education-level-and-jobs.htm",
+ "hostPageUrlPingSuffix": "DevEx,5116.1", "contentSize": "63602 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.bls.gov\/careeroutlook\/2014\/article\/education-level-and...",
+ "width": 550, "height": 365, "thumbnail": {"width": 474, "height": 314}, "imageInsightsToken":
+ "ccid_cwmnLXcq*mid_095BDF5C34E7F7C53F7C18AAA817CD0101B29DE0*simid_608054053387372147",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "095BDF5C34E7F7C53F7C18AAA817CD0101B29DE0", "accentColor": "2C4C5D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=4AA030D02CF78155D6CAD98968113C97ACDB6191&simid=608008299140810780",
+ "webSearchUrlPingSuffix": "DevEx,5121.1", "name": "NC OSHR: Work for North
+ Carolina", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.YroKinTPiEuy9lV3HaDBRQHaFk&pid=Api",
+ "datePublished": "2010-12-01T01:13:00.0000000Z", "contentUrl": "https:\/\/ncoshr.s3.amazonaws.com\/s3fs-public\/styles\/card_photo\/public\/cool_jobs_logo_0.png?itok=IkcV0qb_",
+ "contentUrlPingSuffix": "DevEx,5123.1", "hostPageUrl": "https:\/\/oshr.nc.gov\/work-for-nc",
+ "hostPageUrlPingSuffix": "DevEx,5122.1", "contentSize": "66169 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "https:\/\/oshr.nc.gov\/work-for-nc", "width":
+ 500, "height": 376, "thumbnail": {"width": 474, "height": 356}, "imageInsightsToken":
+ "ccid_YroKinTP*mid_4AA030D02CF78155D6CAD98968113C97ACDB6191*simid_608008299140810780",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "4AA030D02CF78155D6CAD98968113C97ACDB6191", "accentColor": "C7A904"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=7047CBBB022DC63803C25D71F82773D87B882E2C&simid=608052490007416432",
+ "webSearchUrlPingSuffix": "DevEx,5127.1", "name": "Careers", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.4fzVK9upjp2RBheObJqYngHaE7&pid=Api",
+ "datePublished": "2010-02-06T04:22:00.0000000Z", "contentUrl": "http:\/\/www.mdt.mt.gov\/jobs\/images\/careerSign.jpg",
+ "contentUrlPingSuffix": "DevEx,5129.1", "hostPageUrl": "http:\/\/www.mdt.mt.gov\/jobs\/",
+ "hostPageUrlPingSuffix": "DevEx,5128.1", "contentSize": "85426 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.mdt.mt.gov\/jobs", "width": 500, "height":
+ 333, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken": "ccid_4fzVK9up*mid_7047CBBB022DC63803C25D71F82773D87B882E2C*simid_608052490007416432",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "7047CBBB022DC63803C25D71F82773D87B882E2C", "accentColor": "CA3A01"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=812D28B472C26416F0B1B0B04B82E797508A6C59&simid=608002427893973766",
+ "webSearchUrlPingSuffix": "DevEx,5133.1", "name": "Missouri Job Center Branson
+ | Springfield, MO - Official Website", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.ty35OXizqTJa7BJtn5wriQHaHa&pid=Api",
+ "datePublished": "2017-02-09T06:21:00.0000000Z", "contentUrl": "http:\/\/www.springfieldmo.gov\/ImageRepository\/Document?documentID=27089",
+ "contentUrlPingSuffix": "DevEx,5135.1", "hostPageUrl": "http:\/\/www.springfieldmo.gov\/3423\/Missouri-Job-Center-Branson",
+ "hostPageUrlPingSuffix": "DevEx,5134.1", "contentSize": "19268 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.springfieldmo.gov\/3423\/Missouri-Job-Center-Branson",
+ "width": 326, "height": 326, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_ty35OXiz*mid_812D28B472C26416F0B1B0B04B82E797508A6C59*simid_608002427893973766",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "812D28B472C26416F0B1B0B04B82E797508A6C59", "accentColor": "81161B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=jobs+(site%3a.gov)&id=A44FB8E5548626891178914240F30C905C2E9C63&simid=608032269335987155",
+ "webSearchUrlPingSuffix": "DevEx,5139.1", "name": "Department of Workforce
+ Services", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.f9TFiX4NZ3R6eb4EwtqUGQHaFC&pid=Api",
+ "datePublished": "2018-03-18T11:55:00.0000000Z", "contentUrl": "https:\/\/jobs.utah.gov\/images\/home\/jobs2.jpg",
+ "contentUrlPingSuffix": "DevEx,5141.1", "hostPageUrl": "https:\/\/jobs.utah.gov\/",
+ "hostPageUrlPingSuffix": "DevEx,5140.1", "contentSize": "492984 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/jobs.utah.gov", "width": 2397, "height":
+ 1630, "thumbnail": {"width": 474, "height": 322}, "imageInsightsToken": "ccid_f9TFiX4N*mid_A44FB8E5548626891178914240F30C905C2E9C63*simid_608032269335987155",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "A44FB8E5548626891178914240F30C905C2E9C63", "accentColor": "C60E05"}],
+ "queryExpansions": [{"text": "Steve Jobs", "displayText": "Steve", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Steve+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Steve%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5190.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Steve+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Steve%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Steve+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jobs Spanish", "displayText": "Spanish", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Jobs+Spanish&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5192.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Jobs+Spanish&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Jobs+Spanish&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "American Jobs", "displayText": "American", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=American+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22American%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5194.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=American+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22American%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=American+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fantastic Job", "displayText": "Fantastic", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Fantastic+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fantastic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5196.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Fantastic+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fantastic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Fantastic+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Awesome Job", "displayText": "Awesome", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Awesome+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Awesome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5198.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Awesome+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Awesome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Awesome+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nice Job", "displayText": "Nice", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nice+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nice%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5200.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nice+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nice%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Nice+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "You Had One Job", "displayText": "You Had One", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=You+Had+One+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22You+Had+One%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5202.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=You+Had+One+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22You+Had+One%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=You+Had+One+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Interview", "displayText": "Interview", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Interview&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Interview%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5204.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Interview&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Interview%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Job+Interview&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Search", "displayText": "Search", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Search&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Search%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5206.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Search&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Search%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Search&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Classroom Jobs", "displayText": "Classroom", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Classroom+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classroom%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5208.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Classroom+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classroom%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Classroom+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Desk Job", "displayText": "Desk", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Desk+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Desk%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5210.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Desk+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Desk%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Desk+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Kitchen Job", "displayText": "Kitchen", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Kitchen+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5212.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Kitchen+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Kitchen+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "I Love My Job", "displayText": "I Love My", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=I+Love+My+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22I+Love+My%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5214.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=I+Love+My+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22I+Love+My%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=I+Love+My+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Dream Job", "displayText": "Dream", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Dream+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dream%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5216.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Dream+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dream%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Dream+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Application", "displayText": "Application", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Job+Application&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Application%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5218.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Application&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Application%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Application&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Description", "displayText": "Description", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Job+Description&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Description%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5220.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Description&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Description%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Description&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nose Job", "displayText": "Nose", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nose+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nose%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5222.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nose+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nose%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Nose+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Excellent Job", "displayText": "Excellent", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Excellent+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Excellent%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5224.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Excellent+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Excellent%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Excellent+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Amazing Job", "displayText": "Amazing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Amazing+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5226.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Amazing+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Amazing+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ideal Job", "displayText": "Ideal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ideal+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ideal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5228.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Ideal+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ideal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Ideal+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Get Job", "displayText": "Get", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Get+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Get%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Get+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Get%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Get+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Need Job", "displayText": "Need", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Need+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Need%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5232.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Need+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Need%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Need+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Got Job", "displayText": "Got", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Got+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Got%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5234.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Got+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Got%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Got+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Openings", "displayText": "Openings", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Openings&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Openings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5236.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Openings&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Openings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Job+Openings&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Vacancy", "displayText": "Vacancy", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Vacancy&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Vacancy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5238.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Vacancy&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Vacancy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Job+Vacancy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Employment", "displayText": "Employment", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Employment&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Employment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5240.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Employment&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Employment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Employment&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sleeping Job", "displayText": "Sleeping", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sleeping+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sleeping%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5242.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Sleeping+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sleeping%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Sleeping+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Chart", "displayText": "Chart", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Chart&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chart%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5244.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Chart&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chart%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Chart&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Security", "displayText": "Security", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Security&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5246.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Security&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Security&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Dirty Jobs", "displayText": "Dirty", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Dirty+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dirty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5248.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Dirty+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dirty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Dirty+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Fair", "displayText": "Fair", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Fair&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Fair&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Fair&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Posting", "displayText": "Posting", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Posting&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posting%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5252.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Posting&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posting%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Job+Posting&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Satisfaction", "displayText": "Satisfaction", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Job+Satisfaction&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Satisfaction%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5254.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Satisfaction&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Satisfaction%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Job+Satisfaction&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Apple Jobs", "displayText": "Apple", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Apple+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Apple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5256.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Apple+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Apple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Apple+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Banana Job", "displayText": "Banana", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Banana+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Banana%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5258.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Banana+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Banana%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Banana+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nut Job", "displayText": "Nut", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nut+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nut%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5260.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Nut+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nut%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Nut+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Summer Jobs", "displayText": "Summer", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Summer+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Summer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5262.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Summer+Jobs&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Summer%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Summer+Jobs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Resume", "displayText": "Resume", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Resume&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Resume%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5264.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Job+Resume&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Resume%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Job+Resume&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "First Job", "displayText": "First", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=First+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22First%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5266.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=First+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22First%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=First+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Office Job", "displayText": "Office", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Office+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "webSearchUrlPingSuffix": "DevEx,5268.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Office+Job&tq=%7b%22pq%22%3a%22jobs+(site%3a.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22jobs%22%2c%22pv%22%3a%22jobs%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3a.gov)%22%2c%22pv%22%3a%22(site%3a.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Office+Job&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "jobs", "suggestions": []}, {"pivot": "(site:.gov)",
+ "suggestions": []}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:42 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:www.usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3400'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:42 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1EE745D759CA62DB333B497B581D63C0; path=/; expires=Sat, 14-Dec-2019 22:40:42
+ GMT; domain=bingapis.com
+ - MUIDB=1EE745D759CA62DB333B497B581D63C0; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:42 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:42 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C6098252B08F42968638BF42580CB554&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:42 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:42
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=070DFC826814698B0D24F02E69C3684D; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:42 GMT; domain=bingapis.com
+ - _SS=SID=070DFC826814698B0D24F02E69C3684D; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 989DF3B8AEB94F8BA44EFD0FC32F7178
+ X-Msedge-Clientid:
+ - 1EE745D759CA62DB333B497B581D63C0
+ X-Msapi-Userstate:
+ - 92db
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 989DF3B8AEB94F8BA44EFD0FC32F7178 Ref B: CO1EDGE0517 Ref C: 2018-11-19T22:40:42Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:41 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=368F46C1710D41F4AF063379E99E7315&CID=1EE745D759CA62DB333B497B581D63C0&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=368F46C1710D41F4AF063379E99E7315&CID=1EE745D759CA62DB333B497B581D63C0&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3awww.usa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5452.1", "totalEstimatedMatches": 70900,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Research Career Fields | USAGov", "url": "https:\/\/www.usa.gov\/jobs-careers",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-careers",
+ "snippet": "Find research information and videos about different career fields.
+ Learn more about other jobs at the Bureau of Labor Statistic’s Occupational
+ Outlook Handbook. Animal Care and Science Find career information about animal
+ science and care. Architecture and Engineering Find careers in the ...", "dateLastCrawled":
+ "2018-11-11T12:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Careers | USAGov", "url": "https:\/\/www.usa.gov\/government-careers",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.usa.gov\/government-careers",
+ "snippet": "It is one of the greatest jobs that you could have. It is thoroughly
+ rewarding. I wanted to become a pilot because my dad''s a pilot and I wanted
+ to be in the military.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "Find out how and where to look for a new job or career, get help
+ if you are unemployed, and more.", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5122.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "Looking for a New Job. Find out how to look for work in the private sector
+ and federal government. Find a Federal Government Job. Learn how to find a
+ job with the federal government.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Entertainment
+ and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Find a Job | USAGov", "url": "https:\/\/www.usa.gov\/find-a-job",
+ "urlPingSuffix": "DevEx,5153.1", "displayUrl": "https:\/\/www.usa.gov\/find-a-job",
+ "snippet": "Find a Job The Ticket to Work program helps 18-to-64-year-old
+ Social Security disability recipients develop job skills to get to a higher
+ standard of living. The program is supportive, free, and voluntary.", "dateLastCrawled":
+ "2018-11-15T13:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Healthcare Doctor (Physician) Doctors treat injuries and sick
+ patients. Doctors examine patients, find out patient''s medical histories
+ and give medications. Nurse. Nurses, also called registered nurses or RNs,
+ take care of sick and injured people.They give medicine, treat wounds and
+ give emotional support to patients and their families.", "dateLastCrawled":
+ "2018-11-15T01:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5182.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Pay and Benefits for Federal Employees | USAGov", "url": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "snippet": "Learn more about pay and benefits for federal employees.", "dateLastCrawled":
+ "2018-11-14T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Local Governments | USAGov", "url": "https:\/\/www.usa.gov\/local-governments",
+ "urlPingSuffix": "DevEx,5212.1", "about": [{"name": "Local government"}],
+ "displayUrl": "https:\/\/www.usa.gov\/local-governments", "snippet": "Find
+ contact information for local governments by state.", "dateLastCrawled": "2018-11-14T19:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Farming,
+ Fishing and Forestry Careers | USAGov", "url": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "urlPingSuffix": "DevEx,5227.1", "displayUrl": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "snippet": "Learn about the careers in farming, fishing and forestry.",
+ "dateLastCrawled": "2018-11-06T19:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5243.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The Founding Fathers, the framers of the U.S. Constitution, wanted
+ to form a government that did not allow one person to have too much control.
+ With this in mind, they wrote the Constitution to provide for a separation
+ of powers, or three separate branches of government. Each branch has its
+ own ...", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Jobs and Education for People with Disabilities | USAGov", "url":
+ "https:\/\/www.usa.gov\/disability-jobs-education", "urlPingSuffix": "DevEx,5257.1",
+ "displayUrl": "https:\/\/www.usa.gov\/disability-jobs-education", "snippet":
+ "Jobs and Education for People with Disabilities Learn about employment
+ resources on how to find a government job and prepare for a job interview.
+ You can also find information on employment laws and how to file a workplace
+ harassment or discrimination complaint.", "dateLastCrawled": "2018-11-12T09:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "A-Z Index
+ of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5273.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Financial Assistance
+ After a Disaster | USAGov", "url": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "snippet": "Financial Assistance After a Disaster Find out how to get emergency
+ financial help from the government if you''ve been the victim of a disaster.
+ This can include disaster unemployment assistance, special home loans for
+ disaster victims, and disaster tax relief.", "dateLastCrawled": "2018-11-14T16:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "U.S.
+ Data and Statistics | USAGov", "url": "https:\/\/www.usa.gov\/statistics",
+ "urlPingSuffix": "DevEx,5305.1", "about": [{"name": "Statistics"}], "displayUrl":
+ "https:\/\/www.usa.gov\/statistics", "snippet": "National Center for Health
+ Statistics is the principal health statistics agency for improving the
+ health of the American people. National Center for Science and Engineering
+ Statistics publishes data on the American science and engineering workforce
+ and the progress of science, technology, engineering, and mathematics (STEM)
+ education in the ...", "dateLastCrawled": "2018-11-15T05:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Retirement
+ | USAGov", "url": "https:\/\/www.usa.gov\/retirement", "urlPingSuffix": "DevEx,5321.1",
+ "displayUrl": "https:\/\/www.usa.gov\/retirement", "snippet": "If you
+ change jobs, keep your savings in the plan or roll them over to another
+ retirement account. Don’t dip into retirement savings early. If you pay
+ someone for investment advice, ask them to confirm in writing that they are
+ “fiduciaries”—meaning they are obliged to work in your best interest.", "dateLastCrawled":
+ "2018-11-12T04:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "urlPingSuffix": "DevEx,5335.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-11T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Business
+ and Financial Careers | USAGov", "url": "https:\/\/www.usa.gov\/business-financial-careers",
+ "urlPingSuffix": "DevEx,5350.1", "displayUrl": "https:\/\/www.usa.gov\/business-financial-careers",
+ "snippet": "Find careers in the business and financial fields. The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.",
+ "dateLastCrawled": "2018-11-15T15:06:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:42 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:search.gov/blog/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1892'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:43 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0B9AC0CF6A5B68DB106BCC636B8C6902; path=/; expires=Sat, 14-Dec-2019 22:40:43
+ GMT; domain=bingapis.com
+ - MUIDB=0B9AC0CF6A5B68DB106BCC636B8C6902; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:43 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:43 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=B6781556AA754287A68816EE000829AD&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:43 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:43
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3E45BA606FA9662624C2B6CC6E7E6755; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:43 GMT; domain=bingapis.com
+ - _SS=SID=3E45BA606FA9662624C2B6CC6E7E6755; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - A43CFC7D0C5B4DFCAD725F333B41D753
+ X-Msedge-Clientid:
+ - 0B9AC0CF6A5B68DB106BCC636B8C6902
+ X-Msapi-Userstate:
+ - f4f8
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: A43CFC7D0C5B4DFCAD725F333B41D753 Ref B: CO1EDGE0915 Ref C: 2018-11-19T22:40:43Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:43 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=AB9CD53E2E1B4C8CB9766910BB38B1C6&CID=0B9AC0CF6A5B68DB106BCC636B8C6902&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=AB9CD53E2E1B4C8CB9766910BB38B1C6&CID=0B9AC0CF6A5B68DB106BCC636B8C6902&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3asearch.gov%2fblog%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5158.1", "totalEstimatedMatches": 6, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Cache
+ Me If You Can - Search.gov", "url": "https:\/\/search.gov\/blog\/cache.html",
+ "urlPingSuffix": "DevEx,5043.1", "displayUrl": "https:\/\/search.gov\/blog\/cache.html",
+ "snippet": "Most queries (such as jobs, obama, unclaimed money, forms) aren’t
+ unique and are asked by thousands of searchers each day. We cache these so-called
+ short head queries and store them on our servers. Caching helps us speed up
+ the above process because searchers don’t have to wait for us to pull the
+ information from its original source.", "dateLastCrawled": "2018-11-11T15:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Adopting
+ Apache Hadoop in the Federal Government", "url": "https:\/\/search.gov\/blog\/adopting-hadoop.html",
+ "urlPingSuffix": "DevEx,5057.1", "displayUrl": "https:\/\/search.gov\/blog\/adopting-hadoop.html",
+ "snippet": "Background. The United States federal government’s DigitalGov
+ Search program provides hosted search services for government affiliate organizations,
+ shares APIs and web services, and operates the government’s official search
+ engine on USA.gov.DigitalGov Search offers free search services to any federal,
+ state, local, tribal, or territorial government agency.", "dateLastCrawled":
+ "2018-11-05T10:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Our Redesign: Before and After - Search.gov", "url": "https:\/\/search.gov\/blog\/serp-redesign.html",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/search.gov\/blog\/serp-redesign.html",
+ "snippet": "The old format showed jobs in a right-hand column that was often
+ mistaken for an ad and didn’t give searchers the option to see more listings
+ on the results page. Health Topics Here’s the before and after for a search
+ on diabetes on USA.gov.", "dateLastCrawled": "2018-11-02T22:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Search
+ Is the New Big Data", "url": "https:\/\/search.gov\/blog\/search-big-data.html",
+ "urlPingSuffix": "DevEx,5084.1", "displayUrl": "https:\/\/search.gov\/blog\/search-big-data.html",
+ "snippet": "Contribute to our Jobs API, which allows you to tap into a list
+ of current jobs openings with federal, state, and local government agencies.
+ open analytics about-us. Page last reviewed or updated: December 20, 2016.
+ Email us or call us at 202-969-7426. An Official Website of the U.S. Government",
+ "dateLastCrawled": "2018-11-12T22:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Our Open Source Strategy - Search.gov", "url": "https:\/\/search.gov\/blog\/open-source.html",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/search.gov\/blog\/open-source.html",
+ "snippet": "This use of open source has allowed us to experience enormous
+ growth over the past few years. In July 2014 alone, over 23 million searchers
+ received results from our service—a five-fold increase since July 2010. ...
+ The data products for the jobs and recalls code are also open and available
+ for anyone to consume on our Developer hub.", "dateLastCrawled": "2018-11-02T08:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "I Didn''t
+ Try to Grow a Bigger Ox: How I Found Hadoop", "url": "https:\/\/search.gov\/blog\/hadoop-bigger-ox.html",
+ "urlPingSuffix": "DevEx,5110.1", "displayUrl": "https:\/\/search.gov\/blog\/hadoop-bigger-ox.html",
+ "snippet": "A week later, I started pulling out the MySQL jobs and deleting
+ big tables, and that’s been the trend ever since. Over time, I’ve gone on
+ to learn about using custom Ruby mappers in Hive, moving data back and forth
+ between MySQL and Hive with Sqoop, and getting the data into HDFS in real-time
+ with Flume.", "dateLastCrawled": "2018-10-13T09:42:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:43 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:search.gov/blog/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1884'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:43 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3073E2BFE60165901D94EE13E7D66455; path=/; expires=Sat, 14-Dec-2019 22:40:43
+ GMT; domain=bingapis.com
+ - MUIDB=3073E2BFE60165901D94EE13E7D66455; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:43 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:43 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=BBC89BD08186479EAA9EA99B51E1D8F9&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:43 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:43
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3EB98F3B144D6DE82ABA8397159A6CF7; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:43 GMT; domain=bingapis.com
+ - _SS=SID=3EB98F3B144D6DE82ABA8397159A6CF7; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3151F19E18D345BC98DE57E261A04530
+ X-Msedge-Clientid:
+ - 3073E2BFE60165901D94EE13E7D66455
+ X-Msapi-Userstate:
+ - 4b04
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3151F19E18D345BC98DE57E261A04530 Ref B: CO1EDGE0315 Ref C: 2018-11-19T22:40:43Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:43 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8D78E34A5E7142DE89E7EF9C719893F2&CID=3073E2BFE60165901D94EE13E7D66455&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8D78E34A5E7142DE89E7EF9C719893F2&CID=3073E2BFE60165901D94EE13E7D66455&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3asearch.gov%2fblog%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5158.1", "totalEstimatedMatches": 6, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Adopting
+ Apache Hadoop in the Federal Government", "url": "https:\/\/search.gov\/blog\/adopting-hadoop.html",
+ "urlPingSuffix": "DevEx,5043.1", "displayUrl": "https:\/\/search.gov\/blog\/adopting-hadoop.html",
+ "snippet": "Background. The United States federal government’s DigitalGov
+ Search program provides hosted search services for government affiliate organizations,
+ shares APIs and web services, and operates the government’s official search
+ engine on USA.gov.DigitalGov Search offers free search services to any federal,
+ state, local, tribal, or territorial government agency.", "dateLastCrawled":
+ "2018-11-05T10:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Cache Me If You Can - Search.gov", "url": "https:\/\/search.gov\/blog\/cache.html",
+ "urlPingSuffix": "DevEx,5057.1", "displayUrl": "https:\/\/search.gov\/blog\/cache.html",
+ "snippet": "Most queries (such as jobs, obama, unclaimed money, forms) aren’t
+ unique and are asked by thousands of searchers each day. We cache these so-called
+ short head queries and store them on our servers. Caching helps us speed up
+ the above process because searchers don’t have to wait for us to pull the
+ information from its original source.", "dateLastCrawled": "2018-11-11T15:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Our Redesign:
+ Before and After - Search.gov", "url": "https:\/\/search.gov\/blog\/serp-redesign.html",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/search.gov\/blog\/serp-redesign.html",
+ "snippet": "The old format showed jobs in a right-hand column that was often
+ mistaken for an ad and didn’t give searchers the option to see more listings
+ on the results page. Health Topics Here’s the before and after for a search
+ on diabetes on USA.gov.", "dateLastCrawled": "2018-11-02T22:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Our Open
+ Source Strategy - Search.gov", "url": "https:\/\/search.gov\/blog\/open-source.html",
+ "urlPingSuffix": "DevEx,5085.1", "displayUrl": "https:\/\/search.gov\/blog\/open-source.html",
+ "snippet": "This use of open source has allowed us to experience enormous
+ growth over the past few years. In July 2014 alone, over 23 million searchers
+ received results from our service—a five-fold increase since July 2010. ...
+ The data products for the jobs and recalls code are also open and available
+ for anyone to consume on our Developer hub.", "dateLastCrawled": "2018-11-02T08:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Search
+ Is the New Big Data", "url": "https:\/\/search.gov\/blog\/search-big-data.html",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/search.gov\/blog\/search-big-data.html",
+ "snippet": "Contribute to our Jobs API, which allows you to tap into a list
+ of current jobs openings with federal, state, and local government agencies.
+ open analytics about-us. Page last reviewed or updated: December 20, 2016.
+ Email us or call us at 202-969-7426. An Official Website of the U.S. Government",
+ "dateLastCrawled": "2018-11-12T22:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "I Didn''t Try to Grow a Bigger Ox: How I Found Hadoop", "url": "https:\/\/search.gov\/blog\/hadoop-bigger-ox.html",
+ "urlPingSuffix": "DevEx,5110.1", "displayUrl": "https:\/\/search.gov\/blog\/hadoop-bigger-ox.html",
+ "snippet": "A week later, I started pulling out the MySQL jobs and deleting
+ big tables, and that’s been the trend ever since. Over time, I’ve gone on
+ to learn about using custom Ruby mappers in Hive, moving data back and forth
+ between MySQL and Hive with Sqoop, and getting the data into HDFS in real-time
+ with Flume.", "dateLastCrawled": "2018-10-13T09:42:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:44 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:www.usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3402'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:44 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2B4649CBDDEB6EC53C9E4567DC3C6FC5; path=/; expires=Sat, 14-Dec-2019 22:40:44
+ GMT; domain=bingapis.com
+ - MUIDB=2B4649CBDDEB6EC53C9E4567DC3C6FC5; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:44 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:44 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=6E6ABD214C7C405EA2A33F6BF7956878&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:44 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:44
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=14E098C744336A8B2A8F946B45E46B76; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:44 GMT; domain=bingapis.com
+ - _SS=SID=14E098C744336A8B2A8F946B45E46B76; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3AE2ECEF73C144BB8BAF4F3D0170AA43
+ X-Msedge-Clientid:
+ - 2B4649CBDDEB6EC53C9E4567DC3C6FC5
+ X-Msapi-Userstate:
+ - e315
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3AE2ECEF73C144BB8BAF4F3D0170AA43 Ref B: CO1EDGE0418 Ref C: 2018-11-19T22:40:44Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:43 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=857BF70AF46D41F1BD6937063CE974C1&CID=2B4649CBDDEB6EC53C9E4567DC3C6FC5&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=857BF70AF46D41F1BD6937063CE974C1&CID=2B4649CBDDEB6EC53C9E4567DC3C6FC5&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3awww.usa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5452.1", "totalEstimatedMatches": 70900,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Research Career Fields | USAGov", "url": "https:\/\/www.usa.gov\/jobs-careers",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-careers",
+ "snippet": "Find research information and videos about different career fields.
+ Learn more about other jobs at the Bureau of Labor Statistic’s Occupational
+ Outlook Handbook. Animal Care and Science Find career information about animal
+ science and care. Architecture and Engineering Find careers in the ...", "dateLastCrawled":
+ "2018-11-11T12:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Careers | USAGov", "url": "https:\/\/www.usa.gov\/government-careers",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.usa.gov\/government-careers",
+ "snippet": "It is one of the greatest jobs that you could have. It is thoroughly
+ rewarding. I wanted to become a pilot because my dad''s a pilot and I wanted
+ to be in the military.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "Find out how and where to look for a new job or career, get help
+ if you are unemployed, and more.", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5122.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "Looking for a New Job. Find out how to look for work in the private sector
+ and federal government. Find a Federal Government Job. Learn how to find a
+ job with the federal government.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Entertainment
+ and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Find a Job | USAGov", "url": "https:\/\/www.usa.gov\/find-a-job",
+ "urlPingSuffix": "DevEx,5153.1", "displayUrl": "https:\/\/www.usa.gov\/find-a-job",
+ "snippet": "Find a Job The Ticket to Work program helps 18-to-64-year-old
+ Social Security disability recipients develop job skills to get to a higher
+ standard of living. The program is supportive, free, and voluntary.", "dateLastCrawled":
+ "2018-11-15T13:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Healthcare Doctor (Physician) Doctors treat injuries and sick
+ patients. Doctors examine patients, find out patient''s medical histories
+ and give medications. Nurse. Nurses, also called registered nurses or RNs,
+ take care of sick and injured people.They give medicine, treat wounds and
+ give emotional support to patients and their families.", "dateLastCrawled":
+ "2018-11-15T01:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5182.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Pay and Benefits for Federal Employees | USAGov", "url": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "snippet": "Learn more about pay and benefits for federal employees.", "dateLastCrawled":
+ "2018-11-14T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Local Governments | USAGov", "url": "https:\/\/www.usa.gov\/local-governments",
+ "urlPingSuffix": "DevEx,5212.1", "about": [{"name": "Local government"}],
+ "displayUrl": "https:\/\/www.usa.gov\/local-governments", "snippet": "Find
+ contact information for local governments by state.", "dateLastCrawled": "2018-11-14T19:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Farming,
+ Fishing and Forestry Careers | USAGov", "url": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "urlPingSuffix": "DevEx,5227.1", "displayUrl": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "snippet": "Learn about the careers in farming, fishing and forestry.",
+ "dateLastCrawled": "2018-11-06T19:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5243.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The Founding Fathers, the framers of the U.S. Constitution, wanted
+ to form a government that did not allow one person to have too much control.
+ With this in mind, they wrote the Constitution to provide for a separation
+ of powers, or three separate branches of government. Each branch has its
+ own ...", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Jobs and Education for People with Disabilities | USAGov", "url":
+ "https:\/\/www.usa.gov\/disability-jobs-education", "urlPingSuffix": "DevEx,5257.1",
+ "displayUrl": "https:\/\/www.usa.gov\/disability-jobs-education", "snippet":
+ "Jobs and Education for People with Disabilities Learn about employment
+ resources on how to find a government job and prepare for a job interview.
+ You can also find information on employment laws and how to file a workplace
+ harassment or discrimination complaint.", "dateLastCrawled": "2018-11-12T09:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "A-Z Index
+ of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5273.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Financial Assistance
+ After a Disaster | USAGov", "url": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "snippet": "Financial Assistance After a Disaster Find out how to get emergency
+ financial help from the government if you''ve been the victim of a disaster.
+ This can include disaster unemployment assistance, special home loans for
+ disaster victims, and disaster tax relief.", "dateLastCrawled": "2018-11-14T16:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "U.S.
+ Data and Statistics | USAGov", "url": "https:\/\/www.usa.gov\/statistics",
+ "urlPingSuffix": "DevEx,5305.1", "about": [{"name": "Statistics"}], "displayUrl":
+ "https:\/\/www.usa.gov\/statistics", "snippet": "National Center for Health
+ Statistics is the principal health statistics agency for improving the
+ health of the American people. National Center for Science and Engineering
+ Statistics publishes data on the American science and engineering workforce
+ and the progress of science, technology, engineering, and mathematics (STEM)
+ education in the ...", "dateLastCrawled": "2018-11-15T05:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Retirement
+ | USAGov", "url": "https:\/\/www.usa.gov\/retirement", "urlPingSuffix": "DevEx,5321.1",
+ "displayUrl": "https:\/\/www.usa.gov\/retirement", "snippet": "If you
+ change jobs, keep your savings in the plan or roll them over to another
+ retirement account. Don’t dip into retirement savings early. If you pay
+ someone for investment advice, ask them to confirm in writing that they are
+ “fiduciaries”—meaning they are obliged to work in your best interest.", "dateLastCrawled":
+ "2018-11-12T04:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "urlPingSuffix": "DevEx,5335.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-11T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Business
+ and Financial Careers | USAGov", "url": "https:\/\/www.usa.gov\/business-financial-careers",
+ "urlPingSuffix": "DevEx,5350.1", "displayUrl": "https:\/\/www.usa.gov\/business-financial-careers",
+ "snippet": "Find careers in the business and financial fields. The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.",
+ "dateLastCrawled": "2018-11-15T15:06:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:44 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:www.usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3400'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:45 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1DAAE4507E4067B805EBE8FC7F97667A; path=/; expires=Sat, 14-Dec-2019 22:40:45
+ GMT; domain=bingapis.com
+ - MUIDB=1DAAE4507E4067B805EBE8FC7F97667A; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:45 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:45 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A96E1F1D6C2F467FA1045DC52AD789B8&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:45 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:45
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=029D34C8FDFE697C2F1B3864FC2968C3; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:45 GMT; domain=bingapis.com
+ - _SS=SID=029D34C8FDFE697C2F1B3864FC2968C3; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 15BD0D4633CC48938DDBF705D039BA66
+ X-Msedge-Clientid:
+ - 1DAAE4507E4067B805EBE8FC7F97667A
+ X-Msapi-Userstate:
+ - 4c13
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 15BD0D4633CC48938DDBF705D039BA66 Ref B: CO1EDGE0509 Ref C: 2018-11-19T22:40:45Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:44 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=96E5909FDDA24B18812175711796AE19&CID=1DAAE4507E4067B805EBE8FC7F97667A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=96E5909FDDA24B18812175711796AE19&CID=1DAAE4507E4067B805EBE8FC7F97667A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3awww.usa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5452.1", "totalEstimatedMatches": 70900,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Research Career Fields | USAGov", "url": "https:\/\/www.usa.gov\/jobs-careers",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-careers",
+ "snippet": "Find research information and videos about different career fields.
+ Learn more about other jobs at the Bureau of Labor Statistic’s Occupational
+ Outlook Handbook. Animal Care and Science Find career information about animal
+ science and care. Architecture and Engineering Find careers in the ...", "dateLastCrawled":
+ "2018-11-11T12:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Careers | USAGov", "url": "https:\/\/www.usa.gov\/government-careers",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.usa.gov\/government-careers",
+ "snippet": "It is one of the greatest jobs that you could have. It is thoroughly
+ rewarding. I wanted to become a pilot because my dad''s a pilot and I wanted
+ to be in the military.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "Find out how and where to look for a new job or career, get help
+ if you are unemployed, and more.", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5122.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "Looking for a New Job. Find out how to look for work in the private sector
+ and federal government. Find a Federal Government Job. Learn how to find a
+ job with the federal government.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Entertainment
+ and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Find a Job | USAGov", "url": "https:\/\/www.usa.gov\/find-a-job",
+ "urlPingSuffix": "DevEx,5153.1", "displayUrl": "https:\/\/www.usa.gov\/find-a-job",
+ "snippet": "Find a Job The Ticket to Work program helps 18-to-64-year-old
+ Social Security disability recipients develop job skills to get to a higher
+ standard of living. The program is supportive, free, and voluntary.", "dateLastCrawled":
+ "2018-11-15T13:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Healthcare Doctor (Physician) Doctors treat injuries and sick
+ patients. Doctors examine patients, find out patient''s medical histories
+ and give medications. Nurse. Nurses, also called registered nurses or RNs,
+ take care of sick and injured people.They give medicine, treat wounds and
+ give emotional support to patients and their families.", "dateLastCrawled":
+ "2018-11-15T01:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5182.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Pay and Benefits for Federal Employees | USAGov", "url": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "snippet": "Learn more about pay and benefits for federal employees.", "dateLastCrawled":
+ "2018-11-14T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Local Governments | USAGov", "url": "https:\/\/www.usa.gov\/local-governments",
+ "urlPingSuffix": "DevEx,5212.1", "about": [{"name": "Local government"}],
+ "displayUrl": "https:\/\/www.usa.gov\/local-governments", "snippet": "Find
+ contact information for local governments by state.", "dateLastCrawled": "2018-11-14T19:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Farming,
+ Fishing and Forestry Careers | USAGov", "url": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "urlPingSuffix": "DevEx,5227.1", "displayUrl": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "snippet": "Learn about the careers in farming, fishing and forestry.",
+ "dateLastCrawled": "2018-11-06T19:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5243.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The Founding Fathers, the framers of the U.S. Constitution, wanted
+ to form a government that did not allow one person to have too much control.
+ With this in mind, they wrote the Constitution to provide for a separation
+ of powers, or three separate branches of government. Each branch has its
+ own ...", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Jobs and Education for People with Disabilities | USAGov", "url":
+ "https:\/\/www.usa.gov\/disability-jobs-education", "urlPingSuffix": "DevEx,5257.1",
+ "displayUrl": "https:\/\/www.usa.gov\/disability-jobs-education", "snippet":
+ "Jobs and Education for People with Disabilities Learn about employment
+ resources on how to find a government job and prepare for a job interview.
+ You can also find information on employment laws and how to file a workplace
+ harassment or discrimination complaint.", "dateLastCrawled": "2018-11-12T09:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "A-Z Index
+ of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5273.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Financial Assistance
+ After a Disaster | USAGov", "url": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "snippet": "Financial Assistance After a Disaster Find out how to get emergency
+ financial help from the government if you''ve been the victim of a disaster.
+ This can include disaster unemployment assistance, special home loans for
+ disaster victims, and disaster tax relief.", "dateLastCrawled": "2018-11-14T16:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "U.S.
+ Data and Statistics | USAGov", "url": "https:\/\/www.usa.gov\/statistics",
+ "urlPingSuffix": "DevEx,5305.1", "about": [{"name": "Statistics"}], "displayUrl":
+ "https:\/\/www.usa.gov\/statistics", "snippet": "National Center for Health
+ Statistics is the principal health statistics agency for improving the
+ health of the American people. National Center for Science and Engineering
+ Statistics publishes data on the American science and engineering workforce
+ and the progress of science, technology, engineering, and mathematics (STEM)
+ education in the ...", "dateLastCrawled": "2018-11-15T05:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Retirement
+ | USAGov", "url": "https:\/\/www.usa.gov\/retirement", "urlPingSuffix": "DevEx,5321.1",
+ "displayUrl": "https:\/\/www.usa.gov\/retirement", "snippet": "If you
+ change jobs, keep your savings in the plan or roll them over to another
+ retirement account. Don’t dip into retirement savings early. If you pay
+ someone for investment advice, ask them to confirm in writing that they are
+ “fiduciaries”—meaning they are obliged to work in your best interest.", "dateLastCrawled":
+ "2018-11-12T04:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "urlPingSuffix": "DevEx,5335.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-11T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Business
+ and Financial Careers | USAGov", "url": "https:\/\/www.usa.gov\/business-financial-careers",
+ "urlPingSuffix": "DevEx,5350.1", "displayUrl": "https:\/\/www.usa.gov\/business-financial-careers",
+ "snippet": "Find careers in the business and financial fields. The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.",
+ "dateLastCrawled": "2018-11-15T15:06:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:45 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:www.usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3401'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:46 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3C69B8864F81689123DDB42A4E566981; path=/; expires=Sat, 14-Dec-2019 22:40:46
+ GMT; domain=bingapis.com
+ - MUIDB=3C69B8864F81689123DDB42A4E566981; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:46 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:46 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C65F856564C04D1BA335B50F50625FAE&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:46 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:46
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1AE07D2D647362D01815718165A463E5; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:46 GMT; domain=bingapis.com
+ - _SS=SID=1AE07D2D647362D01815718165A463E5; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 2672FA31F2A142B69B4755ADDBC44E06
+ X-Msedge-Clientid:
+ - 3C69B8864F81689123DDB42A4E566981
+ X-Msapi-Userstate:
+ - 05b2
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 2672FA31F2A142B69B4755ADDBC44E06 Ref B: CO1EDGE0511 Ref C: 2018-11-19T22:40:46Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:46 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=85DDA348D7784CE5828E4012838DC50F&CID=3C69B8864F81689123DDB42A4E566981&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=85DDA348D7784CE5828E4012838DC50F&CID=3C69B8864F81689123DDB42A4E566981&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3awww.usa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5452.1", "totalEstimatedMatches": 70900,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Research Career Fields | USAGov", "url": "https:\/\/www.usa.gov\/jobs-careers",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-careers",
+ "snippet": "Find research information and videos about different career fields.
+ Learn more about other jobs at the Bureau of Labor Statistic’s Occupational
+ Outlook Handbook. Animal Care and Science Find career information about animal
+ science and care. Architecture and Engineering Find careers in the ...", "dateLastCrawled":
+ "2018-11-11T12:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Careers | USAGov", "url": "https:\/\/www.usa.gov\/government-careers",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.usa.gov\/government-careers",
+ "snippet": "It is one of the greatest jobs that you could have. It is thoroughly
+ rewarding. I wanted to become a pilot because my dad''s a pilot and I wanted
+ to be in the military.", "dateLastCrawled": "2018-11-12T04:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "Find out how and where to look for a new job or career, get help
+ if you are unemployed, and more.", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5122.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "Looking for a New Job. Find out how to look for work in the private sector
+ and federal government. Find a Federal Government Job. Learn how to find a
+ job with the federal government.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Entertainment
+ and Sports Careers | USAGov", "url": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.usa.gov\/entertainment-sports-careers",
+ "snippet": "Entertainment and Sports Actor. Actors perform in stage, radio,
+ television, video, or movies. It''s hard for most actors to find steady work.
+ Only a few become famous. They also teach in high school or college drama
+ departments, acting conservatories, or public programs.", "dateLastCrawled":
+ "2018-11-15T16:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Find a Job | USAGov", "url": "https:\/\/www.usa.gov\/find-a-job",
+ "urlPingSuffix": "DevEx,5153.1", "displayUrl": "https:\/\/www.usa.gov\/find-a-job",
+ "snippet": "Find a Job The Ticket to Work program helps 18-to-64-year-old
+ Social Security disability recipients develop job skills to get to a higher
+ standard of living. The program is supportive, free, and voluntary.", "dateLastCrawled":
+ "2018-11-15T13:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Healthcare Doctor (Physician) Doctors treat injuries and sick
+ patients. Doctors examine patients, find out patient''s medical histories
+ and give medications. Nurse. Nurses, also called registered nurses or RNs,
+ take care of sick and injured people.They give medicine, treat wounds and
+ give emotional support to patients and their families.", "dateLastCrawled":
+ "2018-11-15T01:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5182.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Pay and Benefits for Federal Employees | USAGov", "url": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-for-federal-employees",
+ "snippet": "Learn more about pay and benefits for federal employees.", "dateLastCrawled":
+ "2018-11-14T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Local Governments | USAGov", "url": "https:\/\/www.usa.gov\/local-governments",
+ "urlPingSuffix": "DevEx,5212.1", "about": [{"name": "Local government"}],
+ "displayUrl": "https:\/\/www.usa.gov\/local-governments", "snippet": "Find
+ contact information for local governments by state.", "dateLastCrawled": "2018-11-14T19:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Farming,
+ Fishing and Forestry Careers | USAGov", "url": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "urlPingSuffix": "DevEx,5227.1", "displayUrl": "https:\/\/www.usa.gov\/farming-fishing-forestry-careers",
+ "snippet": "Learn about the careers in farming, fishing and forestry.",
+ "dateLastCrawled": "2018-11-06T19:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5243.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The Founding Fathers, the framers of the U.S. Constitution, wanted
+ to form a government that did not allow one person to have too much control.
+ With this in mind, they wrote the Constitution to provide for a separation
+ of powers, or three separate branches of government. Each branch has its
+ own ...", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Jobs and Education for People with Disabilities | USAGov", "url":
+ "https:\/\/www.usa.gov\/disability-jobs-education", "urlPingSuffix": "DevEx,5257.1",
+ "displayUrl": "https:\/\/www.usa.gov\/disability-jobs-education", "snippet":
+ "Jobs and Education for People with Disabilities Learn about employment
+ resources on how to find a government job and prepare for a job interview.
+ You can also find information on employment laws and how to file a workplace
+ harassment or discrimination complaint.", "dateLastCrawled": "2018-11-12T09:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "A-Z Index
+ of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5273.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Financial Assistance
+ After a Disaster | USAGov", "url": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.usa.gov\/disaster-financial-help",
+ "snippet": "Financial Assistance After a Disaster Find out how to get emergency
+ financial help from the government if you''ve been the victim of a disaster.
+ This can include disaster unemployment assistance, special home loans for
+ disaster victims, and disaster tax relief.", "dateLastCrawled": "2018-11-14T16:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "U.S.
+ Data and Statistics | USAGov", "url": "https:\/\/www.usa.gov\/statistics",
+ "urlPingSuffix": "DevEx,5305.1", "about": [{"name": "Statistics"}], "displayUrl":
+ "https:\/\/www.usa.gov\/statistics", "snippet": "National Center for Health
+ Statistics is the principal health statistics agency for improving the
+ health of the American people. National Center for Science and Engineering
+ Statistics publishes data on the American science and engineering workforce
+ and the progress of science, technology, engineering, and mathematics (STEM)
+ education in the ...", "dateLastCrawled": "2018-11-15T05:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Retirement
+ | USAGov", "url": "https:\/\/www.usa.gov\/retirement", "urlPingSuffix": "DevEx,5321.1",
+ "displayUrl": "https:\/\/www.usa.gov\/retirement", "snippet": "If you
+ change jobs, keep your savings in the plan or roll them over to another
+ retirement account. Don’t dip into retirement savings early. If you pay
+ someone for investment advice, ask them to confirm in writing that they are
+ “fiduciaries”—meaning they are obliged to work in your best interest.", "dateLastCrawled":
+ "2018-11-12T04:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Art and Design Careers | USAGov", "url": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "urlPingSuffix": "DevEx,5335.1", "displayUrl": "https:\/\/www.usa.gov\/art-design-careers?source=kids",
+ "snippet": "Art and Design Actor. Actors perform in stage, radio, television,
+ video, or movies. It''s hard for most actors to find steady work. Only a few
+ become famous. They also teach in high school or college drama departments,
+ acting conservatories, or public programs.", "dateLastCrawled": "2018-11-11T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Business
+ and Financial Careers | USAGov", "url": "https:\/\/www.usa.gov\/business-financial-careers",
+ "urlPingSuffix": "DevEx,5350.1", "displayUrl": "https:\/\/www.usa.gov\/business-financial-careers",
+ "snippet": "Find careers in the business and financial fields. The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.",
+ "dateLastCrawled": "2018-11-15T15:06:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:46 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_news_items_using_time_filters.yml b/features/vcr_cassettes/Legacy_Search/Searching_news_items_using_time_filters.yml
index 9712b7abc7..524c2bafa7 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_news_items_using_time_filters.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_news_items_using_time_filters.yml
@@ -828,4 +828,940 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:03 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:46 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3E4F3C4BFEDA66120D8730E7FF0D67E2; path=/; expires=Sat, 14-Dec-2019 22:39:46
+ GMT; domain=bingapis.com
+ - MUIDB=3E4F3C4BFEDA66120D8730E7FF0D67E2; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:46 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:46 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=51577483B6B3449AB05169095E155483&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:46 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:46
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=35E695CD44B16D1D0862996145666C53; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:46 GMT; domain=bingapis.com
+ - _SS=SID=35E695CD44B16D1D0862996145666C53; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3E03C5416475453B9576D69798DB3640
+ X-Msedge-Clientid:
+ - 3E4F3C4BFEDA66120D8730E7FF0D67E2
+ X-Msapi-Userstate:
+ - 3f23
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3E03C5416475453B9576D69798DB3640 Ref B: CO1EDGE0416 Ref C: 2018-11-19T22:39:46Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:46 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=38BBB1D37EDC4B0C99884DC55969CF07&CID=3E4F3C4BFEDA66120D8730E7FF0D67E2&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=38BBB1D37EDC4B0C99884DC55969CF07&CID=3E4F3C4BFEDA66120D8730E7FF0D67E2&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 14800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:46 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:48 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3A41102D4AB26DBC2E441C814B656C3B; path=/; expires=Sat, 14-Dec-2019 22:39:48
+ GMT; domain=bingapis.com
+ - MUIDB=3A41102D4AB26DBC2E441C814B656C3B; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:48 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=8ECDC4D7B615491CA39BEE5B002CD25B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:48 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:48
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=373A2486967366EB0955282A97A46758; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:48 GMT; domain=bingapis.com
+ - _SS=SID=373A2486967366EB0955282A97A46758; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 97E7337609D245C28C2A055EA05EC388
+ X-Msedge-Clientid:
+ - 3A41102D4AB26DBC2E441C814B656C3B
+ X-Msapi-Userstate:
+ - 88cf
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 97E7337609D245C28C2A055EA05EC388 Ref B: CO1EDGE0207 Ref C: 2018-11-19T22:39:48Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:47 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=34DD7DB0D71549FF900391C4083FECA5&CID=3A41102D4AB26DBC2E441C814B656C3B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=34DD7DB0D71549FF900391C4083FECA5&CID=3A41102D4AB26DBC2E441C814B656C3B&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:48 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4770'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:49 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=191F376DA2BD6F3A25C43BC1A36A6EB6; path=/; expires=Sat, 14-Dec-2019 22:39:49
+ GMT; domain=bingapis.com
+ - MUIDB=191F376DA2BD6F3A25C43BC1A36A6EB6; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:49 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=3D293B59C4804E0D98841F4E72D65187&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:49 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:49
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=22E41E195C4D6F3A24BA12B55D9A6EBE; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:49 GMT; domain=bingapis.com
+ - _SS=SID=22E41E195C4D6F3A24BA12B55D9A6EBE; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 7B7CB206B70845B6AAC4E08CD1754ED1
+ X-Msedge-Clientid:
+ - 191F376DA2BD6F3A25C43BC1A36A6EB6
+ X-Msapi-Userstate:
+ - ae17
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 7B7CB206B70845B6AAC4E08CD1754ED1 Ref B: CO1EDGE0910 Ref C: 2018-11-19T22:39:49Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:48 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=C0D309B9E5F74A4B8A5DA3CD0A1270EE&CID=191F376DA2BD6F3A25C43BC1A36A6EB6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=C0D309B9E5F74A4B8A5DA3CD0A1270EE&CID=191F376DA2BD6F3A25C43BC1A36A6EB6&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:49 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:50 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=195CD4EE9F446FB30F31D8429E936EE3; path=/; expires=Sat, 14-Dec-2019 22:39:50
+ GMT; domain=bingapis.com
+ - MUIDB=195CD4EE9F446FB30F31D8429E936EE3; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:50 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A12A46E3DE1A427F8AC9E1BB8E6E6336&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:50 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:50
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=031EA5B2C5926FB91C14A91EC4456E08; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:50 GMT; domain=bingapis.com
+ - _SS=SID=031EA5B2C5926FB91C14A91EC4456E08; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 9D5C4DBE51724A12B1B6E1A8331F0CF7
+ X-Msedge-Clientid:
+ - 195CD4EE9F446FB30F31D8429E936EE3
+ X-Msapi-Userstate:
+ - d541
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 9D5C4DBE51724A12B1B6E1A8331F0CF7 Ref B: CO1EDGE0319 Ref C: 2018-11-19T22:39:50Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=755940F4F9CC440A95043C4770CCE173&CID=195CD4EE9F446FB30F31D8429E936EE3&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=755940F4F9CC440A95043C4770CCE173&CID=195CD4EE9F446FB30F31D8429E936EE3&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 14800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:50 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_custom_dublin_core_mappings.yml b/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_custom_dublin_core_mappings.yml
index 8c0a21b802..1a25018109 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_custom_dublin_core_mappings.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_custom_dublin_core_mappings.yml
@@ -206,4 +206,238 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:13 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:56 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=21DD3D75D91B6610019E31D9D8CC671E; path=/; expires=Sat, 14-Dec-2019 22:40:56
+ GMT; domain=bingapis.com
+ - MUIDB=21DD3D75D91B6610019E31D9D8CC671E; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:56 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:56 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=09C592D21C7C4619A1C18B1D092E892E&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:56 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:56
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1D586C4CD19868A305A060E0D04F69E1; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:56 GMT; domain=bingapis.com
+ - _SS=SID=1D586C4CD19868A305A060E0D04F69E1; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 166C8EBF2C394302AB863273DD964CDD
+ X-Msedge-Clientid:
+ - 21DD3D75D91B6610019E31D9D8CC671E
+ X-Msapi-Userstate:
+ - 74dc
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 166C8EBF2C394302AB863273DD964CDD Ref B: CO1EDGE0115 Ref C: 2018-11-19T22:40:56Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:55 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=2A06DB5753AC42E9A09A22151254EC2D&CID=21DD3D75D91B6610019E31D9D8CC671E&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=2A06DB5753AC42E9A09A22151254EC2D&CID=21DD3D75D91B6610019E31D9D8CC671E&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:56 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_default_dublin_core_mappings.yml b/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_default_dublin_core_mappings.yml
index 6d76208fed..c5a257da2a 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_default_dublin_core_mappings.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_news_items_with_default_dublin_core_mappings.yml
@@ -412,4 +412,472 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:44:35 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4768'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=14999523211E6A4022C6998F20C96B34; path=/; expires=Sat, 14-Dec-2019 22:39:53
+ GMT; domain=bingapis.com
+ - MUIDB=14999523211E6A4022C6998F20C96B34; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:53 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:53 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=36BA55DD45A54DBAAC06AE091FE5B9CC&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:53 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:53
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=26AC574D068963C20AB25BE1075E62C7; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:53 GMT; domain=bingapis.com
+ - _SS=SID=26AC574D068963C20AB25BE1075E62C7; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 8376449C4A074783A19DEBA175972FE3
+ X-Msedge-Clientid:
+ - 14999523211E6A4022C6998F20C96B34
+ X-Msapi-Userstate:
+ - '4152'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 8376449C4A074783A19DEBA175972FE3 Ref B: CO1EDGE0417 Ref C: 2018-11-19T22:39:53Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=679342B057074207B072F97C6139CF93&CID=14999523211E6A4022C6998F20C96B34&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=679342B057074207B072F97C6139CF93&CID=14999523211E6A4022C6998F20C96B34&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:54 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4768'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:54 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=387315AC4B776B071EF819004AA06AE5; path=/; expires=Sat, 14-Dec-2019 22:39:54
+ GMT; domain=bingapis.com
+ - MUIDB=387315AC4B776B071EF819004AA06AE5; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:54 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:54 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=B7E74E3028654DBBAFC29652BB988A86&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:54 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:54
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=14CE05E60D9B6C09021F094A0C4C6D6B; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:54 GMT; domain=bingapis.com
+ - _SS=SID=14CE05E60D9B6C09021F094A0C4C6D6B; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 7E706BD9FC724518B9F16736E4D8231E
+ X-Msedge-Clientid:
+ - 387315AC4B776B071EF819004AA06AE5
+ X-Msapi-Userstate:
+ - c9ad
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 7E706BD9FC724518B9F16736E4D8231E Ref B: CO1EDGE0216 Ref C: 2018-11-19T22:39:54Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F680C9CC63DA4E139D98EB63BA33D63D&CID=387315AC4B776B071EF819004AA06AE5&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F680C9CC63DA4E139D98EB63BA33D63D&CID=387315AC4B776B071EF819004AA06AE5&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:55 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_on_non_navigable_document_collection.yml b/features/vcr_cassettes/Legacy_Search/Searching_on_non_navigable_document_collection.yml
index 0e12da70e8..88080be13d 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_on_non_navigable_document_collection.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_on_non_navigable_document_collection.yml
@@ -120,4 +120,124 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:52 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=noaa%20(site:www.sba.gov/blogs/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1875'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:35 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2034C88ED73160AB0BC6C422D6E661C0; path=/; expires=Sat, 14-Dec-2019 22:40:35
+ GMT; domain=bingapis.com
+ - MUIDB=2034C88ED73160AB0BC6C422D6E661C0; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:35 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:35 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=5307E9E50E234A0FB5BD158C19E1B909&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:35 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:35
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=21A4754BBAE268CC131679E7BB356906; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:35 GMT; domain=bingapis.com
+ - _SS=SID=21A4754BBAE268CC131679E7BB356906; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - DEC7AA56A96B42529946DDC5AF5040B8
+ X-Msedge-Clientid:
+ - 2034C88ED73160AB0BC6C422D6E661C0
+ X-Msapi-Userstate:
+ - ac04
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: DEC7AA56A96B42529946DDC5AF5040B8 Ref B: CO1EDGE0216 Ref C: 2018-11-19T22:40:35Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:34 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=32CE80B3983146ABA935948598D44BF0&CID=2034C88ED73160AB0BC6C422D6E661C0&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=32CE80B3983146ABA935948598D44BF0&CID=2034C88ED73160AB0BC6C422D6E661C0&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=noaa+(site%3awww.sba.gov%2fblogs%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5174.1", "totalEstimatedMatches": 6, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Get Tips
+ and Information about Hurricane Preparedness for ...", "url": "https:\/\/www.sba.gov\/blogs\/get-tips-and-information-about-hurricane-preparedness-your-business",
+ "urlPingSuffix": "DevEx,5045.1", "displayUrl": "https:\/\/www.sba.gov\/blogs\/get-tips-and-information-about-hurricane...",
+ "snippet": "Nearly three years have passed since Hurricane Sandy devastated
+ the East Coast, and the recovery continues in some of the hardest-hit areas.
+ According to a National Hurricane Center report, Hurricane Sandy was the second
+ costliest storm in U.S. history.", "dateLastCrawled": "2018-11-07T07:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "5 Tips
+ on Starting Your Hurricane Season Business ...", "url": "https:\/\/www.sba.gov\/blogs\/5-tips-starting-your-hurricane-season-business-continuity-plan",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/www.sba.gov\/blogs\/5-tips-starting-your-hurricane-season...",
+ "snippet": "While weather experts NOAA are predicting a “near-normal” 2012
+ Atlantic hurricane season, last year’s Hurricane Irene is a reminder of the
+ erratic and devastating nature of tropical storms.", "dateLastCrawled": "2018-11-12T20:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Seven
+ Ways to Start Your Business Continuity Plan | The U ...", "url": "https:\/\/www.sba.gov\/blogs\/seven-ways-start-your-business-continuity-plan",
+ "urlPingSuffix": "DevEx,5077.1", "displayUrl": "https:\/\/www.sba.gov\/blogs\/seven-ways-start-your-business...",
+ "snippet": "So far this winter we’ve seen deadly tornadoes in Texas, severe
+ flooding in Missouri and 12 other states along the Mississippi River, unusually
+ powerful storms in Southern California that brought 70 mph winds and heavy
+ rains, and a massive two-day blizzard that dumped more than 30 inches of snow
+ ...", "dateLastCrawled": "2018-11-13T11:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Payroll Concerns for Remote Employees | The U.S. Small ...", "url":
+ "https:\/\/www.sba.gov\/blogs\/payroll-concerns-remote-employees", "urlPingSuffix":
+ "DevEx,5093.1", "displayUrl": "https:\/\/www.sba.gov\/blogs\/payroll-concerns-remote-employees",
+ "snippet": "Barbara Weltman is an attorney, prolific author with such titles
+ as J.K. Lasser''s Small Business Taxes, J.K. Lasser''s Guide to Self-Employment,
+ and Smooth Failing as well as a trusted professional advocate for small businesses
+ and entrepreneurs. She is also the publisher of Idea of the Day® and monthly
+ e-newsletter Big Ideas for Small Business® and host of Build Your Business
+ Radio.", "dateLastCrawled": "2018-11-13T16:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Five Easy Ways to Safeguard Your Small Business Before ...", "url":
+ "https:\/\/www.sba.gov\/blogs\/five-easy-ways-safeguard-your-small-business-disaster-strikes",
+ "urlPingSuffix": "DevEx,5110.1", "displayUrl": "https:\/\/www.sba.gov\/blogs\/five-easy-ways-safeguard-your-small...",
+ "snippet": "Weather experts from the National Oceanic and Atmospheric Administration
+ (NOAA) are predicting an “active” 2013 Atlantic hurricane season. The six-month
+ season, which began June 1, typically peaks between August and October.",
+ "dateLastCrawled": "2018-11-10T19:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "How to Start a Non-Profit | The U.S. Small Business ...", "url":
+ "https:\/\/www.sba.gov\/blogs\/how-start-non-profit", "urlPingSuffix": "DevEx,5126.1",
+ "displayUrl": "https:\/\/www.sba.gov\/blogs\/how-start-non-profit", "snippet":
+ "Starting a non-profit can be an extremely rewarding entrepreneurial experience.
+ A non-profit gives you the ability to give back to your community and really
+ make a difference unlike any other industry. But starting a charity or nonprofit
+ organization is just like starting a for-profit business. And ...", "dateLastCrawled":
+ "2018-11-13T19:41:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:35 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Boosted_Contents.yml b/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Boosted_Contents.yml
index 9be9d31b13..7fa540e45d 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Boosted_Contents.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Boosted_Contents.yml
@@ -418,4 +418,456 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:11 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=notes%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4428'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2C7B9FD081F0609820E8937C80276137; path=/; expires=Sat, 14-Dec-2019 22:40:54
+ GMT; domain=bingapis.com
+ - MUIDB=2C7B9FD081F0609820E8937C80276137; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:54 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:53 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C4EB3050C4B3436FBC6FF26A964F5C32&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:53 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:53
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=35ED06D80F1D61FD042C0A740ECA60F0; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:54 GMT; domain=bingapis.com
+ - _SS=SID=35ED06D80F1D61FD042C0A740ECA60F0; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - '001799AF6A4E43F6AA1B0E6F98B203B1'
+ X-Msedge-Clientid:
+ - 2C7B9FD081F0609820E8937C80276137
+ X-Msapi-Userstate:
+ - d7c8
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 001799AF6A4E43F6AA1B0E6F98B203B1 Ref B: CO1EDGE0318 Ref C: 2018-11-19T22:40:54Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=48D7361056BC4A40A593478FFD1ACCAF&CID=2C7B9FD081F0609820E8937C80276137&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=48D7361056BC4A40A593478FFD1ACCAF&CID=2C7B9FD081F0609820E8937C80276137&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=notes+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5411.1", "totalEstimatedMatches": 15800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Individual - Treasury Notes", "url": "https:\/\/www.treasurydirect.gov\/indiv\/products\/prod_tnotes_glance.htm",
+ "urlPingSuffix": "DevEx,5060.1", "displayUrl": "https:\/\/www.treasurydirect.gov\/indiv\/products\/prod_tnotes_glance.htm",
+ "snippet": "Treasury notes, sometimes called T-Notes, earn a fixed rate
+ of interest every six months until maturity. Notes are issued in terms of
+ 2, 3, 5, 7, and 10 years. You can buy notes from us in TreasuryDirect.",
+ "dateLastCrawled": "2018-11-15T10:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Executive Summary - 2015-2020 Dietary Guidelines - health.gov", "url":
+ "http:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/executive-summary\/",
+ "urlPingSuffix": "DevEx,5072.1", "displayUrl": "health.gov\/dietaryguidelines\/2015\/guidelines\/executive-summary",
+ "snippet": "Notes. Definitions for each food group and subgroup are provided
+ throughout Chapter 1. Key Elements of Healthy Eating Patterns and are compiled
+ in Appendix 3. USDA Food Patterns: Healthy U.S.-Style Eating Pattern.", "dateLastCrawled":
+ "2018-11-18T05:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "The Fed - FEDS Notes - 2018", "url": "https:\/\/www.federalreserve.gov\/econres\/notes\/feds-notes\/index.htm",
+ "urlPingSuffix": "DevEx,5086.1", "displayUrl": "https:\/\/www.federalreserve.gov\/econres\/notes\/feds-notes\/index.htm",
+ "snippet": "Disclaimer: FEDS Notes are articles in which Board economists
+ offer their own views and present analysis on a range of topics in economics
+ and finance. These articles are shorter and less technically oriented than
+ FEDS Working Papers.", "dateLastCrawled": "2018-11-13T18:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "References
+ :: Definitions and Notes — The World Factbook ...", "url": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/docs\/notesanddefs.html",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/docs\/...",
+ "snippet": "An acronym is an abbreviation coined from the initial letter of
+ each successive word in a term or phrase. In general, an acronym made up solely
+ from the first letter of the major words in the expanded form is rendered
+ in all capital letters (NATO from North Atlantic Treaty Organization; an exception
+ would be ASEAN for Association of Southeast Asian Nations).", "dateLastCrawled":
+ "2018-11-16T10:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Surety Bonds - Notes", "url": "https:\/\/www.fiscal.treasury.gov\/fsreports\/ref\/suretyBnd\/notes.htm",
+ "urlPingSuffix": "DevEx,5112.1", "displayUrl": "https:\/\/www.fiscal.treasury.gov\/fsreports\/ref\/suretyBnd\/notes.htm",
+ "snippet": "Department of the Treasury''s Listing of Approved Sureties (Department
+ Circular 570) Notes (a) All Certificates of Authority expire June 30, and
+ are renewable July 1, annually.", "dateLastCrawled": "2018-11-08T05:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "ParaRegs
+ and Notes", "url": "http:\/\/www.cdss.ca.gov\/Hearings-and-Appeals\/Para-Regs-and-Notes",
+ "urlPingSuffix": "DevEx,5126.1", "displayUrl": "www.cdss.ca.gov\/Hearings-and-Appeals\/Para-Regs-and-Notes",
+ "snippet": "These E-Notes are posted on our webpage so that stakeholders
+ - counties, claimants, and advocates - have the benefit of this information.
+ Notes from the SHD Training Bureau SHD issued Notes from the Training
+ Bureau (\"NTB\") from 1995 through 2010.", "dateLastCrawled": "2018-11-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "NLS Music
+ Notes - blogs.loc.gov", "url": "https:\/\/blogs.loc.gov\/nls-music-notes\/",
+ "urlPingSuffix": "DevEx,5139.1", "displayUrl": "https:\/\/blogs.loc.gov\/nls-music-notes",
+ "snippet": "The notes of the music can be displayed in different colors
+ for an optimal contrast between the notated music and the background. A teacher
+ creating accessible music with Lime Notation Editor at the school’s technology
+ lab. Photo courtesy of Filomen M. D’Agostino Greenberg Music School.", "dateLastCrawled":
+ "2018-11-09T00:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Choline — Health Professional Fact Sheet", "url": "https:\/\/ods.od.nih.gov\/factsheets\/Choline-HealthProfessional\/",
+ "urlPingSuffix": "DevEx,5150.1", "displayUrl": "https:\/\/ods.od.nih.gov\/factsheets\/Choline-HealthProfessional",
+ "snippet": "The federal government''s 2015–2020 Dietary Guidelines for Americans
+ notes that \"Nutritional needs should be met primarily from foods. ... Foods
+ in nutrient-dense forms contain essential vitamins and minerals and also dietary
+ fiber and other naturally occurring substances that may have positive health
+ effects.", "dateLastCrawled": "2018-11-03T05:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Individual - Treasury Notes: Rates & Terms", "url": "https:\/\/www.treasurydirect.gov\/indiv\/research\/indepth\/tnotes\/res_tnote_rates.htm",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.treasurydirect.gov\/indiv\/research\/indepth\/tnotes\/res...",
+ "snippet": "Treasury Notes: Rates & Terms . Notes are issued in terms
+ of 2, 3, 5, 7, and 10 years, and are offered in multiples of $100. Price and
+ Interest. The price and interest rate of a Note are determined at auction.",
+ "dateLastCrawled": "2018-11-16T07:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Individual - Treasury Notes: How To Buy", "url": "https:\/\/www.treasurydirect.gov\/indiv\/research\/indepth\/tnotes\/res_tnote_buy.htm",
+ "urlPingSuffix": "DevEx,5180.1", "displayUrl": "https:\/\/www.treasurydirect.gov\/indiv\/research\/indepth\/tnotes\/res...",
+ "snippet": "Treasury Notes: How To Buy. You can buy Treasury notes directly
+ from the U.S. Treasury or through a bank, broker, or dealer. Buying Directly
+ From the U.S. Treasury. To buy a note directly from us, you must have an account
+ in TreasuryDirect ...", "dateLastCrawled": "2018-11-16T08:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "National
+ Park Service - Lewis and Clark (Notes)", "url": "https:\/\/www.nps.gov\/parkhistory\/online_books\/lewisandclark\/notes.htm",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.nps.gov\/parkhistory\/online_books\/lewisandclark\/notes.htm",
+ "snippet": "Notes 1. Except where otherwise indicated, documentation for
+ this volume, including quotations, is provided by the works cited and annotated
+ in Suggested Reading.", "dateLastCrawled": "2018-05-27T21:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Natural
+ Orifice Transluminal Endoscopic Surgery", "url": "https:\/\/www.ncbi.nlm.nih.gov\/pmc\/articles\/PMC2966194\/",
+ "urlPingSuffix": "DevEx,5210.1", "displayUrl": "https:\/\/www.ncbi.nlm.nih.gov\/pmc\/articles\/PMC2966194",
+ "snippet": "Natural orifice transluminal endoscopic surgery (NOTES) has
+ generated healthy and vigorous debate about the introduction of an entirely
+ novel method of surgical therapy. Although there are many reasons for scepticism,
+ there is undoubted interest in this field from both the medical profession
+ and ...", "dateLastCrawled": "2017-01-27T19:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Individual - Treasury Notes In Depth", "url": "https:\/\/www.treasurydirect.gov\/indiv\/research\/indepth\/tnotes\/res_tnote.htm",
+ "urlPingSuffix": "DevEx,5224.1", "displayUrl": "https:\/\/www.treasurydirect.gov\/indiv\/research\/indepth\/tnotes\/res...",
+ "snippet": "Treasury notes, or T-notes, are issued in terms of 2, 3, 5,
+ 7, and 10 years, and pay interest every six months until they mature. The
+ price of a note may be greater than, less than, or equal to the face value
+ of the note.", "dateLastCrawled": "2018-11-12T20:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "UTILITY GENERAL
+ NOTES - vtrans.vermont.gov", "url": "https:\/\/vtrans.vermont.gov\/sites\/aot\/files\/Addendum%234Plans.pdf",
+ "urlPingSuffix": "DevEx,5235.1", "displayUrl": "https:\/\/vtrans.vermont.gov\/sites\/aot\/files\/Addendum#4Plans.pdf",
+ "snippet": "scope of work at each property is shown on the utility notes
+ sheets. payment shall be considered electrical inspector will not allow these
+ properties to be re-energized until these upgrades are made. these properties
+ are as follows: 55, 57, 59, 60, 61, 69, 77, 86, 90 & 95 south main street.
+ the state", "dateLastCrawled": "2018-11-14T08:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "The Fed - Section 16. Note Issues", "url": "https:\/\/www.federalreserve.gov\/aboutthefed\/section16.htm",
+ "urlPingSuffix": "DevEx,5248.1", "about": [{"name": "Federal Reserve Note"}],
+ "displayUrl": "https:\/\/www.federalreserve.gov\/aboutthefed\/section16.htm",
+ "snippet": "Any Federal reserve bank may retire any of its Federal reserve
+ notes by depositing them with the Federal reserve agent or with the Treasurer
+ of the United States, and such Federal reserve bank shall thereupon be entitled
+ to receive back the collateral deposited with the Federal reserve agent
+ for the security of such notes.", "dateLastCrawled": "2018-11-15T00:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Wildlife
+ Notes", "url": "https:\/\/www.pgc.pa.gov\/Education\/WildlifeNotesIndex\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5259.1", "displayUrl": "https:\/\/www.pgc.pa.gov\/Education\/WildlifeNotesIndex\/Pages\/default.aspx",
+ "snippet": "COMMONWEALTH OF PENNSYLVANIA. Keystone State. Proudly founded
+ by William Penn in 1681 as a place of tolerance and freedom.", "dateLastCrawled":
+ "2018-11-06T15:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "The Fed - (Don''t Fear) The Yield Curve", "url": "https:\/\/www.federalreserve.gov\/econres\/notes\/feds-notes\/dont-fear-the-yield-curve-20180628.htm",
+ "urlPingSuffix": "DevEx,5271.1", "about": [{"name": "Yield curve"}], "displayUrl":
+ "https:\/\/www.federalreserve.gov\/econres\/notes\/feds-notes\/dont-fear...",
+ "snippet": "Notes: Data are quarterly 1972:Q1-2018:Q1. Results are for probit
+ regressions in which the dependent variable is an indicator equal to 1 if
+ the economy transitions to a recession 1, 2, 3, or 4 quarters ahead.", "dateLastCrawled":
+ "2018-11-15T08:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Joint Doctrine Notes - Joint Chiefs of Staff", "url": "http:\/\/www.jcs.mil\/Doctrine\/Joint-Doctrine-Pubs\/Joint-Doctrine-Notes\/",
+ "urlPingSuffix": "DevEx,5284.1", "displayUrl": "www.jcs.mil\/Doctrine\/Joint-Doctrine-Pubs\/Joint-Doctrine-Notes",
+ "snippet": "Joint Doctrine Notes. A joint doctrine note (JDN) is a pre-doctrinal
+ publication that presents common fundamental guidance and is part of the initiation
+ stage of the joint doctrine development process.", "dateLastCrawled": "2018-11-15T19:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Institutional
+ - Treasury Notes", "url": "http:\/\/www.treasurydirect.gov\/instit\/marketables\/tnotes\/tnotes.htm",
+ "urlPingSuffix": "DevEx,5298.1", "displayUrl": "www.treasurydirect.gov\/instit\/marketables\/tnotes\/tnotes.htm",
+ "snippet": "Treasury Notes Treasury notes are interest-bearing securities
+ that have a fixed maturity of not less than 1 year and not more than 10 years
+ from date of issue. Treasury currently issues notes in 2, 3, 5, 7, and 10-year
+ maturities.", "dateLastCrawled": "2018-11-14T16:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Institutional - Forms: Treasury Bills, Notes, Bonds, FRNs ...",
+ "url": "https:\/\/www.treasurydirect.gov\/instit\/forms\/forms_BillNotesBondFRNTIPS.htm",
+ "urlPingSuffix": "DevEx,5312.1", "displayUrl": "https:\/\/www.treasurydirect.gov\/instit\/forms\/forms_BillNotesBondFRN...",
+ "snippet": "*Some forms require multiple signatures and some forms require
+ signature certification. Who can certify a signature? See “Signature Certification.”",
+ "dateLastCrawled": "2018-11-16T11:28:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:54 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=emergencia%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4574'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:54 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0076A0EC60EA65C71531AC40613D64A2; path=/; expires=Sat, 14-Dec-2019 22:40:54
+ GMT; domain=bingapis.com
+ - MUIDB=0076A0EC60EA65C71531AC40613D64A2; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:54 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:54 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=360C97E5052745F2BD9B932AB83F6E3A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:54 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:54
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0DFF711B147E6EBA2E1B7DB715A96F50; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:54 GMT; domain=bingapis.com
+ - _SS=SID=0DFF711B147E6EBA2E1B7DB715A96F50; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - C9ABBF550A8F455B94F185411B5EFCF2
+ X-Msedge-Clientid:
+ - 0076A0EC60EA65C71531AC40613D64A2
+ X-Msapi-Userstate:
+ - ba74
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: C9ABBF550A8F455B94F185411B5EFCF2 Ref B: CO1EDGE0415 Ref C: 2018-11-19T22:40:54Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=14896331094F4EABA00D34A2388F86D1&CID=0076A0EC60EA65C71531AC40613D64A2&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=14896331094F4EABA00D34A2388F86D1&CID=0076A0EC60EA65C71531AC40613D64A2&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=emergencia+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5427.1", "totalEstimatedMatches": 2080000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Emergencies - Travel", "url": "https:\/\/travel.state.gov\/content\/travel\/en\/international-travel\/emergencies.html",
+ "urlPingSuffix": "DevEx,5062.1", "displayUrl": "https:\/\/travel.state.gov\/...\/en\/international-travel\/emergencies.html",
+ "snippet": "External Link. You are about to leave travel.state.gov for an
+ external website that is not maintained by the U.S. Department of State.
+ Links to external websites are provided as a convenience and should not be
+ construed as an endorsement by the U.S. Department of State of the views
+ or products contained therein.", "dateLastCrawled": "2018-11-12T22:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Build
+ A Kit | Ready.gov", "url": "https:\/\/www.ready.gov\/build-a-kit", "urlPingSuffix":
+ "DevEx,5076.1", "about": [{"name": "Emergency shelter"}, {"name": "Ready"}],
+ "displayUrl": "https:\/\/www.ready.gov\/build-a-kit", "snippet": "Build
+ A Kit. Make sure your emergency kit is stocked with the items on the checklist
+ below. Most of the items are inexpensive and easy to find, and any one of
+ them could save your life. Headed to the store?", "dateLastCrawled": "2018-11-13T23:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Consejos
+ de FCC\/FEMA para Comunicarse Durante Casos de ...", "url": "https:\/\/www.fcc.gov\/emergencia",
+ "urlPingSuffix": "DevEx,5091.1", "displayUrl": "https:\/\/www.fcc.gov\/emergencia",
+ "snippet": "Preparación para una emergencia Conozca cómo los cortes de energía
+ pueden afectar su servicio de línea fija Conozca qué tipo de servicio de telefonía
+ fija tiene.", "dateLastCrawled": "2018-11-03T10:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Car Safety | Ready.gov", "url": "https:\/\/www.ready.gov\/car",
+ "urlPingSuffix": "DevEx,5105.1", "displayUrl": "https:\/\/www.ready.gov\/car",
+ "snippet": "Car Safety. Plan long trips carefully, listening to the radio
+ or television for the latest weather forecasts and road conditions. If bad
+ weather is forecast, drive only if absolutely necessary. Emergency Kit for
+ the Car. In case you are stranded, keep an emergency supply kit in your car
+ with the addition of these automobile extras:", "dateLastCrawled": "2018-11-15T08:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Emergencia
+ timonensis ,” a new bacterium isolated from the ...", "url": "https:\/\/www.ncbi.nlm.nih.gov\/pmc\/articles\/PMC4925930\/",
+ "urlPingSuffix": "DevEx,5122.1", "displayUrl": "https:\/\/www.ncbi.nlm.nih.gov\/pmc\/articles\/PMC4925930",
+ "snippet": "We present the essential characteristics of “Emergencia timonensis”
+ strain SN18 (= CSUR P2260), a new member of the order Clostridiales that was
+ isolated from the stool of healthy patient.", "dateLastCrawled": "2017-01-07T14:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Emergency
+ Kits - ready.navy.mil", "url": "https:\/\/www.ready.navy.mil\/build_a_kit\/emergency_kits.html",
+ "urlPingSuffix": "DevEx,5134.1", "displayUrl": "https:\/\/www.ready.navy.mil\/build_a_kit\/emergency_kits.html",
+ "snippet": "To fully prepare your family for an emergency, create one or more
+ emergency kits, well in advance of a crisis, that include enough supplies
+ for at least three days.", "dateLastCrawled": "2018-11-16T08:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Líneas
+ de Ayuda para Emergencias - pr.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/L%c3%adneasdeAyudaparaEmergencias.aspx",
+ "urlPingSuffix": "DevEx,5147.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/LíneasdeAyudaparaEmergencias.aspx",
+ "snippet": "SERVICIOS DE EMERGENCIA. Policía, Bomberos, Emergencias Médicas,
+ Agencia Estatal para el Manejo de Emergencias y Administración de Desastres.",
+ "dateLastCrawled": "2018-11-15T17:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Life-or-Death Emergencies - State", "url": "https:\/\/travel.state.gov\/content\/travel\/en\/passports\/apply-renew-passport\/emergencies.html",
+ "urlPingSuffix": "DevEx,5164.1", "displayUrl": "https:\/\/travel.state.gov\/content\/travel\/en\/passports\/apply-renew...",
+ "snippet": "Life-or-death emergencies are serious illnesses, injuries, or
+ deaths in your immediate family that require you to travel outside the United
+ States within 72 hours (3 business days). You must provide all the usual application
+ documentation in addition to proof of the life-or-death emergency.", "dateLastCrawled":
+ "2018-11-12T01:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Mi Kit de Emergencia | FEMA.gov", "url": "https:\/\/www.fema.gov\/media-library\/assets\/images\/167258",
+ "urlPingSuffix": "DevEx,5176.1", "displayUrl": "https:\/\/www.fema.gov\/media-library\/assets\/images\/167258",
+ "snippet": "Mi Kit de Emergencia: Cuando nos estamos preparando para un
+ evento como un huracán, todos debemos tener nuestro propio kit de emergencia.
+ ¡Prepara el tuyo! Colorea la mochila como más te guste. Luego, circula 7 artículos
+ que incluirías en tu kit de emergencia.", "dateLastCrawled": "2018-11-15T20:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Emergency
+ Alerts | Ready.gov", "url": "https:\/\/www.ready.gov\/alerts", "urlPingSuffix":
+ "DevEx,5190.1", "displayUrl": "https:\/\/www.ready.gov\/alerts", "snippet":
+ "Public safety officials use timely and reliable systems to alert you and
+ your family in the event of natural or man-made disasters. This page describes
+ different warning alerts you can receive and the types of devices that receive
+ the alerts.", "dateLastCrawled": "2018-11-11T12:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "The Emergency Food Assistance Program (TEFAP) | Food and ...",
+ "url": "https:\/\/www.fns.usda.gov\/tefap\/emergency-food-assistance-program-tefap",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www.fns.usda.gov\/tefap",
+ "snippet": "The Emergency Food Assistance Program (TEFAP) is a Federal program
+ that helps supplement the diets of low-income Americans, including elderly
+ people, by providing them with emergency food and nutrition assistance at
+ no cost. It provides food and administrative funds to States to supplement
+ the diets of these groups.", "dateLastCrawled": "2018-11-16T08:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Emergency
+ Supply List - Spanish Language | FEMA.gov", "url": "https:\/\/www.fema.gov\/media-library\/assets\/documents\/90755",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.fema.gov\/media-library\/assets\/documents\/90755",
+ "snippet": "Emergency Supply List - Spanish Language Artículos recomendados
+ para incluir en un equipo básico de suministros de emergencia. Lista completa
+ de materiales sugeridos que se deben usar para prepararse para emergencias
+ en el hogar y para las familias.", "dateLastCrawled": "2018-11-05T01:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Ayuda
+ y alivio por emergencia en casos de desastre para ...", "url": "https:\/\/www.irs.gov\/es\/businesses\/small-businesses-self-employed\/disaster-assistance-and-emergency-relief-for-individuals-and-businesses",
+ "urlPingSuffix": "DevEx,5231.1", "displayUrl": "https:\/\/www.irs.gov\/es\/businesses\/small-businesses-self-employed\/...",
+ "snippet": "Las disposiciones especiales de la ley tributaria pueden ayudar
+ a los contribuyentes y los negocios a recuperarse financieramente del impacto
+ de un desastre, sobre todo cuando el gobierno federal declara su ubicación
+ como una zona de desastre mayor. Dependiendo de las circunstancias, el Servicio
+ de ...", "dateLastCrawled": "2018-11-09T05:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Cuidado de animales | FEMA.gov", "url": "https:\/\/www.fema.gov\/node\/33066",
+ "urlPingSuffix": "DevEx,5244.1", "displayUrl": "https:\/\/www.fema.gov\/node\/33066",
+ "snippet": "durante situaciones de emergencia y desastre. Pida a amigos
+ y familiares que los cuiden o manténgalos consigo. Asegúrese de que el animal
+ doméstico tenga las chapas de identificación apropiadas fijadas al collar.
+ Una fotografía actual de su animal ayudará a identificarlo si fuera necesario.",
+ "dateLastCrawled": "2018-11-14T19:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Emergency Farm Loans - fsa.usda.gov", "url": "https:\/\/www.fsa.usda.gov\/programs-and-services\/farm-loan-programs\/emergency-farm-loans\/index",
+ "urlPingSuffix": "DevEx,5260.1", "displayUrl": "https:\/\/www.fsa.usda.gov\/programs-and-services\/farm-loan-programs\/...",
+ "snippet": "The Emergency loan program is triggered when a natural disaster
+ is designated by the Secretary of Agriculture or a natural disaster or emergency
+ is declared by the President under the Stafford Act. These loans help producers
+ who suffer qualifying farm related losses directly caused by the disaster
+ in a county declared or designated as a primary disaster or quarantine area.",
+ "dateLastCrawled": "2018-11-19T10:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Home | FEMA.gov", "url": "https:\/\/www.fema.gov\/", "urlPingSuffix":
+ "DevEx,5274.1", "about": [{"name": "Federal Emergency Management Agency"},
+ {"name": "Federal Emergency Management Agency"}], "displayUrl": "https:\/\/www.fema.gov",
+ "snippet": "FEMA Corps. The winter FEMA Corps application deadline has
+ now been extended to November 18th. This unique program unites individuals
+ who share a passion for service and provides the ultimate professional development
+ experience.", "dateLastCrawled": "2018-11-15T17:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Desastres y emergencias | USAGov", "url": "https:\/\/gobierno.usa.gov\/desastres-y-emergencias",
+ "urlPingSuffix": "DevEx,5287.1", "displayUrl": "https:\/\/gobierno.usa.gov\/desastres-y-emergencias",
+ "snippet": "Sepa qué hacer para estar preparado ante una emergencia y recibir
+ ayuda para la recuperación después de un desastre natural. JavaScript must
+ be enabled in your browser in order to use some functions.", "dateLastCrawled":
+ "2018-11-09T09:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Know Your Alerts and Warnings | FEMA.gov", "url": "https:\/\/www.fema.gov\/media-library\/assets\/documents\/133452",
+ "urlPingSuffix": "DevEx,5300.1", "displayUrl": "https:\/\/www.fema.gov\/media-library\/assets\/documents\/133452",
+ "snippet": "Know Your Alerts and Warnings The factsheet provides a brief
+ summary of the various alerts and warnings available from Federal, state,
+ and local governments, as well as the private sector, that you can sign up
+ for to stay informed and be ready to take action to stay safe.", "dateLastCrawled":
+ "2018-11-15T07:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Emergency Preparedness Materials in Spanish (Families ...", "url":
+ "https:\/\/www.fema.gov\/media-library\/resources-documents\/collections\/355",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "https:\/\/www.fema.gov\/media-library\/resources-documents\/collections\/355",
+ "snippet": "Ya sea que tenga que decidir quedarse en un lugar en caso de emergencia
+ o trasladarse a un lugar más seguro, debe hacer planes por anticipado para
+ sus mascotas. Tenga en cuenta que lo que es mejor para usted normalmente es
+ lo mejor para sus animales.", "dateLastCrawled": "2018-11-11T15:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Kit de
+ suministros básicos para casos de desastre | Ready.gov", "url": "https:\/\/www.ready.gov\/es\/kit-de-suministros-basicos-para-casos-de-desastre",
+ "urlPingSuffix": "DevEx,5326.1", "displayUrl": "https:\/\/www.ready.gov\/es\/kit-de-suministros-basicos-para-casos-de...",
+ "snippet": "En una emergencia, saber cómo tratar lesiones leves puede marcar
+ la diferencia. Puede considerar tomar una clase de primeros auxilios, pero
+ el simple hecho de contar con los siguientes artículos puede ayudarlo a detener
+ un sangrado, prevenir una infección y ayudar a descontaminar.", "dateLastCrawled":
+ "2018-11-15T20:30:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:54 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Featured_Collections.yml b/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Featured_Collections.yml
index 0be1db9b46..bd24437c51 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Featured_Collections.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_on_sites_with_Featured_Collections.yml
@@ -424,4 +424,475 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:09 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=warnings%20for%20a%20tornado%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4154'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:51 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0B46BE8A3CE4607B0C19B2263D3361F0; path=/; expires=Sat, 14-Dec-2019 22:40:51
+ GMT; domain=bingapis.com
+ - MUIDB=0B46BE8A3CE4607B0C19B2263D3361F0; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:51 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:51 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7607BCC978B8492D887FC4F5D4E6BE4E&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:51 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:51
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=386CD82DE0746D262090D481E1A36C13; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:51 GMT; domain=bingapis.com
+ - _SS=SID=386CD82DE0746D262090D481E1A36C13; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 51EB836963B64013885B74F1CD6F313B
+ X-Msedge-Clientid:
+ - 0B46BE8A3CE4607B0C19B2263D3361F0
+ X-Msapi-Userstate:
+ - 66d1
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 51EB836963B64013885B74F1CD6F313B Ref B: CO1EDGE0112 Ref C: 2018-11-19T22:40:51Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:51 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E7E2A9B4C77B4417A3A989B3D182EBBC&CID=0B46BE8A3CE4607B0C19B2263D3361F0&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E7E2A9B4C77B4417A3A989B3D182EBBC&CID=0B46BE8A3CE4607B0C19B2263D3361F0&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=warnings+for+a+tornado+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5423.1", "totalEstimatedMatches": 8170000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Active Alerts - National Weather Service", "url": "https:\/\/www.weather.gov\/alerts",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "National Weather Service"}],
+ "displayUrl": "https:\/\/www.weather.gov\/alerts", "snippet": "National
+ Weather Service. National Headquarters. Active Alerts. Weather.gov >
+ Active Alerts ... Excessive Rainfall and Winter Weather Forecasts National
+ River Flooding Latest Warnings Thunderstorm\/Tornado Outlook Hurricanes
+ Fire Weather Outlooks UV Alerts Tsunamis Drought Space Weather NOAA Weather
+ Radio NWS CAP Feeds Wireless Emergency Alerts ...", "dateLastCrawled": "2018-11-15T07:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Tornadoes
+ | Ready.gov", "url": "https:\/\/www.ready.gov\/tornadoes", "urlPingSuffix":
+ "DevEx,5073.1", "about": [{"name": "Tornado"}], "displayUrl": "https:\/\/www.ready.gov\/tornadoes",
+ "snippet": "if you are under a tornado warning, find safe shelter right
+ away If you can safely get to a sturdy building, then do so immediately. Go
+ to a safe room, basement, or storm cellar.", "dateLastCrawled": "2018-11-16T00:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Severe
+ Weather Definitions", "url": "https:\/\/www.weather.gov\/bgm\/severedefinitions",
+ "urlPingSuffix": "DevEx,5088.1", "about": [{"name": "Severe weather"}], "displayUrl":
+ "https:\/\/www.weather.gov\/bgm\/severedefinitions", "snippet": "Like a
+ Tornado Warning, the Severe Thunderstorm Warning is issued by your National
+ Weather Service Forecast Office (see map above). Severe Thunderstorm Warnings
+ will include where the storm was located, what towns will be affected by the
+ severe thunderstorm, and the primary threat associated with the severe thunderstorm
+ warning.", "dateLastCrawled": "2018-11-12T03:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Tornado Safety - National Weather Service", "url": "https:\/\/www.weather.gov\/ctp\/TornadoSafety",
+ "urlPingSuffix": "DevEx,5103.1", "about": [{"name": "Tornado"}], "displayUrl":
+ "https:\/\/www.weather.gov\/ctp\/TornadoSafety", "snippet": "Severe weather
+ warnings are issued for counties, or for portions of counties. By keeping
+ a highway roadmap nearby, you can follow storm movements, and better determine
+ if you are threatened. Have a NOAA Weather Radio handy at all times.", "dateLastCrawled":
+ "2018-11-16T08:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Watch\/Warning\/Advisory Definitions", "url": "https:\/\/www.weather.gov\/lwx\/WarningsDefined",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/www.weather.gov\/lwx\/WarningsDefined",
+ "snippet": "When a tornado warning is issued, seek safe shelter immediately.
+ Tropical Storm Watch A Tropical Storm Watch is issued when a tropical
+ cyclone containing winds of 34 to 63 kt (39 to 73 mph) or higher poses a possible
+ threat, generally within 48 hours.", "dateLastCrawled": "2018-11-15T19:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Alerts
+ & Warning Systems - Storm Aware", "url": "https:\/\/stormaware.mo.gov\/alerts\/",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/stormaware.mo.gov\/alerts",
+ "snippet": "All individuals living or working in tornado-prone areas should
+ have a weather radio inside their home or place of work. A weather radio is
+ particularly important for those living in an area that does not have storm
+ warning sirens.", "dateLastCrawled": "2018-11-15T10:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Being Prepared
+ (Part 1)|Tornadoes", "url": "https:\/\/www.cdc.gov\/disasters\/tornadoes\/prepared.html",
+ "urlPingSuffix": "DevEx,5145.1", "displayUrl": "https:\/\/www.cdc.gov\/disasters\/tornadoes\/prepared.html",
+ "snippet": "Know how to distinguish between the siren''s warnings for a tornado
+ watch and a tornado warning. Tornado Watch A tornado watch is issued
+ when weather conditions favor the formation of tornadoes, for example, during
+ a severe thunderstorm.", "dateLastCrawled": "2018-11-14T18:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Severe
+ Thunderstorm Risk This Evening - Tornado Watch in ...", "url": "https:\/\/www.weather.gov\/mkx\/aug18severe",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Tornado watch"}], "displayUrl":
+ "https:\/\/www.weather.gov\/mkx\/aug18severe", "snippet": "The most likely
+ time for severe weather is during the evening hours. If you''re planning
+ any outdoor activities this afternoon and evening, stay abreast of the latest
+ forecast, and heed any watches, warnings and statements.", "dateLastCrawled":
+ "2018-11-16T04:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Preparing for a Tornado - StormAware Tornado Safety", "url":
+ "https:\/\/stormaware.mo.gov\/preparing-for-a-tornado\/", "urlPingSuffix":
+ "DevEx,5174.1", "displayUrl": "https:\/\/stormaware.mo.gov\/preparing-for-a-tornado",
+ "snippet": "Preparing for a Tornado. What is StormAware? ... have a NOAA
+ weather radio in case of severe weather warnings in the middle of the night
+ and that you have signed up for severe weather alerts by text message or
+ other means. Basic Tips.", "dateLastCrawled": "2018-11-16T10:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Current
+ Watches, Warnings and Advisories for the United ...", "url": "https:\/\/alerts.weather.gov\/cap\/us.php?x=1",
+ "urlPingSuffix": "DevEx,5187.1", "about": [{"name": "National Weather Service"}],
+ "displayUrl": "https:\/\/alerts.weather.gov\/cap\/us.php?x=1", "snippet":
+ "The National Weather Service in Shreveport has issued a Freeze Warning,
+ which is in effect from 9 PM this evening to 9 AM CST Freeze Warning 2018-11-14T12:42:00-06:00
+ 2018-11-15T09:00:00-06:00 Actual Alert Met Expected Moderate Likely Caldwell;
+ Grant; La Salle; Natchitoches; Sabine; Winn FIPS6 022021 022043 022059 022069
+ 022085 022127 UGC ...", "dateLastCrawled": "2018-11-16T06:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Tornado
+ Warning - Glossary - NOAA''s National Weather Service", "url": "http:\/\/w1.weather.gov\/glossary\/index.php?word=tornado+warning",
+ "urlPingSuffix": "DevEx,5202.1", "about": [{"name": "Tornado warning"}], "displayUrl":
+ "w1.weather.gov\/glossary\/index.php?word=tornado+warning", "snippet": "A
+ Tornado Warning is issued by your local National Weather Service office
+ (NWFO). It will include where the tornado was located and what towns will
+ be in its path. If the tornado will affect the nearshore or coastal waters,
+ it will be issued as the combined product--Tornado Warning and Special Marine
+ Warning.", "dateLastCrawled": "2018-11-04T18:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Tornadoes 101 | National Oceanic and Atmospheric ...", "url": "https:\/\/www.noaa.gov\/stories\/tornadoes-101",
+ "urlPingSuffix": "DevEx,5214.1", "displayUrl": "https:\/\/www.noaa.gov\/stories\/tornadoes-101",
+ "snippet": "A Tornado Warning means a tornado has been sighted or indicated
+ by weather radar — time to take cover! Your local National Weather Service
+ office issues tornado and severe thunderstorm warnings.. How many people
+ are killed by tornadoes each year?", "dateLastCrawled": "2018-11-15T18:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Severe
+ Weather 101: Tornado Basics", "url": "https:\/\/www.nssl.noaa.gov\/education\/svrwx101\/tornadoes\/",
+ "urlPingSuffix": "DevEx,5228.1", "about": [{"name": "Tornado"}], "displayUrl":
+ "https:\/\/www.nssl.noaa.gov\/education\/svrwx101\/tornadoes", "snippet":
+ "A Tornado WARNING is issued by your local NOAA National Weather Service
+ Forecast Office meteorologists who watch the weather 24\/7 over a designated
+ area. This means a tornado has been reported by spotters or indicated by
+ radar and there is a serious threat to life and property to those in the path
+ of the tornado.", "dateLastCrawled": "2018-11-15T04:51:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Contact Us
+ - National Weather Service", "url": "https:\/\/www.weather.gov\/contact\/weatherreadynation\/wea.html",
+ "urlPingSuffix": "DevEx,5241.1", "displayUrl": "https:\/\/www.weather.gov\/contact\/weatherreadynation\/wea.html",
+ "snippet": "Watches are issued primarily for areas where well organized or
+ significant severe weather is possible, or the severe weather threat is
+ expected to persist for many hours. A Severe Thunderstorm Warning or Tornado
+ Warning is issued when severe thunderstorms or Tornadoes are occurring
+ or imminent in the warning area.", "dateLastCrawled": "2018-11-16T05:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Hurricane
+ and Tropical Storm Watches, Warnings, Advisories ...", "url": "https:\/\/www.weather.gov\/safety\/hurricane-ww",
+ "urlPingSuffix": "DevEx,5255.1", "about": [{"name": "Tropical cyclone warnings
+ and watches"}, {"name": "National Hurricane Center"}], "displayUrl": "https:\/\/www.weather.gov\/safety\/hurricane-ww",
+ "snippet": "Tropical Cyclone Public Advisory: The Tropical Cyclone Public
+ Advisory contains a list of all current coastal watches and warnings associated
+ with an ongoing or potential tropical cyclone, a post-tropical cyclone, or
+ a subtropical cyclone. It also provides the cyclone position, maximum sustained
+ winds, current motion, and a description of the hazards associated with the
+ storm.", "dateLastCrawled": "2018-11-13T18:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Storm Prediction Center - Current Convective Watches", "url": "https:\/\/www.spc.noaa.gov\/products\/watch\/",
+ "urlPingSuffix": "DevEx,5267.1", "about": [{"name": "Tornado watch"}], "displayUrl":
+ "https:\/\/www.spc.noaa.gov\/products\/watch", "snippet": "SPC Current Tornado\/Severe
+ Thunderstorm Watches Page Severe weather, tornado, thunderstorm, fire
+ weather, storm report, tornado watch, severe thunderstorm watch, mesoscale
+ discussion, convective outlook products from the Storm Prediction Center.",
+ "dateLastCrawled": "2018-11-16T05:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Email and SMS Weather Alert Services", "url": "https:\/\/www.weather.gov\/subscribe",
+ "urlPingSuffix": "DevEx,5281.1", "about": [{"name": "National Weather Service"}],
+ "displayUrl": "https:\/\/www.weather.gov\/subscribe", "snippet": "Customizable
+ location-based severe weather warnings issued by the National Weather Service
+ can also be included for a 99 cent lifetime subscription. Users may select
+ the types of warnings they would like to receive and set a personal warning
+ radius.", "dateLastCrawled": "2018-11-14T19:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Severe Weather Watches and Warnings - 2018 Severe Weather ...",
+ "url": "https:\/\/www.weather.gov\/mpx\/swawday1", "urlPingSuffix": "DevEx,5297.1",
+ "displayUrl": "https:\/\/www.weather.gov\/mpx\/swawday1", "snippet": "Are
+ issued when conditions are favorable for tornadoes, severe thunderstorms
+ or flash floods. If you are in a watch area, continue with normal activities
+ but also make plans to seek shelter if necessary. Warnings... Are issued
+ when severe weather has been reported or is imminent. Seek shelter ...",
+ "dateLastCrawled": "2018-11-12T12:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "National Weather Service Text Product Display", "url": "https:\/\/forecast.weather.gov\/product_types.php?site=NWS?prodtype=tornado",
+ "urlPingSuffix": "DevEx,5309.1", "about": [{"name": "Tornado warning"}], "displayUrl":
+ "https:\/\/forecast.weather.gov\/product_types.php?site=NWS?prodtype=...",
+ "snippet": "National Weather Service is your source for the most complete
+ weather forecast and weather related information on the web", "dateLastCrawled":
+ "2018-10-29T11:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "NWS - Watch, Warning, Advisory Display", "url": "https:\/\/www.spc.noaa.gov\/products\/wwa\/",
+ "urlPingSuffix": "DevEx,5322.1", "about": [{"name": "National Weather Service"}],
+ "displayUrl": "https:\/\/www.spc.noaa.gov\/products\/wwa", "snippet": "NWS
+ Warnings and Advisories on this map become active links to IWIN products
+ (below): ... Tornado Watch Tornado Warning* Severe Thunderstorm Watch
+ Severe Thunderstorm Warning* Hurricane Watch Hurricane Warning Tropical
+ Storm Watch Tropical Storm Warning: Flash Flood Watch Flash Flood Warning*
+ Coastal\/Flood Watch Coastal\/Flood Warning", "dateLastCrawled": "2018-11-14T21:16:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:52 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=atlantic%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4177'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:52 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3A046BAF228569EC0FF96703235268FB; path=/; expires=Sat, 14-Dec-2019 22:40:52
+ GMT; domain=bingapis.com
+ - MUIDB=3A046BAF228569EC0FF96703235268FB; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:52 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:52 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=4BCF4FA4A79F457BAEB792A4D2BE234C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:52 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:52
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0554500EB2F9624011405CA2B32E63FD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:52 GMT; domain=bingapis.com
+ - _SS=SID=0554500EB2F9624011405CA2B32E63FD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - D47994F17D854F0B8725D7FD85CA7F8B
+ X-Msedge-Clientid:
+ - 3A046BAF228569EC0FF96703235268FB
+ X-Msapi-Userstate:
+ - '7568'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: D47994F17D854F0B8725D7FD85CA7F8B Ref B: CO1EDGE0514 Ref C: 2018-11-19T22:40:52Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:52 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=3B3345DC9B8D405CB655CB3CF34D1799&CID=3A046BAF228569EC0FF96703235268FB&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=3B3345DC9B8D405CB655CB3CF34D1799&CID=3A046BAF228569EC0FF96703235268FB&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=atlantic+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5414.1", "totalEstimatedMatches": 10700000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Atlantic 2-Day Graphical Tropical Weather Outlook", "url": "https:\/\/www.nhc.noaa.gov\/gtwo.php?basin=atlc&fdays=2",
+ "urlPingSuffix": "DevEx,5056.1", "displayUrl": "https:\/\/www.nhc.noaa.gov\/gtwo.php?basin=atlc&fdays=2",
+ "snippet": "This product is updated at approximately 1 AM, 7 AM, 1 PM, and
+ 7 PM EST from June 1 to November 30, with special outlooks issued at any time
+ as conditions warrant.", "dateLastCrawled": "2018-11-09T03:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Atlantic,
+ PA - National Weather Service", "url": "https:\/\/www.weather.gov\/ctp\/Atlantic",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.weather.gov\/ctp\/Atlantic",
+ "snippet": "There were 23 deaths; five in Atlantic, three in Cochranton,
+ five in Cooperstown, one at the trailer park, two at Cherry Tree, and seven
+ at Tionesta. About 371 homes were damaged or destroyed. A mobile home park
+ just west of Atlantic was completely destroyed.", "dateLastCrawled": "2018-11-15T03:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Forecasters
+ predict a near- or above-normal 2018 Atlantic ...", "url": "https:\/\/www.noaa.gov\/media-release\/forecasters-predict-near-or-above-normal-2018-atlantic-hurricane-season",
+ "urlPingSuffix": "DevEx,5084.1", "displayUrl": "https:\/\/www.noaa.gov\/media-release\/forecasters-predict-near-or...",
+ "snippet": "In addition to the Atlantic hurricane season outlook, NOAA also
+ issued seasonal hurricane outlooks for the eastern and central Pacific basins.
+ An 80 percent chance of a near- or above-normal season is predicted for both
+ the eastern and central Pacific regions.", "dateLastCrawled": "2018-11-16T03:53:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Ocean
+ Prediction Center - Atlantic Marine", "url": "https:\/\/www.opc.ncep.noaa.gov\/Atl_tab.shtml",
+ "urlPingSuffix": "DevEx,5097.1", "displayUrl": "https:\/\/www.opc.ncep.noaa.gov\/Atl_tab.shtml",
+ "snippet": "Atlantic Iceberg Analysis and Outlook Products. North American
+ Ice Service (NAIS) Products - Courtesy of the U.S. Coast Guard International
+ Ice Patrol: NAIS Iceberg Chart: NAIS Weekly Iceberg Outlook (pdf) NAIS outlooks
+ are typically updated on Wednesday. Atlantic Hazard Products.", "dateLastCrawled":
+ "2018-11-15T12:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Atlantic and Caribbean Tropical Satellite Imagery ...", "url":
+ "https:\/\/www.ssd.noaa.gov\/PS\/TROP\/trop-atl.html", "urlPingSuffix": "DevEx,5110.1",
+ "displayUrl": "https:\/\/www.ssd.noaa.gov\/PS\/TROP\/trop-atl.html", "snippet":
+ "Links to outside sites and more satellite data: NOAA National Hurricane Center
+ - for official forecasts and outlooks.; University of Wisconsin SSEC GOES
+ Images and Loops; Advanced Scatterometer Winds: ASCAT METOP-A | ASCAT METOP-B
+ RAMSDIS Online - Tropical", "dateLastCrawled": "2018-11-16T00:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "NOAA forecasters
+ lower Atlantic hurricane season ...", "url": "https:\/\/www.noaa.gov\/media-release\/noaa-forecasters-lower-atlantic-hurricane-season-prediction",
+ "urlPingSuffix": "DevEx,5123.1", "displayUrl": "https:\/\/www.noaa.gov\/media-release\/noaa-forecasters-lower-atlantic...",
+ "snippet": "Conditions in the ocean and the atmosphere are conspiring to produce
+ a less active Atlantic hurricane season than initially predicted in May,
+ though NOAA and FEMA are raising caution as the season enters its peak months.",
+ "dateLastCrawled": "2018-11-13T04:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Tropical Cyclone Names", "url": "https:\/\/www.nhc.noaa.gov\/aboutnames.shtml",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.nhc.noaa.gov\/aboutnames.shtml",
+ "snippet": "Since 1953, Atlantic tropical storms had been named from lists
+ originated by the National Hurricane Center. They are now maintained and
+ updated through a strict procedure by an international committee of the World
+ Meteorological Organization. The six lists above are used in rotation and
+ re-cycled every six years, i.e., the 2018 list will be used again in 2024.",
+ "dateLastCrawled": "2018-11-15T00:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Climate Prediction Center - Atlantic Hurricane Outlook", "url":
+ "http:\/\/www.cpc.ncep.noaa.gov\/products\/outlooks\/hurricane.shtml", "urlPingSuffix":
+ "DevEx,5151.1", "about": [{"name": "National Hurricane Center"}], "displayUrl":
+ "www.cpc.ncep.noaa.gov\/products\/outlooks\/hurricane.shtml", "snippet":
+ "The updated 2018 Atlantic hurricane season outlook is an official product
+ of the National Oceanic and Atmospheric Administration (NOAA) Climate Prediction
+ Center (CPC). The outlook is produced in collaboration with hurricane experts
+ from NOAA''s National Hurricane Center (NHC) and the Hurricane ...", "dateLastCrawled":
+ "2018-11-14T00:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Atlantic OCS Region | BOEM", "url": "https:\/\/www.boem.gov\/Atlantic-Region\/",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.boem.gov\/Atlantic-Region",
+ "snippet": "The Atlantic OCS Region is divided into four planning areas:
+ North Atlantic, Mid-Atlantic, South Atlantic, Straits of Florida, for
+ administrative purposes under the Oil and Gas Leasing Program.", "dateLastCrawled":
+ "2018-11-15T22:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Consumer Price Index, Philadelphia-Camden-Wilmington ...", "url":
+ "https:\/\/www.bls.gov\/regions\/mid-atlantic\/news-release\/2018\/consumerpriceindex_philadelphia_20181114.htm",
+ "urlPingSuffix": "DevEx,5178.1", "displayUrl": "https:\/\/www.bls.gov\/regions\/mid-atlantic\/news-release\/2018\/...",
+ "snippet": "The Consumer Price Index for All Urban Consumers (CPI-U) for Philadelphia-Camden-Wilmington
+ was unchanged from August to October, the U.S. Bureau of Labor Statistics
+ reported today.", "dateLastCrawled": "2018-11-17T10:52:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Average Energy
+ Prices, Washington-Arlington-Alexandria ...", "url": "https:\/\/www.bls.gov\/regions\/mid-atlantic\/news-release\/2018\/averageenergyprices_washingtondc_20181116.htm",
+ "urlPingSuffix": "DevEx,5191.1", "displayUrl": "https:\/\/www.bls.gov\/regions\/mid-atlantic\/news-release\/2018\/average...",
+ "snippet": "The price paid by Washington area consumers for utility (piped)
+ gas, commonly referred to as natural gas, was $0.918 per therm in October,
+ 10.3 percent below the national average of $1.023 per therm.", "dateLastCrawled":
+ "2018-11-16T20:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Atlantic Resolve - www.eur.army.mil", "url": "http:\/\/www.eur.army.mil\/AtlanticResolve\/",
+ "urlPingSuffix": "DevEx,5205.1", "displayUrl": "www.eur.army.mil\/AtlanticResolve",
+ "snippet": "Atlantic Resolve is a demonstration of continued U.S. commitment
+ to collective security through a series of actions designed to reassure NATO
+ allies and partners of America''s dedication to enduring peace and stability
+ in the region.", "dateLastCrawled": "2018-11-15T19:14:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "National Hurricane
+ Center", "url": "https:\/\/www.nhc.noaa.gov\/", "urlPingSuffix": "DevEx,5217.1",
+ "displayUrl": "https:\/\/www.nhc.noaa.gov", "snippet": "Atlantic - Caribbean
+ Sea - Gulf of Mexico: Tropical Weather Outlook (en Español*) 700 AM EST Mon
+ Nov 19 2018: Tropical Weather Discussion 649 AM EST Mon Nov 19 2018: There
+ are no tropical cyclones in the Atlantic at this time.", "dateLastCrawled":
+ "2018-11-19T16:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "GOES-East - Regional Sector Images: Tropical Atlantic ...", "url":
+ "https:\/\/www.star.nesdis.noaa.gov\/GOES\/sector.php?sat=G16§or=taw",
+ "urlPingSuffix": "DevEx,5228.1", "displayUrl": "https:\/\/www.star.nesdis.noaa.gov\/GOES\/sector.php?sat=G16§or=taw",
+ "snippet": "GOES-East - Regional sector view: Tropical Atlantic - wide view.
+ Generated every 5 minutes; click to access the latest available image for
+ each band.", "dateLastCrawled": "2018-11-13T11:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "U.S. Army Regional Health Command - Atlantic", "url": "https:\/\/www.army.mil\/RHCAtlantic",
+ "urlPingSuffix": "DevEx,5242.1", "displayUrl": "https:\/\/www.army.mil\/RHCAtlantic",
+ "snippet": "Regional Health Command-Atlantic provides a proactive, patient-centered
+ system of health those entrusted to our care medically-ready force. Leaders
+ Commanding General Brig. Gen. Telita Crosland", "dateLastCrawled": "2018-11-15T23:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Unemployment
+ in the Philadelphia Area by County ...", "url": "https:\/\/www.bls.gov\/regions\/mid-atlantic\/news-release\/2018\/unemployment_philadelphia_20181116.htm",
+ "urlPingSuffix": "DevEx,5255.1", "displayUrl": "https:\/\/www.bls.gov\/regions\/mid-atlantic\/news-release\/2018\/...",
+ "snippet": "From September 2017 to September 2018, all 11 counties in the
+ Philadelphia metropolitan area had unemployment rate decreases. Salem County,
+ NJ, had the largest rate decrease at 1.1 percentage points and was among the
+ four local counties with a rate decrease that exceeded the 0.5-percentage
+ point national decline.", "dateLastCrawled": "2018-11-16T16:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "How big
+ is the Atlantic Ocean?", "url": "https:\/\/oceanservice.noaa.gov\/facts\/atlantic.html",
+ "urlPingSuffix": "DevEx,5270.1", "about": [{"name": "Atlantic Ocean"}], "displayUrl":
+ "https:\/\/oceanservice.noaa.gov\/facts\/atlantic.html", "snippet": "The
+ Atlantic Ocean lies between North and South America on the west and Europe
+ and Africa on the east. Up north, the Atlantic connects to the Arctic Ocean
+ and to the Southern Ocean to the south. Scientists often divide the Atlantic
+ into two basins: the North Atlantic and the South Atlantic.", "dateLastCrawled":
+ "2018-11-10T06:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Atlantic Sturgeon | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/atlantic-sturgeon",
+ "urlPingSuffix": "DevEx,5283.1", "about": [{"name": "Atlantic sturgeon"}],
+ "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/atlantic-sturgeon",
+ "snippet": "Atlantic sturgeon live in rivers and coastal waters from Canada
+ to Florida. Hatched in the freshwater of rivers, Atlantic sturgeon head
+ out to sea as juveniles, and return to their birthplace to spawn, or lay eggs,
+ when they reach adulthood.", "dateLastCrawled": "2018-11-08T06:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "GOES
+ East Atlantic Links from STAR - NOAA GOES ...", "url": "https:\/\/www.goes.noaa.gov\/Atlantic.html",
+ "urlPingSuffix": "DevEx,5295.1", "displayUrl": "https:\/\/www.goes.noaa.gov\/Atlantic.html",
+ "snippet": "Geostationary Satellite Data. Page design updated on May 15, 2018
+ May 15, 2018", "dateLastCrawled": "2018-11-08T12:56:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Atlantic Highly
+ Migratory Species | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/topic\/atlantic-highly-migratory-species",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/topic\/atlantic-highly-migratory-species",
+ "snippet": "Highly migratory species (HMS) travel long distances and often
+ cross domestic and international boundaries. NOAA Fisheries manages HMS fisheries—tunas,
+ sharks, swordfish, and billfish—in U.S. Atlantic Ocean, Gulf of Mexico,
+ and Caribbean waters.", "dateLastCrawled": "2018-11-07T17:29:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:52 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_with_active_RSS_feeds.yml b/features/vcr_cassettes/Legacy_Search/Searching_with_active_RSS_feeds.yml
index 27ad689a92..ddd2a32d70 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_with_active_RSS_feeds.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_with_active_RSS_feeds.yml
@@ -1894,4 +1894,2074 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:44:27 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=first%20item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4968'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:34 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1E3B369B8330631A36E43A3782E762E8; path=/; expires=Sat, 14-Dec-2019 22:39:34
+ GMT; domain=bingapis.com
+ - MUIDB=1E3B369B8330631A36E43A3782E762E8; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:34 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:34 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=BCB7F7149318414BAB670641003A07AF&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:34 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:34
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=07AF9C6B05096253244890C704DE6348; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:34 GMT; domain=bingapis.com
+ - _SS=SID=07AF9C6B05096253244890C704DE6348; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 00EF26348B60454F8893B9D595A806B4
+ X-Msedge-Clientid:
+ - 1E3B369B8330631A36E43A3782E762E8
+ X-Msapi-Userstate:
+ - '1919'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 00EF26348B60454F8893B9D595A806B4 Ref B: CO1EDGE0922 Ref C: 2018-11-19T22:39:34Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:34 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=638F2A29033A47F4997A530124B25833&CID=1E3B369B8330631A36E43A3782E762E8&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=638F2A29033A47F4997A530124B25833&CID=1E3B369B8330631A36E43A3782E762E8&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=first+item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 427000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "1.WN GO 2. MASK OR RESPIRATOR 3. GOGGLES OR FACE SHIELD", "url": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "urlPingSuffix": "DevEx,5057.1", "displayUrl": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "snippet": "peel off second glove over first glove • Discard gloves in a
+ waste container. 2. GOGGLES OR FACE SHIELD ... • If the item is reusable,
+ place in designated receptacle for reprocessing. Otherwise, discard in a waste
+ container. 3.WN GO • Gown front and sleeves are contaminated!", "dateLastCrawled":
+ "2018-11-14T17:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "List 1 HTSUS Product Description - ustr.gov", "url": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations\/List%201.pdf",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations...",
+ "snippet": "List 1 . HTSUS Subheading Product Description 2845.90.00 Isotopes
+ not in heading 2844 and their compounds other than heavy water 4011.30.00
+ New pneumatic tires, of rubber, of a kind used on aircraft", "dateLastCrawled":
+ "2018-11-11T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "First U.S. Patent Issued Today in 1790 | USPTO", "url": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued-today-1790",
+ "urlPingSuffix": "DevEx,5080.1", "displayUrl": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued...",
+ "snippet": "On July 31, 1790 Samuel Hopkins was issued the first patent
+ for a process of making potash, an ingredient used in fertilizer. The patent
+ was signed by President George Washington. Hopkins was born in Vermont, but
+ was living in Philadelphia, Pa. when the patent was granted.", "dateLastCrawled":
+ "2018-11-10T14:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "First 5 California - State Site", "url": "http:\/\/www.ccfc.ca.gov\/",
+ "urlPingSuffix": "DevEx,5094.1", "displayUrl": "www.ccfc.ca.gov", "snippet":
+ "First 5 California was created by voters under Proposition 10 to recognize
+ that children''s health and education are a top priority, especially in the
+ early years of development. Research shows that critical brain growth and
+ other developmental milestones take place during the earliest years of a child''s
+ life.", "dateLastCrawled": "2018-11-15T22:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Boston.gov", "url": "https:\/\/www.boston.gov\/", "urlPingSuffix":
+ "DevEx,5108.1", "about": [{"name": "Eliot Burying Ground"}, {"name": "Boston
+ City Hall Plaza"}, {"name": "Boston"}], "displayUrl": "https:\/\/www.boston.gov",
+ "snippet": "City releases first-ever inventory of Boston''s income-restricted
+ housing . Neighborhood Development. More City news. BOS:311 service requests
+ BOS:311. ... (wait until three hours after snowfall ends) Request a bulk item
+ pickup. Request to salt or plow a street. Report a pothole. Report a parking
+ violation. Report a missing or damaged street sign.", "dateLastCrawled": "2018-11-15T19:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "First
+ Grade Mathematics Item Specifications", "url": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs-0717.pdf",
+ "urlPingSuffix": "DevEx,5120.1", "displayUrl": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs...",
+ "snippet": "One of the documents developed is the item specification document,
+ which includes all Missouri grade level\/course expectations arranged by domains\/strands.",
+ "dateLastCrawled": "2018-11-11T01:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "First Course of Treatment", "url": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "snippet": "Record the date of this surgical procedure in data item Date
+ of First Course of Treatment (NAACCR Item #1270) and\/or Date of First
+ Surgical Procedure (NAACCR Item #1200) as appropriate. • Codes 0–7 are hierarchical.
+ If only one procedure can be recorded, code the procedure that is numerically",
+ "dateLastCrawled": "2018-11-15T18:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "First Aid List - Occupational Safety and Health Administration",
+ "url": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf", "urlPingSuffix":
+ "DevEx,5142.1", "displayUrl": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf",
+ "snippet": "First Aid List 1904.7 (b)(5)(ii) What is “first aid”? For
+ the purposes of Part 1904, \"first aid\" means the following: (A) Using
+ a nonprescription medication at nonprescription strength (for medications",
+ "dateLastCrawled": "2018-11-16T09:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Register to Vote and Check or Change Registration | USAGov", "url":
+ "https:\/\/www.usa.gov\/register-to-vote", "urlPingSuffix": "DevEx,5156.1",
+ "displayUrl": "https:\/\/www.usa.gov\/register-to-vote", "snippet": "But
+ first, you need to register before your state’s deadline. Check with your
+ local election office. You can register there or you may be able to register
+ online, at the Department of Motor Vehicles, or using the National Mail Voter
+ Registration Form.", "dateLastCrawled": "2018-10-21T11:12:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "A Brief Overview
+ of Depreciation | Internal Revenue Service", "url": "https:\/\/www.irs.gov\/businesses\/small-businesses-self-employed\/a-brief-overview-of-depreciation",
+ "urlPingSuffix": "DevEx,5171.1", "about": [{"name": "Depreciation"}], "displayUrl":
+ "https:\/\/www.irs.gov\/...\/a-brief-overview-of-depreciation", "snippet":
+ "Depreciation is an income tax deduction that allows a taxpayer to recover
+ the cost or other basis of certain property. It is an annual allowance for
+ the wear and tear, deterioration, or obsolescence of the property.", "dateLastCrawled":
+ "2018-11-07T11:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Best Practices Guide: Fundamentals of a Workplace First ...", "url":
+ "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf", "urlPingSuffix":
+ "DevEx,5183.1", "displayUrl": "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf",
+ "snippet": "First aid is emergency care provided for injury or sudden illness
+ before emergency medical treatment is available. The first-aid provider
+ in the workplace is someone who is trained in the delivery of initial medical
+ emergency procedures, using a limited amount of", "dateLastCrawled": "2018-11-13T20:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "hours
+ per response . ..2395.73 FORM 10-K - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "urlPingSuffix": "DevEx,5194.1", "about": [{"name": "Form 10-K"}, {"name":
+ "Form 10-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "snippet": "(1)The combined report contains full and complete answers to all
+ items required by Form 10-K. When responses to a certain item of required
+ disclosure are separated within the combined report, an appropriate cross-reference
+ should", "dateLastCrawled": "2018-11-14T20:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "The first spadeful | Library of Congress", "url": "https:\/\/www.loc.gov\/item\/2010717820\/",
+ "urlPingSuffix": "DevEx,5206.1", "displayUrl": "https:\/\/www.loc.gov\/item\/2010717820",
+ "snippet": "Title The first spadeful Summary Theodore Roosevelt standing
+ among ships in harbor and digging and throwing dirt in direction of \"Bogota,\"
+ while small man on hill raises flag \"new treaty.\"", "dateLastCrawled": "2018-08-21T03:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "USPS
+ RETURNS CUSTOMER GUIDE", "url": "https:\/\/ribbs.usps.gov\/shipproductsservices\/documents\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/ribbs.usps.gov\/...\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "snippet": "USPS RETURNS CUSTOMER GUIDE ... hassle-free customer returns
+ policy helps merchants win the first order and a positive returns ... merchandise,
+ test kits, samples and other items. Merchants are charged only if and when
+ the labels are used. Exhibit 2: MRS label example", "dateLastCrawled": "2018-11-15T17:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "\"The
+ first vote\" - Home | Library of Congress", "url": "https:\/\/www.loc.gov\/pictures\/item\/00651117\/",
+ "urlPingSuffix": "DevEx,5231.1", "displayUrl": "https:\/\/www.loc.gov\/pictures\/item\/00651117",
+ "snippet": "Yes, the item is digitized. Please use the digital image in
+ preference to requesting the original. All images can be viewed at a large
+ size when you are in any reading room at the Library of Congress.", "dateLastCrawled":
+ "2018-10-12T23:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Home Inventory Checklist", "url": "http:\/\/www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "urlPingSuffix": "DevEx,5243.1", "displayUrl": "www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "snippet": "HOME INVENTORY CHECKLIST ... Items such as sofas, tables,
+ beds, TVs, refrigerators, and lawn mowers should be included in such a schedule.
+ As you compile your inventory, supplement it with receipts indicating the
+ date of purchase and purchase price and photographs of", "dateLastCrawled":
+ "2018-11-15T05:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "U.S. Senate: Constitution of the United States", "url": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "snippet": "The Seats of the Senators of the first Class shall be vacated
+ at the Expiration of the second Year, of the second Class at the Expiration
+ of the fourth Year, and of the third Class at the Expiration of the sixth
+ Year, so that one third may be chosen every second Year; and if Vacancies
+ happen by Resignation, or otherwise, during the Recess of ...", "dateLastCrawled":
+ "2018-11-05T00:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Subpart 9.3—First Article Testing and Approval", "url": "https:\/\/www.acquisition.gov\/sites\/default\/files\/current\/far\/html\/Subpart%209_3.html",
+ "urlPingSuffix": "DevEx,5268.1", "displayUrl": "https:\/\/www.acquisition.gov\/sites\/default\/files\/current\/far\/html...",
+ "snippet": "(j) Inform offerors that the prices for first articles and first
+ article tests in relation to production quantities shall not be materially
+ unbalanced (see 15.404-1(g)) if first article test items or tests are
+ to be separately priced.", "dateLastCrawled": "2018-11-15T05:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5285.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure
+ that the item will fit in the overhead bin or underneath the seat of the
+ airplane.", "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "ISTEP+ Grades 3-8, 10 | IDOE", "url": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8-10",
+ "urlPingSuffix": "DevEx,5301.1", "about": [{"name": "Indiana Statewide Testing
+ for Educational Progress-Plus"}], "displayUrl": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8",
+ "snippet": "The Item Samplers on this website provide information about
+ ISTEP+ for students, parents, educators, and others. The items in each sampler
+ are examples of the types of items found on ISTEP+. These examples can serve
+ as models when teachers are constructing items for classroom assessment.",
+ "dateLastCrawled": "2018-11-16T08:22:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:35 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=first%20item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4966'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:35 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2AA812E990146D9000D91E4591C36C0A; path=/; expires=Sat, 14-Dec-2019 22:39:36
+ GMT; domain=bingapis.com
+ - MUIDB=2AA812E990146D9000D91E4591C36C0A; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:36 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:35 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=48CE478D1501458E8F9559F3C0585B90&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:35 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:35
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=23C8F45321F662993A8EF8FF202163AD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:36 GMT; domain=bingapis.com
+ - _SS=SID=23C8F45321F662993A8EF8FF202163AD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 269D650B3E854245A170AAE2F190118F
+ X-Msedge-Clientid:
+ - 2AA812E990146D9000D91E4591C36C0A
+ X-Msapi-Userstate:
+ - c6f2
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 269D650B3E854245A170AAE2F190118F Ref B: CO1EDGE0916 Ref C: 2018-11-19T22:39:36Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:35 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=C0B75CEF10FA404195559170428433CD&CID=2AA812E990146D9000D91E4591C36C0A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=C0B75CEF10FA404195559170428433CD&CID=2AA812E990146D9000D91E4591C36C0A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=first+item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 427000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "1.WN GO 2. MASK OR RESPIRATOR 3. GOGGLES OR FACE SHIELD", "url": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "urlPingSuffix": "DevEx,5057.1", "displayUrl": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "snippet": "peel off second glove over first glove • Discard gloves in a
+ waste container. 2. GOGGLES OR FACE SHIELD ... • If the item is reusable,
+ place in designated receptacle for reprocessing. Otherwise, discard in a waste
+ container. 3.WN GO • Gown front and sleeves are contaminated!", "dateLastCrawled":
+ "2018-11-14T17:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "List 1 HTSUS Product Description - ustr.gov", "url": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations\/List%201.pdf",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations...",
+ "snippet": "List 1 . HTSUS Subheading Product Description 2845.90.00 Isotopes
+ not in heading 2844 and their compounds other than heavy water 4011.30.00
+ New pneumatic tires, of rubber, of a kind used on aircraft", "dateLastCrawled":
+ "2018-11-11T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "First U.S. Patent Issued Today in 1790 | USPTO", "url": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued-today-1790",
+ "urlPingSuffix": "DevEx,5080.1", "displayUrl": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued...",
+ "snippet": "On July 31, 1790 Samuel Hopkins was issued the first patent
+ for a process of making potash, an ingredient used in fertilizer. The patent
+ was signed by President George Washington. Hopkins was born in Vermont, but
+ was living in Philadelphia, Pa. when the patent was granted.", "dateLastCrawled":
+ "2018-11-10T14:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "First 5 California - State Site", "url": "http:\/\/www.ccfc.ca.gov\/",
+ "urlPingSuffix": "DevEx,5094.1", "displayUrl": "www.ccfc.ca.gov", "snippet":
+ "First 5 California was created by voters under Proposition 10 to recognize
+ that children''s health and education are a top priority, especially in the
+ early years of development. Research shows that critical brain growth and
+ other developmental milestones take place during the earliest years of a child''s
+ life.", "dateLastCrawled": "2018-11-15T22:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Boston.gov", "url": "https:\/\/www.boston.gov\/", "urlPingSuffix":
+ "DevEx,5108.1", "about": [{"name": "Eliot Burying Ground"}, {"name": "Boston
+ City Hall Plaza"}, {"name": "Boston"}], "displayUrl": "https:\/\/www.boston.gov",
+ "snippet": "City releases first-ever inventory of Boston''s income-restricted
+ housing . Neighborhood Development. More City news. BOS:311 service requests
+ BOS:311. ... (wait until three hours after snowfall ends) Request a bulk item
+ pickup. Request to salt or plow a street. Report a pothole. Report a parking
+ violation. Report a missing or damaged street sign.", "dateLastCrawled": "2018-11-15T19:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "First
+ Grade Mathematics Item Specifications", "url": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs-0717.pdf",
+ "urlPingSuffix": "DevEx,5120.1", "displayUrl": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs...",
+ "snippet": "One of the documents developed is the item specification document,
+ which includes all Missouri grade level\/course expectations arranged by domains\/strands.",
+ "dateLastCrawled": "2018-11-11T01:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "First Course of Treatment", "url": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "snippet": "Record the date of this surgical procedure in data item Date
+ of First Course of Treatment (NAACCR Item #1270) and\/or Date of First
+ Surgical Procedure (NAACCR Item #1200) as appropriate. • Codes 0–7 are hierarchical.
+ If only one procedure can be recorded, code the procedure that is numerically",
+ "dateLastCrawled": "2018-11-15T18:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "First Aid List - Occupational Safety and Health Administration",
+ "url": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf", "urlPingSuffix":
+ "DevEx,5142.1", "displayUrl": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf",
+ "snippet": "First Aid List 1904.7 (b)(5)(ii) What is “first aid”? For
+ the purposes of Part 1904, \"first aid\" means the following: (A) Using
+ a nonprescription medication at nonprescription strength (for medications",
+ "dateLastCrawled": "2018-11-16T09:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Register to Vote and Check or Change Registration | USAGov", "url":
+ "https:\/\/www.usa.gov\/register-to-vote", "urlPingSuffix": "DevEx,5156.1",
+ "displayUrl": "https:\/\/www.usa.gov\/register-to-vote", "snippet": "But
+ first, you need to register before your state’s deadline. Check with your
+ local election office. You can register there or you may be able to register
+ online, at the Department of Motor Vehicles, or using the National Mail Voter
+ Registration Form.", "dateLastCrawled": "2018-10-21T11:12:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "A Brief Overview
+ of Depreciation | Internal Revenue Service", "url": "https:\/\/www.irs.gov\/businesses\/small-businesses-self-employed\/a-brief-overview-of-depreciation",
+ "urlPingSuffix": "DevEx,5171.1", "about": [{"name": "Depreciation"}], "displayUrl":
+ "https:\/\/www.irs.gov\/...\/a-brief-overview-of-depreciation", "snippet":
+ "Depreciation is an income tax deduction that allows a taxpayer to recover
+ the cost or other basis of certain property. It is an annual allowance for
+ the wear and tear, deterioration, or obsolescence of the property.", "dateLastCrawled":
+ "2018-11-07T11:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Best Practices Guide: Fundamentals of a Workplace First ...", "url":
+ "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf", "urlPingSuffix":
+ "DevEx,5183.1", "displayUrl": "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf",
+ "snippet": "First aid is emergency care provided for injury or sudden illness
+ before emergency medical treatment is available. The first-aid provider
+ in the workplace is someone who is trained in the delivery of initial medical
+ emergency procedures, using a limited amount of", "dateLastCrawled": "2018-11-13T20:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "hours
+ per response . ..2395.73 FORM 10-K - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "urlPingSuffix": "DevEx,5194.1", "about": [{"name": "Form 10-K"}, {"name":
+ "Form 10-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "snippet": "(1)The combined report contains full and complete answers to all
+ items required by Form 10-K. When responses to a certain item of required
+ disclosure are separated within the combined report, an appropriate cross-reference
+ should", "dateLastCrawled": "2018-11-14T20:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "The first spadeful | Library of Congress", "url": "https:\/\/www.loc.gov\/item\/2010717820\/",
+ "urlPingSuffix": "DevEx,5206.1", "displayUrl": "https:\/\/www.loc.gov\/item\/2010717820",
+ "snippet": "Title The first spadeful Summary Theodore Roosevelt standing
+ among ships in harbor and digging and throwing dirt in direction of \"Bogota,\"
+ while small man on hill raises flag \"new treaty.\"", "dateLastCrawled": "2018-08-21T03:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "USPS
+ RETURNS CUSTOMER GUIDE", "url": "https:\/\/ribbs.usps.gov\/shipproductsservices\/documents\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/ribbs.usps.gov\/...\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "snippet": "USPS RETURNS CUSTOMER GUIDE ... hassle-free customer returns
+ policy helps merchants win the first order and a positive returns ... merchandise,
+ test kits, samples and other items. Merchants are charged only if and when
+ the labels are used. Exhibit 2: MRS label example", "dateLastCrawled": "2018-11-15T17:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "\"The
+ first vote\" - Home | Library of Congress", "url": "https:\/\/www.loc.gov\/pictures\/item\/00651117\/",
+ "urlPingSuffix": "DevEx,5231.1", "displayUrl": "https:\/\/www.loc.gov\/pictures\/item\/00651117",
+ "snippet": "Yes, the item is digitized. Please use the digital image in
+ preference to requesting the original. All images can be viewed at a large
+ size when you are in any reading room at the Library of Congress.", "dateLastCrawled":
+ "2018-10-12T23:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Home Inventory Checklist", "url": "http:\/\/www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "urlPingSuffix": "DevEx,5243.1", "displayUrl": "www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "snippet": "HOME INVENTORY CHECKLIST ... Items such as sofas, tables,
+ beds, TVs, refrigerators, and lawn mowers should be included in such a schedule.
+ As you compile your inventory, supplement it with receipts indicating the
+ date of purchase and purchase price and photographs of", "dateLastCrawled":
+ "2018-11-15T05:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "U.S. Senate: Constitution of the United States", "url": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "snippet": "The Seats of the Senators of the first Class shall be vacated
+ at the Expiration of the second Year, of the second Class at the Expiration
+ of the fourth Year, and of the third Class at the Expiration of the sixth
+ Year, so that one third may be chosen every second Year; and if Vacancies
+ happen by Resignation, or otherwise, during the Recess of ...", "dateLastCrawled":
+ "2018-11-05T00:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Subpart 9.3—First Article Testing and Approval", "url": "https:\/\/www.acquisition.gov\/sites\/default\/files\/current\/far\/html\/Subpart%209_3.html",
+ "urlPingSuffix": "DevEx,5268.1", "displayUrl": "https:\/\/www.acquisition.gov\/sites\/default\/files\/current\/far\/html...",
+ "snippet": "(j) Inform offerors that the prices for first articles and first
+ article tests in relation to production quantities shall not be materially
+ unbalanced (see 15.404-1(g)) if first article test items or tests are
+ to be separately priced.", "dateLastCrawled": "2018-11-15T05:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5285.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure
+ that the item will fit in the overhead bin or underneath the seat of the
+ airplane.", "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "ISTEP+ Grades 3-8, 10 | IDOE", "url": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8-10",
+ "urlPingSuffix": "DevEx,5301.1", "about": [{"name": "Indiana Statewide Testing
+ for Educational Progress-Plus"}], "displayUrl": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8",
+ "snippet": "The Item Samplers on this website provide information about
+ ISTEP+ for students, parents, educators, and others. The items in each sampler
+ are examples of the types of items found on ISTEP+. These examples can serve
+ as models when teachers are constructing items for classroom assessment.",
+ "dateLastCrawled": "2018-11-16T08:22:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:36 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=loren%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4288'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:36 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=23F991448163672502949DE880B466A5; path=/; expires=Sat, 14-Dec-2019 22:39:37
+ GMT; domain=bingapis.com
+ - MUIDB=23F991448163672502949DE880B466A5; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:37 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:36 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F7DB49377B194B1693831C9A324D7C69&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:36 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:36
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=359AFA50229A68630D59F6FC234D694F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:37 GMT; domain=bingapis.com
+ - _SS=SID=359AFA50229A68630D59F6FC234D694F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 465EB1C144C64B589A790607D2B3DCAC
+ X-Msedge-Clientid:
+ - 23F991448163672502949DE880B466A5
+ X-Msapi-Userstate:
+ - 26bd
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 465EB1C144C64B589A790607D2B3DCAC Ref B: CO1EDGE0122 Ref C: 2018-11-19T22:39:37Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:36 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D8D02034C91845999557D5339ED25354&CID=23F991448163672502949DE880B466A5&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D8D02034C91845999557D5339ED25354&CID=23F991448163672502949DE880B466A5&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=loren+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5407.1", "totalEstimatedMatches": 457000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Donald P. Loren - Office of Public and Intergovernmental ...", "url":
+ "https:\/\/www.va.gov\/opa\/bios\/bio_loren.asp", "urlPingSuffix": "DevEx,5059.1",
+ "displayUrl": "https:\/\/www.va.gov\/opa\/bios\/bio_loren.asp", "snippet":
+ "Donald P. Loren Assistant Secretary Operations, Security, and Preparedness.
+ Donald P. Loren was appointed by President Trump to serve as the Department
+ of Veterans Affairs’ (VA) Assistant Secretary for Operations, Security, and
+ Preparedness.", "dateLastCrawled": "2018-11-16T09:36:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Loren L. AliKhan
+ | jnc", "url": "https:\/\/jnc.dc.gov\/biography\/loren-l-alikhan", "urlPingSuffix":
+ "DevEx,5073.1", "displayUrl": "https:\/\/jnc.dc.gov\/biography\/loren-l-alikhan",
+ "snippet": "Loren L. AliKhan Before joining the D.C. Office of the Attorney
+ General in 2013, Loren was an attorney with O''Melveny & Myers LLP focusing
+ on Supreme Court and appellate litigation.", "dateLastCrawled": "2018-11-09T00:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Loren
+ Sweatt | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/news\/speeches\/04092018",
+ "urlPingSuffix": "DevEx,5085.1", "displayUrl": "https:\/\/www.osha.gov\/news\/speeches\/04092018",
+ "snippet": "Remarks As Prepared For Delivery By Loren Sweatt Deputy Assistant
+ Secretary of Labor for Occupational Safety and Health Stand-up for Grain Engulfment
+ Prevention Week, April 9-13, 2018", "dateLastCrawled": "2018-11-15T18:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Contact
+ Person —Mr. Loren Hovel Title —Mayor Address — PO ...", "url": "https:\/\/www.dot.nd.gov\/divisions\/ets\/RFPs\/docs\/1305\/OPD%20Decision%20Document%20SS-8-011(042)165.pdf",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "https:\/\/www.dot.nd.gov\/divisions\/ets\/RFPs\/docs\/1305\/OPD
+ Decision...", "snippet": "Project Eligibility • The State Highway must be
+ located within the City Limits. • The population must be <5,000. Contact Information
+ and Signature", "dateLastCrawled": "2018-11-17T13:39:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Loren Wobig,
+ P.E. CFM - Water Resources", "url": "https:\/\/www.dnr.illinois.gov\/WaterResources\/Pages\/OWRStaff_WobigLoren.aspx",
+ "urlPingSuffix": "DevEx,5111.1", "displayUrl": "https:\/\/www.dnr.illinois.gov\/...\/Pages\/OWRStaff_WobigLoren.aspx",
+ "snippet": "Loren Wobig has been working for the State of Illinois for over
+ 30 years as a licensed Professional Engineer in Illinois, Certified Floodplain
+ Manager, Civil Engineer, area Permit Engineer, Project Engineer, Project Manager,
+ and Division Manager.", "dateLastCrawled": "2018-11-10T21:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Loren
+ Sweatt - Deputy Assistant Secretary of Labor for ...", "url": "https:\/\/www.osha.gov\/as\/opa\/sweatt_bio.html",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/www.osha.gov\/as\/opa\/sweatt_bio.html",
+ "snippet": "Loren Sweatt joined the Occupational Safety and Health Administration
+ July 24, 2017. Ms. Sweatt joins the agency from the U.S. House of Representatives
+ where she served as a Senior Policy Advisor at the Committee on Education
+ and the Workforce for the last 15 years. In this role, Ms. Sweatt handled
+ ...", "dateLastCrawled": "2018-11-12T00:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Loren Khogali | Michigan Indigent Defense Commission", "url": "https:\/\/michiganidc.gov\/staff\/loren-khogali\/",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/michiganidc.gov\/staff\/loren-khogali",
+ "snippet": "Since 2005, Loren has served in a variety of leadership roles
+ for the board of directors of the ACLU of Michigan, including serving as board
+ chair. She participates on the Criminal Jurisprudence and Practice Committee
+ of the State Bar of Michigan.", "dateLastCrawled": "2018-11-16T13:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Loren
+ Sweatt | U.S. Department of Labor Blog", "url": "https:\/\/blog.dol.gov\/author\/loren-sweatt",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/blog.dol.gov\/author\/loren-sweatt",
+ "snippet": "Loren Sweatt. on June 19, 2018 • 1 Comment. Many Americans work
+ in trenches installing and repairing utility lines to ensure our modern conveniences
+ are always available. It is critical for these workers to know how to stay
+ safe.", "dateLastCrawled": "2018-11-07T10:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Biographical Data - nasa.gov", "url": "https:\/\/www.nasa.gov\/sites\/default\/files\/atoms\/files\/shriver_loren.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "displayUrl": "https:\/\/www.nasa.gov\/sites\/default\/files\/atoms\/files\/shriver_loren.pdf",
+ "snippet": "Loren Shriver is Vice President, Engineering and Integration,
+ for United Space Alliance and is USA’s Chief Technology Officer. He is responsible
+ for Engineering and Int egration functions and processes, software engineering
+ and product system software processes, and", "dateLastCrawled": "2018-11-11T07:15:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Loren
+ Sweatt | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/news\/speeches\/10052017",
+ "urlPingSuffix": "DevEx,5171.1", "displayUrl": "https:\/\/www.osha.gov\/news\/speeches\/10052017",
+ "snippet": "Remarks As Prepared For Delivery By Loren Sweatt Deputy Assistant
+ Secretary of Labor for Occupational Safety and Health VPP Ceremony at Marine
+ Corps Air Facility, Quantico, VA", "dateLastCrawled": "2018-11-12T22:45:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Former
+ Executive Director of St. Clair Housing Commission ...", "url": "https:\/\/www.justice.gov\/usao-edmi\/pr\/former-executive-director-st-clair-housing-commission-pleads-guilty-federal-program",
+ "urlPingSuffix": "DevEx,5189.1", "displayUrl": "https:\/\/www.justice.gov\/usao-edmi\/pr\/former-executive-director-st...",
+ "snippet": "Loren faces a maximum of five years in prison and a fine of
+ up to $250,000. The case was investigated by agents of U.S. Department of
+ Housing and Urban Development-Office of Inspector General and the Macomb Resident
+ Agency of the Federal Bureau of Investigation.", "dateLastCrawled": "2018-06-11T03:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "PFW |
+ Montana | Region 6", "url": "https:\/\/www.fws.gov\/mountain-prairie\/refuges\/montanaPFW.php",
+ "urlPingSuffix": "DevEx,5203.1", "displayUrl": "https:\/\/www.fws.gov\/mountain-prairie\/refuges\/montanaPFW.php",
+ "snippet": "Home. Welcome to Region 6. The Mountain-Prairie Region consists
+ of 8 states in the heart of the American west including Colorado, Kansas,
+ Montana, Nebraska, North Dakota, South Dakota, Utah and Wyoming.", "dateLastCrawled":
+ "2018-11-13T05:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Kunar veterinarians praise Iowa ADT programs | Article ...", "url":
+ "https:\/\/www.army.mil\/article\/53907\/kunar_veterinarians_praise_iowa_adt_programs",
+ "urlPingSuffix": "DevEx,5217.1", "displayUrl": "https:\/\/www.army.mil\/article\/53907",
+ "snippet": "Maj. Loren Adams, a doctor of veterinarian medicine who serves
+ as the Agribusiness Development Team''s veterinary officer, had seven veterinarians
+ practicing in Kunar province come to the ...", "dateLastCrawled": "2018-11-13T21:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Speeches
+ | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/news\/speeches",
+ "urlPingSuffix": "DevEx,5231.1", "displayUrl": "https:\/\/www.osha.gov\/news\/speeches",
+ "snippet": "Occupational Safety and Health Administration Powered by Translate.
+ English | Spanish. Search. A TO Z INDEX. About OSHA . About OSHA ; Organizational
+ Chart ; All About OSHA (booklet) Regional and Area Offices ... Loren Sweatt.
+ Subject: VPP Ceremony at Marine Corps Air Facility, Quantico, Va.", "dateLastCrawled":
+ "2018-11-14T07:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Loren W. Holzhueter and ISC, Inc. (d\/b\/a Insurance Service ...",
+ "url": "https:\/\/www.sec.gov\/litigation\/complaints\/2015\/comp23182.pdf",
+ "urlPingSuffix": "DevEx,5243.1", "displayUrl": "https:\/\/www.sec.gov\/litigation\/complaints\/2015\/comp23182.pdf",
+ "snippet": "Loren Holzhueter is a longtime resident of Jefferson County
+ , Wisconsin and has worked in the area of Oconomowoc and Watertown, Wisconsin
+ for at least the past 30 years.", "dateLastCrawled": "2018-11-02T12:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Licensee:
+ Loren Wessel | Board of Podiatry Examiners", "url": "https:\/\/podiatry.az.gov\/licensee\/pod-000367",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/podiatry.az.gov\/licensee\/pod-000367",
+ "snippet": "On or about April 29, 1998, a patient visited Licensee for the
+ purpose of diagnosis and treatment of pain in her fourth left toe. Licensee
+ performed a partial phenol matrixectomy left fourth toe.", "dateLastCrawled":
+ "2018-11-12T01:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Bi-Weekly E-News Memo - Occupational Safety and Health ...", "url":
+ "https:\/\/www.osha.gov\/as\/opa\/quicktakes\/qt081517.html", "urlPingSuffix":
+ "DevEx,5268.1", "displayUrl": "https:\/\/www.osha.gov\/as\/opa\/quicktakes\/qt081517.html",
+ "snippet": "Loren Sweatt joined the Occupational Safety and Health Administration
+ July 24, 2017. Ms. Sweatt joins the agency from the U.S. House of Representatives
+ where she served as a Senior Policy Advisor at the Committee on Education
+ and the Workforce for the last 15 years.", "dateLastCrawled": "2018-10-30T11:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "LOREN
+ HAMS - Montana", "url": "http:\/\/wcc.dli.mt.gov\/H\/HAMS_L_FFCL.htm", "urlPingSuffix":
+ "DevEx,5282.1", "displayUrl": "wcc.dli.mt.gov\/H\/HAMS_L_FFCL.htm", "snippet":
+ "Petitioner, Loren Hams (claimant), was represented by Mr. Kenneth S. Thomas.
+ Respondent, Liberty Northwest Insurance Corporation (Liberty), was represented
+ by Mr. Larry W. Jones. A trial transcript has not been prepared.", "dateLastCrawled":
+ "2018-11-06T22:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Hon. Loren Baily-Schiffman - NYCOURTS.GOV", "url": "http:\/\/www.nycourts.gov\/courts\/2jd\/kings\/civil\/BailySchiffmanRules.shtml",
+ "urlPingSuffix": "DevEx,5296.1", "displayUrl": "www.nycourts.gov\/courts\/2jd\/kings\/civil\/BailySchiffmanRules.shtml",
+ "snippet": "The official home page of the New York State Unified Court System.
+ We hear more than three million cases a year involving almost every type of
+ endeavor. We hear family matters, personal injury claims, commercial disputes,
+ trust and estates issues, criminal cases, and landlord-tenant cases.", "dateLastCrawled":
+ "2018-11-14T20:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Statement by Deputy Assistant Secretary of Labor for ...", "url":
+ "https:\/\/www.osha.gov\/news\/newsreleases\/trade\/04272018", "urlPingSuffix":
+ "DevEx,5308.1", "displayUrl": "https:\/\/www.osha.gov\/news\/newsreleases\/trade\/04272018",
+ "snippet": "Safety and Health Loren Sweatt on Workers’ Memorial Day 2018.
+ WASHINGTON, DC - April 28 is Workers’ Memorial Day, a time we remember and
+ honor the men and women who have lost their lives on the job. The Department
+ of Labor is committed to ensuring safe and healthful workplaces for all American
+ workers.", "dateLastCrawled": "2018-11-11T22:31:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:37 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=noticia%20uno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4897'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:38 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2BC058618BD863730EC454CD8A0F62E4; path=/; expires=Sat, 14-Dec-2019 22:39:38
+ GMT; domain=bingapis.com
+ - MUIDB=2BC058618BD863730EC454CD8A0F62E4; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:38 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:38 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A3D142AD2D8C44DCA3538EA85B3E87CA&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:38 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:38
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=04BC3E4D244667F43AFE32E1259166D5; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:38 GMT; domain=bingapis.com
+ - _SS=SID=04BC3E4D244667F43AFE32E1259166D5; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 49AAC4529B8E45BBB96EE8CE1F7AF006
+ X-Msedge-Clientid:
+ - 2BC058618BD863730EC454CD8A0F62E4
+ X-Msapi-Userstate:
+ - c274
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 49AAC4529B8E45BBB96EE8CE1F7AF006 Ref B: CO1EDGE0422 Ref C: 2018-11-19T22:39:38Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:38 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=6E0A6B3CACC94FEAAE36DCB854025318&CID=2BC058618BD863730EC454CD8A0F62E4&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=6E0A6B3CACC94FEAAE36DCB854025318&CID=2BC058618BD863730EC454CD8A0F62E4&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=noticia+uno+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5434.1", "totalEstimatedMatches": 554000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Preguntas y Respuestas: Se extiende TPS para hondureños ...", "url": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se-extiende-tps-para-hondurenos-por-18-meses-mas",
+ "urlPingSuffix": "DevEx,5060.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se...",
+ "snippet": "Para solicitar un cambio de fecha de su cita en un ASC, envíe
+ la copia original de su cita con el cambio de fecha a la dirección de ASC
+ que figura en el aviso. Asegúrese de hacer una copia de su aviso original
+ y manténgalo en sus archivos.", "dateLastCrawled": "2018-11-16T11:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Información
+ General sobre el ITIN | Internal Revenue Service", "url": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general-itin-information",
+ "urlPingSuffix": "DevEx,5072.1", "displayUrl": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general...",
+ "snippet": "Un extranjero que no es residente y no califica para un SSN,
+ quien tiene un requisito de presentar una declaración federal de impuestos
+ sólo para reclamar un reembolso bajo las provisiones de algún acuerdo con
+ los Estados Unidos, necesita un ITIN.", "dateLastCrawled": "2018-11-07T05:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Tarjeta
+ Verde para Familiares Inmediatos de un Ciudadano ...", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "urlPingSuffix": "DevEx,5089.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "snippet": "Si usted es un familiar inmediato de un ciudadano estadounidense,
+ puede convertirse en residente permanente legal (obtener una Tarjeta Verde)
+ a base de su relación familiar, si cumple con ciertos requisitos de elegibilidad.",
+ "dateLastCrawled": "2018-11-13T21:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Nuevos Inmigrantes Ahora pueden Crear una Cuenta de USCIS ...", "url":
+ "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora-pueden-crear-una-cuenta-de-uscis-en-linea-al-pagar-la-tarifa-de-inmigrante-de-uscis",
+ "urlPingSuffix": "DevEx,5105.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora...",
+ "snippet": "Un mensaje a los nuevos inmigrantes: Ahora usted tiene la opción
+ de crear una cuenta de USCIS en línea al momento de pagar la Tarifa de Inmigrante
+ de USCIS. Una cuenta en línea le permitirá dar seguimiento fácilmente al estatus
+ de su Tarjeta Verde, recibir notificaciones electrónicas y ...", "dateLastCrawled":
+ "2018-11-07T03:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "| Policía de Puerto Rico", "url": "https:\/\/policia.pr.gov\/", "urlPingSuffix":
+ "DevEx,5118.1", "about": [{"name": "Puerto Rico Police"}], "displayUrl": "https:\/\/policia.pr.gov",
+ "snippet": "Dato importante: Con la nueva disposición de ley, si un peatón
+ muere atropellado, el conductor responsable se expone a 8 años de cárcel sin
+ derecho a probatoria si se va a la fuga y abandona la escena.", "dateLastCrawled":
+ "2018-11-13T21:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Trabajadores de Cuidado de Niños : Occupational Outlook ...", "url":
+ "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare-workers.htm",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare...",
+ "snippet": "Se proyecta que el empleo de los trabajadores de cuidado de niños
+ aumentará un 14 por ciento entre el 2012 y el 2022, casi tan rápido como
+ el promedio de todas las ocupaciones. Los padres continuarán necesitando quien
+ cuide de sus hijos mientras ellos trabajan.", "dateLastCrawled": "2018-11-14T13:15:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Preguntas
+ y Respuestas sobre temas relacionados a ...", "url": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas-y-respuestas-sobre-temas-relacionados-residencia-permanente-green-card",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas...",
+ "snippet": "Nota importante: Las siguientes respuestas en el artículo sobre
+ ciudadanía en el Consejero de Inmigración de Univision.com no deben ser interpretadas
+ como un derecho o beneficio sustantivo o procesal de forma legal por cualquier
+ entidad en contra de los Estados Unidos, sus agencias, representantes o cualquier
+ otra persona.", "dateLastCrawled": "2018-11-15T00:38:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Robo de Identidad
+ | Información para consumidores", "url": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "snippet": "Revise cada uno de sus tres informes de crédito por lo menos
+ una vez al año. Para solicitar sus informes gratuitos, visite annualcreditreport.com.
+ Para más recomendaciones preventivas — y para acceder a recursos que puede
+ compartir con otras personas — visite ftc.gov\/robodeidentidad.", "dateLastCrawled":
+ "2018-11-13T04:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Cambios del Seguro Social para el 2015 - ssa.gov", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola-datos.html",
+ "urlPingSuffix": "DevEx,5178.1", "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola...",
+ "snippet": "Bajo estos límites, se retendrá un dólar de los beneficios por
+ cada $3 de salarios que sobrepasen el límite anteriormente mencionado. Una
+ vez que la persona cumple su plena edad de jubilación, los límites de salarios
+ cesan de aplicarse.", "dateLastCrawled": "2018-11-15T23:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Ceremonias
+ de Naturalización | USCIS", "url": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "snippet": "Un pasaporte estadounidense sirve como prueba oficial de ciudadanía
+ adicional a su Certificado de Naturalización. Recibirá una solicitud para
+ un pasaporte estadounidense en el Paquete de Bienvenida de Ciudadano Estadounidense
+ que le entregará en su ceremonia de naturalización.", "dateLastCrawled": "2018-11-15T10:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "¿Cuánto
+ tiempo tarda el trámite de residencia? | USCIS", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos-para-la-tarjeta-verde\/cuanto-tiempo-tarda-el-tramite-de-residencia",
+ "urlPingSuffix": "DevEx,5209.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos...",
+ "snippet": "En la mayoría de los casos, la petición es presentada por un
+ familiar (Formulario I-130, Petición de Familiar Extranjero) o un empleador
+ (Formulario I-140, Petición de Trabajador Extranjero). En algunos casos, usted
+ puede ser elegible para presentar la solicitud a nombre propio.", "dateLastCrawled":
+ "2018-11-16T12:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Información sobre la matrícula y el título de propiedad de ...",
+ "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "urlPingSuffix": "DevEx,5222.1", "displayUrl": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "snippet": "Dicha ley permite a un usuario el obtener un reemplazo o recompra
+ del vehículo cuando el fabricante no es capaz de reparar el vehículo de acuerdo
+ a la garantía expresa después de un número razonable de intentos, mientras
+ el vehículo se encuentra bajo la garantía original del fabricante.", "dateLastCrawled":
+ "2018-11-16T14:08:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Administradores de Servicios Médicos y de Salud ...", "url": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services-managers.htm",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services...",
+ "snippet": "Los administradores de servicios médicos y de salud, también
+ llamados ejecutivos o administradores de atención de la salud, planifican,
+ dirigen y coordinan servicios médicos y de salud. Pueden dirigir un centro
+ de salud completo, especializarse en un área clínica o un departamento
+ específico, o administrar un consultorio para un grupo de médicos.", "dateLastCrawled":
+ "2018-11-12T15:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Cómo solicitar una Visa | Embajada de EE.UU. en Colombia", "url":
+ "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to-apply-es\/",
+ "urlPingSuffix": "DevEx,5251.1", "displayUrl": "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to...",
+ "snippet": "IMPORTANTE: La Embajada de EE. UU. en Bogotá tiene una política
+ específica para aceptar solicitudes de visa de Comerciante (E1) e Inversionista
+ por Tratado (E2) de solicitantes que no demuestren presencia legal y física
+ en Colombia por un mínimo de un año previo a la solicitud de visa E. Tenga
+ en cuenta que la disponibilidad ...", "dateLastCrawled": "2018-11-13T08:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Suicidio
+ y comportamiento suicida: MedlinePlus ...", "url": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "urlPingSuffix": "DevEx,5267.1", "displayUrl": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "snippet": "Es el acto de quitarse deliberadamente la propia vida. El comportamiento
+ suicida es cualquier acción que pudiera llevar a una persona a morir, como
+ tomar una sobredosis de medicamentos o estrellar un automóvil a propósito.",
+ "dateLastCrawled": "2018-11-13T14:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Información para la prensa | Oficina de Prensa ...", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados\/",
+ "urlPingSuffix": "DevEx,5280.1", "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados",
+ "snippet": "Noticias de última hora acerca del fallo de la Corte Suprema
+ referente a la Ley en Defensa del Matrimonio. 31 de mayo del 2013. ... La
+ Administración del Seguro Social propone un proyecto de ley para poner final
+ a las cesantías de los empleados de la oficina estatal de incapacidad a quienes
+ se les paga con fondos federales.", "dateLastCrawled": "2018-11-15T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Embajada
+ de los Estados Unidos en la República Dominicana", "url": "https:\/\/do.usembassy.gov\/es\/",
+ "urlPingSuffix": "DevEx,5293.1", "about": [{"name": "U.S. Embassy Panama"}],
+ "displayUrl": "https:\/\/do.usembassy.gov\/es", "snippet": "Noticias & Eventos.
+ Mensajes de seguridad y emergencia. Restricciones de viajes hacia Haití para
+ el personal del gobierno de EE.UU. ... Información detallada para visitantes
+ sobre cómo solicitar un visado para Estados Unidos. Aprende más. Estoy interesado
+ en servicios a los ciudadanos de E.U.", "dateLastCrawled": "2018-11-15T21:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Noticias
+ - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "urlPingSuffix": "DevEx,5306.1", "displayUrl": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "snippet": "Noticias de programas y estudios patrocinados por el NCI. Noticias.
+ Noticias destacadas Para cáncer de pulmón de células pequeñas, un fármaco
+ de inmunoterapia mejora la supervivencia. Primer estudio en décadas en mostrar
+ que pacientes con este cáncer vivieron más.", "dateLastCrawled": "2018-11-15T09:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "State
+ of New Jersey", "url": "http:\/\/nj.gov\/oag\/news-esp.htm", "urlPingSuffix":
+ "DevEx,5319.1", "displayUrl": "nj.gov\/oag\/news-esp.htm", "snippet": "1\/12
+ - Un Hombre del Condado de Gloucester en Posesión de 76,000 Videos e Imágenes
+ Pornográficas de Menores Condenado a Siete Años de Prision - El acusado fue
+ uno de los 40 hombres arrestados en el operativo “Operación Statewide”",
+ "dateLastCrawled": "2018-11-13T03:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5332.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:39 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:39 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1B82E27AAD2A66B7261EEED6ACFD67E0; path=/; expires=Sat, 14-Dec-2019 22:39:39
+ GMT; domain=bingapis.com
+ - MUIDB=1B82E27AAD2A66B7261EEED6ACFD67E0; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:39 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:39 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F6843CD26BB4416CAFC8BB29E9476470&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:39 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:39
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=115A95D131BA6512111B997D306D6417; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:39 GMT; domain=bingapis.com
+ - _SS=SID=115A95D131BA6512111B997D306D6417; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 532CBFBC79F74921862EF9227D0E3989
+ X-Msedge-Clientid:
+ - 1B82E27AAD2A66B7261EEED6ACFD67E0
+ X-Msapi-Userstate:
+ - '6595'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 532CBFBC79F74921862EF9227D0E3989 Ref B: CO1EDGE0411 Ref C: 2018-11-19T22:39:39Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:39 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A8799B63C33A4A95A8ED1747A743DECF&CID=1B82E27AAD2A66B7261EEED6ACFD67E0&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A8799B63C33A4A95A8ED1747A743DECF&CID=1B82E27AAD2A66B7261EEED6ACFD67E0&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 14800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:40 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:40 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=24441B619B7867A1247D17CD9AAF6668; path=/; expires=Sat, 14-Dec-2019 22:39:40
+ GMT; domain=bingapis.com
+ - MUIDB=24441B619B7867A1247D17CD9AAF6668; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:40 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:40 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A11ECA62E3A044079CEB430AC3316E69&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:40 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:40
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2B03DCCDF7C96FFB3E5FD061F61E6EF8; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:40 GMT; domain=bingapis.com
+ - _SS=SID=2B03DCCDF7C96FFB3E5FD061F61E6EF8; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 94753556835A4E5196F9E2084824D0B0
+ X-Msedge-Clientid:
+ - 24441B619B7867A1247D17CD9AAF6668
+ X-Msapi-Userstate:
+ - b1a6
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 94753556835A4E5196F9E2084824D0B0 Ref B: CO1EDGE0222 Ref C: 2018-11-19T22:39:40Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:40 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A1DA061D79B142309149879369F824FD&CID=24441B619B7867A1247D17CD9AAF6668&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A1DA061D79B142309149879369F824FD&CID=24441B619B7867A1247D17CD9AAF6668&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:41 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=obama%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3568'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:41 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1325E49CBD3163222AEEE830BCE662E2; path=/; expires=Sat, 14-Dec-2019 22:39:41
+ GMT; domain=bingapis.com
+ - MUIDB=1325E49CBD3163222AEEE830BCE662E2; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:41 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:41 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=ECF6030141654C02A64C9F8C82ADC649&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:41 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:41
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=33D3CB3BF4006E1B3A24C797F5D76F01; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:41 GMT; domain=bingapis.com
+ - _SS=SID=33D3CB3BF4006E1B3A24C797F5D76F01; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FDB24C271912483E9DA7FBA6168C484F
+ X-Msedge-Clientid:
+ - 1325E49CBD3163222AEEE830BCE662E2
+ X-Msapi-Userstate:
+ - cf0b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FDB24C271912483E9DA7FBA6168C484F Ref B: CO1EDGE0418 Ref C: 2018-11-19T22:39:41Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:41 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=49F7B2E65719411990173B5B078C3406&CID=1325E49CBD3163222AEEE830BCE662E2&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=49F7B2E65719411990173B5B078C3406&CID=1325E49CBD3163222AEEE830BCE662E2&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=obama+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5423.1", "totalEstimatedMatches": 8780000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5058.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "HealthCare.gov - Get 2019 health coverage. Health ...", "url":
+ "https:\/\/www.healthcare.gov\/", "urlPingSuffix": "DevEx,5071.1", "about":
+ [{"name": "HealthCare.gov"}], "displayUrl": "https:\/\/www.healthcare.gov",
+ "snippet": "Official site of Affordable Care Act. Enroll now for 2019 coverage.
+ See health coverage choices, ways to save today, how law affects you.", "dateLastCrawled":
+ "2018-11-13T18:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "urlPingSuffix": "DevEx,5085.1", "about": [{"name": "Barack Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama", "snippet":
+ "Barack Obama served as the 44th President of the United States. His story
+ is the American story — values from the heartland, a middle-class upbringing
+ in a strong family, hard work and education ...", "dateLastCrawled": "2018-11-15T04:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "The White
+ House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
+ "urlPingSuffix": "DevEx,5099.1", "about": [{"name": "whitehouse.gov"}, {"name":
+ "Barack Obama"}, {"name": "Barack Obama"}, {"name": "White House"}], "displayUrl":
+ "https:\/\/obamawhitehouse.archives.gov", "snippet": "President Obama
+ has protected more natural resources than any other president. American Leadership.
+ President Obama has refocused and reaffirmed American leadership in the
+ world. Economic Progress. President Obama has created jobs, rescued the
+ auto industry, and rebuilt the economy.", "dateLastCrawled": "2018-11-16T10:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Barack
+ Obama Presidential Library", "url": "https:\/\/www.obamalibrary.gov\/", "urlPingSuffix":
+ "DevEx,5114.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=OIP.uec73DYm3UcMXWjirKlrhgHaE9&pid=Api",
+ "about": [{"name": "Barack Obama"}, {"name": "Barack Obama Presidential Center"},
+ {"name": "Barack Obama"}], "displayUrl": "https:\/\/www.obamalibrary.gov",
+ "snippet": "The Obama Presidential Library is part of the presidential libraries
+ system administered by the National Archives and Records Administration, a
+ federal agency.", "dateLastCrawled": "2018-11-12T01:34:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5128.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5142.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past. His ...", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Michelle
+ Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/michelle-obama\/",
+ "urlPingSuffix": "DevEx,5156.1", "about": [{"name": "Michelle Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/michelle-obama", "snippet":
+ "Michelle LaVaughn Robinson Obama is a lawyer, writer, and the wife of the
+ 44th President, Barack Obama. She was the first African-American First Lady
+ of the United States. Through her four main ...", "dateLastCrawled": "2018-11-13T06:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Pardons
+ Granted by President Barack Obama (2009-2017 ...", "url": "https:\/\/www.justice.gov\/pardon\/obama-pardons",
+ "urlPingSuffix": "DevEx,5173.1", "displayUrl": "https:\/\/www.justice.gov\/pardon\/obama-pardons",
+ "snippet": "James Robert Adelman. Offense: Conspiracy to embezzle by trustee
+ or officer; embezzlement by trustee (five counts); making a false account
+ (Northern District of Oklahoma)", "dateLastCrawled": "2018-11-15T17:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Contact
+ the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5186.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Barack Obama | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/administration\/president-obama",
+ "urlPingSuffix": "DevEx,5200.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/administration\/president-obama",
+ "snippet": "President Barack Obama Barack Obama is the 44th President
+ of the United States. His story is the American story -- values from the heartland,
+ a middle-class upbringing in a strong family, hard work and education as the
+ means of getting ahead, and the conviction that a life so blessed should be
+ lived in service to others.", "dateLastCrawled": "2018-11-09T01:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "The White
+ House Blog | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/blog",
+ "urlPingSuffix": "DevEx,5214.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/blog",
+ "snippet": "President Obama delivered his final weekly address thanking
+ the American people for making him a better President and a better man. 6:00
+ AM ET by Tanya Somanader. January 13, 2017. The Schedule. No public schedule
+ available at this time.", "dateLastCrawled": "2018-11-12T10:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Articles
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/articles\/", "urlPingSuffix":
+ "DevEx,5228.1", "displayUrl": "https:\/\/www.whitehouse.gov\/articles",
+ "snippet": "Veterans have no better friend than President Trump. This president
+ and our administration understand that veterans’ benefits are not entitlements
+ – they’re earned. They are the ongoing ...", "dateLastCrawled": "2018-11-15T18:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5242.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Here are a few simple things you can do to make sure your message gets to
+ the White House as quickly as possible. The President and the First Lady
+ strongly encourage all Americans to consider ...", "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "The Cabinet",
+ "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "urlPingSuffix": "DevEx,5256.1", "about": [{"name": "Cabinet"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "Established in Article II, Section 2 of the Constitution, the
+ Cabinet''s role is to advise the President on subjects related to each member''s
+ office.", "dateLastCrawled": "2018-11-15T17:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5269.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Presidential Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "urlPingSuffix": "DevEx,5282.1", "about": [{"name": "Executive order"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Immigration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/issues\/immigration\/",
+ "urlPingSuffix": "DevEx,5296.1", "about": [{"name": "Immigration policy"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/issues\/immigration", "snippet":
+ "The United States must adopt an immigration system that serves the national
+ interest. To restore the rule of law and secure our border, President Trump
+ is committed to constructing a border wall ...", "dateLastCrawled": "2018-11-16T10:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "FACT
+ SHEET: President Obama’s Visit to China | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/the-press-office\/2014\/11\/11\/fact-sheet-president-obama-s-visit-china",
+ "urlPingSuffix": "DevEx,5308.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/the-press-office\/2014\/11\/11\/...",
+ "snippet": "On November 10-12, 2014, President Xi Jinping of China hosted
+ President Barack Obama of the United States for a state visit. The two heads
+ of state exchanged views on a range of subjects and agreed to expand practical
+ cooperation on global, regional, and bilateral issues.", "dateLastCrawled":
+ "2018-11-02T18:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Precision Medicine Initiative | The White House", "url": "https:\/\/obamawhitehouse.archives.gov\/precision-medicine",
+ "urlPingSuffix": "DevEx,5321.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/precision-medicine",
+ "snippet": "It''s health care tailored to you. In his 2015 State of the Union
+ address, President Obama announced that he''s launching the Precision Medicine
+ Initiative — a bold new research effort to revolutionize how we improve health
+ and treat disease.", "dateLastCrawled": "2018-11-10T00:34:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:42 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=obama%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3567'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:42 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2085171AD5AB616837131BB6D47C6035; path=/; expires=Sat, 14-Dec-2019 22:39:42
+ GMT; domain=bingapis.com
+ - MUIDB=2085171AD5AB616837131BB6D47C6035; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:42 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:42 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=24ED81AEC42746AA8BD945409DEB547B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:42 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:42
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2990090EB4FB630C2F7505A2B52C6266; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:42 GMT; domain=bingapis.com
+ - _SS=SID=2990090EB4FB630C2F7505A2B52C6266; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 634DDDC2D00840648AC5CB22DDBA0FAD
+ X-Msedge-Clientid:
+ - 2085171AD5AB616837131BB6D47C6035
+ X-Msapi-Userstate:
+ - dc8b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 634DDDC2D00840648AC5CB22DDBA0FAD Ref B: CO1EDGE0110 Ref C: 2018-11-19T22:39:42Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:41 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=FE8E90AC1E2446D8B9B5CC338988140E&CID=2085171AD5AB616837131BB6D47C6035&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=FE8E90AC1E2446D8B9B5CC338988140E&CID=2085171AD5AB616837131BB6D47C6035&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=obama+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5423.1", "totalEstimatedMatches": 8770000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5058.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "HealthCare.gov - Get 2019 health coverage. Health ...", "url":
+ "https:\/\/www.healthcare.gov\/", "urlPingSuffix": "DevEx,5071.1", "about":
+ [{"name": "HealthCare.gov"}], "displayUrl": "https:\/\/www.healthcare.gov",
+ "snippet": "Official site of Affordable Care Act. Enroll now for 2019 coverage.
+ See health coverage choices, ways to save today, how law affects you.", "dateLastCrawled":
+ "2018-11-13T18:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "urlPingSuffix": "DevEx,5085.1", "about": [{"name": "Barack Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama", "snippet":
+ "Barack Obama served as the 44th President of the United States. His story
+ is the American story — values from the heartland, a middle-class upbringing
+ in a strong family, hard work and education ...", "dateLastCrawled": "2018-11-15T04:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "The White
+ House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
+ "urlPingSuffix": "DevEx,5099.1", "about": [{"name": "whitehouse.gov"}, {"name":
+ "Barack Obama"}, {"name": "Barack Obama"}, {"name": "White House"}], "displayUrl":
+ "https:\/\/obamawhitehouse.archives.gov", "snippet": "President Obama
+ has protected more natural resources than any other president. American Leadership.
+ President Obama has refocused and reaffirmed American leadership in the
+ world. Economic Progress. President Obama has created jobs, rescued the
+ auto industry, and rebuilt the economy.", "dateLastCrawled": "2018-11-16T10:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Barack
+ Obama Presidential Library", "url": "https:\/\/www.obamalibrary.gov\/", "urlPingSuffix":
+ "DevEx,5114.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=OIP.uec73DYm3UcMXWjirKlrhgHaE9&pid=Api",
+ "about": [{"name": "Barack Obama"}, {"name": "Barack Obama Presidential Center"},
+ {"name": "Barack Obama"}], "displayUrl": "https:\/\/www.obamalibrary.gov",
+ "snippet": "The Obama Presidential Library is part of the presidential libraries
+ system administered by the National Archives and Records Administration, a
+ federal agency.", "dateLastCrawled": "2018-11-12T01:34:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5128.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5142.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past. His ...", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Michelle
+ Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/michelle-obama\/",
+ "urlPingSuffix": "DevEx,5156.1", "about": [{"name": "Michelle Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/michelle-obama", "snippet":
+ "Michelle LaVaughn Robinson Obama is a lawyer, writer, and the wife of the
+ 44th President, Barack Obama. She was the first African-American First Lady
+ of the United States. Through her four main ...", "dateLastCrawled": "2018-11-13T06:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Pardons
+ Granted by President Barack Obama (2009-2017 ...", "url": "https:\/\/www.justice.gov\/pardon\/obama-pardons",
+ "urlPingSuffix": "DevEx,5173.1", "displayUrl": "https:\/\/www.justice.gov\/pardon\/obama-pardons",
+ "snippet": "James Robert Adelman. Offense: Conspiracy to embezzle by trustee
+ or officer; embezzlement by trustee (five counts); making a false account
+ (Northern District of Oklahoma)", "dateLastCrawled": "2018-11-15T17:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Contact
+ the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5186.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Barack Obama | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/administration\/president-obama",
+ "urlPingSuffix": "DevEx,5200.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/administration\/president-obama",
+ "snippet": "President Barack Obama Barack Obama is the 44th President
+ of the United States. His story is the American story -- values from the heartland,
+ a middle-class upbringing in a strong family, hard work and education as the
+ means of getting ahead, and the conviction that a life so blessed should be
+ lived in service to others.", "dateLastCrawled": "2018-11-09T01:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "The White
+ House Blog | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/blog",
+ "urlPingSuffix": "DevEx,5214.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/blog",
+ "snippet": "President Obama delivered his final weekly address thanking
+ the American people for making him a better President and a better man. 6:00
+ AM ET by Tanya Somanader. January 13, 2017. The Schedule. No public schedule
+ available at this time.", "dateLastCrawled": "2018-11-12T10:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Articles
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/articles\/", "urlPingSuffix":
+ "DevEx,5228.1", "displayUrl": "https:\/\/www.whitehouse.gov\/articles",
+ "snippet": "Veterans have no better friend than President Trump. This president
+ and our administration understand that veterans’ benefits are not entitlements
+ – they’re earned. They are the ongoing ...", "dateLastCrawled": "2018-11-15T18:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5242.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Here are a few simple things you can do to make sure your message gets to
+ the White House as quickly as possible. The President and the First Lady
+ strongly encourage all Americans to consider ...", "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "The Cabinet",
+ "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "urlPingSuffix": "DevEx,5256.1", "about": [{"name": "Cabinet"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "Established in Article II, Section 2 of the Constitution, the
+ Cabinet''s role is to advise the President on subjects related to each member''s
+ office.", "dateLastCrawled": "2018-11-15T17:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5269.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Presidential Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "urlPingSuffix": "DevEx,5282.1", "about": [{"name": "Executive order"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Immigration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/issues\/immigration\/",
+ "urlPingSuffix": "DevEx,5296.1", "about": [{"name": "Immigration policy"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/issues\/immigration", "snippet":
+ "The United States must adopt an immigration system that serves the national
+ interest. To restore the rule of law and secure our border, President Trump
+ is committed to constructing a border wall ...", "dateLastCrawled": "2018-11-16T10:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "FACT
+ SHEET: President Obama’s Visit to China | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/the-press-office\/2014\/11\/11\/fact-sheet-president-obama-s-visit-china",
+ "urlPingSuffix": "DevEx,5308.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/the-press-office\/2014\/11\/11\/...",
+ "snippet": "On November 10-12, 2014, President Xi Jinping of China hosted
+ President Barack Obama of the United States for a state visit. The two heads
+ of state exchanged views on a range of subjects and agreed to expand practical
+ cooperation on global, regional, and bilateral issues.", "dateLastCrawled":
+ "2018-11-02T18:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Precision Medicine Initiative | The White House", "url": "https:\/\/obamawhitehouse.archives.gov\/precision-medicine",
+ "urlPingSuffix": "DevEx,5321.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/precision-medicine",
+ "snippet": "It''s health care tailored to you. In his 2015 State of the Union
+ address, President Obama announced that he''s launching the Precision Medicine
+ Initiative — a bold new research effort to revolutionize how we improve health
+ and treat disease.", "dateLastCrawled": "2018-11-10T00:34:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:42 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=obama%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3569'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:38:43 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=042DAF3EC4EC69F907F4A392C53B6864; path=/; expires=Sat, 14-Dec-2019 22:39:43
+ GMT; domain=bingapis.com
+ - MUIDB=042DAF3EC4EC69F907F4A392C53B6864; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:39:43 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:43 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=089154B4364849BC97454634093C8A04&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:39:43 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:39:43
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=194D3F86C1B36DF0249D332AC0646C6A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:39:43 GMT; domain=bingapis.com
+ - _SS=SID=194D3F86C1B36DF0249D332AC0646C6A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 49771C46E8604CCDB8D7B7669FD8D7D5
+ X-Msedge-Clientid:
+ - 042DAF3EC4EC69F907F4A392C53B6864
+ X-Msapi-Userstate:
+ - '5781'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 49771C46E8604CCDB8D7B7669FD8D7D5 Ref B: CO1EDGE0217 Ref C: 2018-11-19T22:39:43Z'
+ Date:
+ - Mon, 19 Nov 2018 22:39:42 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=284DF74A4BAF47BCACBBA8A22EEBF492&CID=042DAF3EC4EC69F907F4A392C53B6864&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=284DF74A4BAF47BCACBBA8A22EEBF492&CID=042DAF3EC4EC69F907F4A392C53B6864&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=obama+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5423.1", "totalEstimatedMatches": 8770000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5058.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "HealthCare.gov - Get 2019 health coverage. Health ...", "url":
+ "https:\/\/www.healthcare.gov\/", "urlPingSuffix": "DevEx,5071.1", "about":
+ [{"name": "HealthCare.gov"}], "displayUrl": "https:\/\/www.healthcare.gov",
+ "snippet": "Official site of Affordable Care Act. Enroll now for 2019 coverage.
+ See health coverage choices, ways to save today, how law affects you.", "dateLastCrawled":
+ "2018-11-13T18:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "urlPingSuffix": "DevEx,5085.1", "about": [{"name": "Barack Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama", "snippet":
+ "Barack Obama served as the 44th President of the United States. His story
+ is the American story — values from the heartland, a middle-class upbringing
+ in a strong family, hard work and education ...", "dateLastCrawled": "2018-11-15T04:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "The White
+ House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
+ "urlPingSuffix": "DevEx,5099.1", "about": [{"name": "whitehouse.gov"}, {"name":
+ "Barack Obama"}, {"name": "Barack Obama"}, {"name": "White House"}], "displayUrl":
+ "https:\/\/obamawhitehouse.archives.gov", "snippet": "President Obama
+ has protected more natural resources than any other president. American Leadership.
+ President Obama has refocused and reaffirmed American leadership in the
+ world. Economic Progress. President Obama has created jobs, rescued the
+ auto industry, and rebuilt the economy.", "dateLastCrawled": "2018-11-16T10:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Barack
+ Obama Presidential Library", "url": "https:\/\/www.obamalibrary.gov\/", "urlPingSuffix":
+ "DevEx,5114.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=OIP.uec73DYm3UcMXWjirKlrhgHaE9&pid=Api",
+ "about": [{"name": "Barack Obama"}, {"name": "Barack Obama Presidential Center"},
+ {"name": "Barack Obama"}], "displayUrl": "https:\/\/www.obamalibrary.gov",
+ "snippet": "The Obama Presidential Library is part of the presidential libraries
+ system administered by the National Archives and Records Administration, a
+ federal agency.", "dateLastCrawled": "2018-11-12T01:34:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5128.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5142.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past. His ...", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Michelle
+ Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/first-ladies\/michelle-obama\/",
+ "urlPingSuffix": "DevEx,5156.1", "about": [{"name": "Michelle Obama"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/first-ladies\/michelle-obama", "snippet":
+ "Michelle LaVaughn Robinson Obama is a lawyer, writer, and the wife of the
+ 44th President, Barack Obama. She was the first African-American First Lady
+ of the United States. Through her four main ...", "dateLastCrawled": "2018-11-13T06:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Pardons
+ Granted by President Barack Obama (2009-2017 ...", "url": "https:\/\/www.justice.gov\/pardon\/obama-pardons",
+ "urlPingSuffix": "DevEx,5173.1", "displayUrl": "https:\/\/www.justice.gov\/pardon\/obama-pardons",
+ "snippet": "James Robert Adelman. Offense: Conspiracy to embezzle by trustee
+ or officer; embezzlement by trustee (five counts); making a false account
+ (Northern District of Oklahoma)", "dateLastCrawled": "2018-11-15T17:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Contact
+ the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5186.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Barack Obama | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/administration\/president-obama",
+ "urlPingSuffix": "DevEx,5200.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/administration\/president-obama",
+ "snippet": "President Barack Obama Barack Obama is the 44th President
+ of the United States. His story is the American story -- values from the heartland,
+ a middle-class upbringing in a strong family, hard work and education as the
+ means of getting ahead, and the conviction that a life so blessed should be
+ lived in service to others.", "dateLastCrawled": "2018-11-09T01:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "The White
+ House Blog | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/blog",
+ "urlPingSuffix": "DevEx,5214.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/blog",
+ "snippet": "President Obama delivered his final weekly address thanking
+ the American people for making him a better President and a better man. 6:00
+ AM ET by Tanya Somanader. January 13, 2017. The Schedule. No public schedule
+ available at this time.", "dateLastCrawled": "2018-11-12T10:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Articles
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/articles\/", "urlPingSuffix":
+ "DevEx,5228.1", "displayUrl": "https:\/\/www.whitehouse.gov\/articles",
+ "snippet": "Veterans have no better friend than President Trump. This president
+ and our administration understand that veterans’ benefits are not entitlements
+ – they’re earned. They are the ongoing ...", "dateLastCrawled": "2018-11-15T18:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5242.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Here are a few simple things you can do to make sure your message gets to
+ the White House as quickly as possible. The President and the First Lady
+ strongly encourage all Americans to consider ...", "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "The Cabinet",
+ "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "urlPingSuffix": "DevEx,5256.1", "about": [{"name": "Cabinet"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "Established in Article II, Section 2 of the Constitution, the
+ Cabinet''s role is to advise the President on subjects related to each member''s
+ office.", "dateLastCrawled": "2018-11-15T17:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5269.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Presidential Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "urlPingSuffix": "DevEx,5282.1", "about": [{"name": "Executive order"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Immigration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/issues\/immigration\/",
+ "urlPingSuffix": "DevEx,5296.1", "about": [{"name": "Immigration policy"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/issues\/immigration", "snippet":
+ "The United States must adopt an immigration system that serves the national
+ interest. To restore the rule of law and secure our border, President Trump
+ is committed to constructing a border wall ...", "dateLastCrawled": "2018-11-16T10:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "FACT
+ SHEET: President Obama’s Visit to China | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/the-press-office\/2014\/11\/11\/fact-sheet-president-obama-s-visit-china",
+ "urlPingSuffix": "DevEx,5308.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/the-press-office\/2014\/11\/11\/...",
+ "snippet": "On November 10-12, 2014, President Xi Jinping of China hosted
+ President Barack Obama of the United States for a state visit. The two heads
+ of state exchanged views on a range of subjects and agreed to expand practical
+ cooperation on global, regional, and bilateral issues.", "dateLastCrawled":
+ "2018-11-02T18:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Precision Medicine Initiative | The White House", "url": "https:\/\/obamawhitehouse.archives.gov\/precision-medicine",
+ "urlPingSuffix": "DevEx,5321.1", "displayUrl": "https:\/\/obamawhitehouse.archives.gov\/precision-medicine",
+ "snippet": "It''s health care tailored to you. In his 2015 State of the Union
+ address, President Obama announced that he''s launching the Precision Medicine
+ Initiative — a bold new research effort to revolutionize how we improve health
+ and treat disease.", "dateLastCrawled": "2018-11-10T00:34:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:39:43 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Searching_with_malformed_query.yml b/features/vcr_cassettes/Legacy_Search/Searching_with_malformed_query.yml
index e2ef868160..3e4f2cfaf1 100644
--- a/features/vcr_cassettes/Legacy_Search/Searching_with_malformed_query.yml
+++ b/features/vcr_cassettes/Legacy_Search/Searching_with_malformed_query.yml
@@ -206,4 +206,217 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:53 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hello%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4406'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:36 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3DB1ECF8BB86682217E5E054BA51698E; path=/; expires=Sat, 14-Dec-2019 22:40:36
+ GMT; domain=bingapis.com
+ - MUIDB=3DB1ECF8BB86682217E5E054BA51698E; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:36 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:36 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=10AF2D5543EB4BAE9AC7E87A6BD84AEA&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:36 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:36
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=147580BCE9BA6F8D099A8C10E86D6E8C; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:36 GMT; domain=bingapis.com
+ - _SS=SID=147580BCE9BA6F8D099A8C10E86D6E8C; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 9BCE88F11AD844899020FCED691E21D7
+ X-Msedge-Clientid:
+ - 3DB1ECF8BB86682217E5E054BA51698E
+ X-Msapi-Userstate:
+ - be4b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 9BCE88F11AD844899020FCED691E21D7 Ref B: CO1EDGE0214 Ref C: 2018-11-19T22:40:36Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:36 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=C0FAD66D475C465ABF74FB69FFE601A5&CID=3DB1ECF8BB86682217E5E054BA51698E&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=C0FAD66D475C465ABF74FB69FFE601A5&CID=3DB1ECF8BB86682217E5E054BA51698E&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=hello+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5382.1", "totalEstimatedMatches": 1390000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "McDonald’s Recalls Hello Kitty Themed Whistles | CPSC.gov", "url": "https:\/\/www.cpsc.gov\/Recalls\/2014\/mcdonalds-recalls-hello-kitty-themed-whistles",
+ "urlPingSuffix": "DevEx,5058.1", "displayUrl": "https:\/\/www.cpsc.gov\/Recalls\/2014\/mcdonalds-recalls-hello-kitty...",
+ "snippet": "Consumers should immediately take the whistle away from children
+ and return it to any McDonald''s for a free replacement toy and either a yogurt
+ tube or a bag of apple slices.", "dateLastCrawled": "2018-11-15T21:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Goodbye,
+ Federal Student Aid PIN. Hello, FSA ID! - ED.gov Blog", "url": "https:\/\/blog.ed.gov\/2015\/05\/goodbye-federal-student-aid-pin-hello-fsa-id\/",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/blog.ed.gov\/2015\/05\/goodbye-federal-student-aid-pin-hello...",
+ "snippet": "I just got off the phone with a very nice lady at FAFSA. I had
+ been incorrectly checking the box for “parent 1” when, on the FAFSA I was
+ “parent 2”.", "dateLastCrawled": "2018-11-16T14:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Goodbye – Hello - Tennessee", "url": "https:\/\/www.tn.gov\/content\/dam\/tn\/tenncare\/documents\/notice03-07-16.pdf",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.tn.gov\/content\/dam\/tn\/tenncare\/documents\/notice03-07...",
+ "snippet": "Goodbye – Hello Alternative Attestation Method thru Medicare
+ Public Health Reporting Requirements Public Health Specialized Registries
+ Reporting Deadlines – everybody wants to know about deadlines Problems we
+ often see Fantastic Resource Latest Payment Amounts CONTACT INFORMATION .",
+ "dateLastCrawled": "2018-11-11T19:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Hello, Thank you, Amanda Porras Purposes", "url": "https:\/\/homeloans.va.gov\/SAR_TPSS\/runtime\/pdfs\/request_a_lt5v2.pdf",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/homeloans.va.gov\/SAR_TPSS\/runtime\/pdfs\/request_a_lt5v2.pdf",
+ "snippet": "Request A. Hello, I was hoping you could help me. The notice
+ of value that I recently received calls for Flood Insurance. I would like
+ this condition waived because the garage is the only part of the house that
+ is", "dateLastCrawled": "2018-11-04T15:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Hello, Loudoun", "url": "https:\/\/www.loudoun.gov\/ArchiveCenter\/ViewFile\/Item\/8065",
+ "urlPingSuffix": "DevEx,5103.1", "displayUrl": "https:\/\/www.loudoun.gov\/ArchiveCenter\/ViewFile\/Item\/8065",
+ "snippet": "Hello, Loudoun Welcome back to all LCPS teachers, educators
+ and staff. I hope everyone has a great new school year and thank you for your
+ service to our students!", "dateLastCrawled": "2018-11-08T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Hello,
+ Neighbor! | U.S. Embassy in Bosnia and Herzegovina", "url": "https:\/\/ba.usembassy.gov\/hello-neighbor\/",
+ "urlPingSuffix": "DevEx,5116.1", "displayUrl": "https:\/\/ba.usembassy.gov\/hello-neighbor",
+ "snippet": "One hundred and fifty participants from BiH, Croatia, Montenegro,
+ Serbia, Slovenia and 15 other European countries came together for the Hello
+ Neighbor Climbing and High-lining Festival in the Tijesno Canyon near Banja
+ Luka. Organized by the Banja Luka Climbing Club with an Embassy’s ESF-Interethnic
+ Reconciliation grant, participants spent ten days working together and building
+ relationships ...", "dateLastCrawled": "2018-10-27T18:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Hello. How Are
+ You? | Colchester, VT", "url": "http:\/\/colchestervt.gov\/2898\/Hello-How-Are-You",
+ "urlPingSuffix": "DevEx,5129.1", "about": [{"name": "How Are You"}, {"name":
+ "How Are You?"}, {"name": "How Are You?"}], "displayUrl": "colchestervt.gov\/2898\/Hello-How-Are-You",
+ "snippet": "HELLO. HOW ARE YOU? REQUIREMENTS: 1. You must live alone, or
+ with another person, if that person is unable to render you assistance in
+ an emergency. 2. You must not be in regular daily contact with another person.
+ 3. You must reside in the town of Colchester. 4. You must notify the Colchester
+ Police Department with a key to your residence.", "dateLastCrawled": "2018-11-09T16:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Hello
+ world! | Cannabis", "url": "https:\/\/cannabis.ca.gov\/2017\/01\/18\/hello-world\/",
+ "urlPingSuffix": "DevEx,5143.1", "displayUrl": "https:\/\/cannabis.ca.gov\/2017\/01\/18\/hello-world",
+ "snippet": "State of California. Saving your location allows us to provide
+ you with more relevant information.", "dateLastCrawled": "2018-11-06T14:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Hello
+ Savings!", "url": "http:\/\/hellosavings.cpuc.ca.gov\/", "urlPingSuffix":
+ "DevEx,5155.1", "displayUrl": "hellosavings.cpuc.ca.gov", "snippet": "Hello
+ Savings! A gateway to the California Lifeline Program.", "dateLastCrawled":
+ "2018-11-04T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Hello, MAHLI – NASA’s Mars Exploration Program", "url": "https:\/\/mars.nasa.gov\/resources\/4658\/hello-mahli\/",
+ "urlPingSuffix": "DevEx,5165.1", "about": [{"name": "Mars Hand Lens Imager"}],
+ "displayUrl": "https:\/\/mars.nasa.gov\/resources\/4658", "snippet": "September
+ 12, 2012 This image shows the Mars Hand Lens Imager (MAHLI) on NASA''s Curiosity
+ rover, with the Martian landscape in the background.", "dateLastCrawled":
+ "2018-11-11T07:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Hello Lamp Post Austin | Economic Development ...", "url": "http:\/\/austintexas.gov\/page\/hello-lamp-post-austin",
+ "urlPingSuffix": "DevEx,5179.1", "displayUrl": "austintexas.gov\/page\/hello-lamp-post-austin",
+ "snippet": "Hello Lamp Post: Austin is a city-wide platform for play that
+ lets you talk to the city’s infrastructure and share your stories using the
+ humble text messaging function of your mobile phone. By referencing the thousands
+ of pre-existing identifier codes that label items of street furniture across
+ the city, players can send text messages to ...", "dateLastCrawled": "2018-11-09T05:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Hello
+ From Above | NASA", "url": "https:\/\/www.nasa.gov\/image-feature\/hello-from-above\/",
+ "urlPingSuffix": "DevEx,5192.1", "displayUrl": "https:\/\/www.nasa.gov\/image-feature\/hello-from-above",
+ "snippet": "Greetings from @Astro_Sabot, otherwise known as Mark Vande Hei,
+ from aboard the International Space Station.", "dateLastCrawled": "2018-11-02T08:24:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Hello.
+ And welcome to today''s CDRH Industry Basics ...", "url": "https:\/\/www.fda.gov\/downloads\/Training\/CDRHLearn\/UCM586415.pdf",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www.fda.gov\/downloads\/Training\/CDRHLearn\/UCM586415.pdf",
+ "snippet": "1 . Hello. And welcome to today''s CDRH Industry Basics workshop.
+ I''m Joseph Tartal, the deputy director of the Division of Industry and Consumer
+ Education at the center for devices and ...", "dateLastCrawled": "2018-11-16T05:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "An Autistic
+ Child Would Like to Say “Hello”", "url": "https:\/\/files.eric.ed.gov\/fulltext\/ED568094.pdf",
+ "urlPingSuffix": "DevEx,5215.1", "displayUrl": "https:\/\/files.eric.ed.gov\/fulltext\/ED568094.pdf",
+ "snippet": "242 An Autistic Child Would Like to Say “Hello” Here it is the
+ right formula: early diagnosis leads to early intervention that leads to optimal
+ development of children with ASD.", "dateLastCrawled": "2018-11-05T20:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "NOAA
+ - National Oceanic and Atmospheric Administration ...", "url": "http:\/\/www.cachedefault.noaa.gov\/",
+ "urlPingSuffix": "DevEx,5228.1", "displayUrl": "www.cachedefault.noaa.gov",
+ "snippet": "The National Oceanic and Atmospheric Administration (NOAA) is
+ a federal agency focused on the condition of the oceans and the atmosphere.
+ It plays several distinct roles within the Department of Commerce.", "dateLastCrawled":
+ "2018-11-15T15:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Hello, Please you", "url": "https:\/\/www.uspto.gov\/sites\/default\/files\/documents\/casestudies_e_turbopatent_12feb2016.pdf",
+ "urlPingSuffix": "DevEx,5240.1", "displayUrl": "https:\/\/www.uspto.gov\/sites\/default\/files\/documents\/casestudies_e...",
+ "snippet": "Hello, Please find our Topic Submission for Case Studies attached.
+ Please let us know if you have any questions. Best, Britt Griffith ‐‐ Britt
+ Griffith", "dateLastCrawled": "2018-10-26T19:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "The Hello Girls Finally Get Paid – Pieces of History", "url": "https:\/\/prologue.blogs.archives.gov\/2015\/06\/24\/the-hello-girls-finally-get-paid\/",
+ "urlPingSuffix": "DevEx,5252.1", "displayUrl": "https:\/\/prologue.blogs.archives.gov\/2015\/06\/24\/the-hello-girls...",
+ "snippet": "The Hello Girls Finally Get Paid June 24, 2015 by hilaryparkinson
+ , posted in Uncategorized Today’s post comes from Ashley Mattingly, who is
+ an archivist at the National Archives at St. Louis, where she manages the
+ collection of archival civilian personnel records.", "dateLastCrawled": "2018-11-14T23:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "hello",
+ "url": "https:\/\/fpd.gsfc.nasa.gov\/critical_path\/critical_path_16winter.pdf",
+ "urlPingSuffix": "DevEx,5264.1", "displayUrl": "https:\/\/fpd.gsfc.nasa.gov\/critical_path\/critical_path_16winter.pdf",
+ "snippet": "last time. On the operations side, our teams continue to keep
+ our important investments flying (literally dozens of missions). Every week
+ at Chris Scolese’s senior staff meeting we see the fruits of their labors
+ with", "dateLastCrawled": "2018-11-11T16:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "DOD Occupational Database (ODB) - dmdc.osd.mil", "url": "https:\/\/www.dmdc.osd.mil\/owa\/odb\/hello",
+ "urlPingSuffix": "DevEx,5275.1", "displayUrl": "https:\/\/www.dmdc.osd.mil\/owa\/odb\/hello",
+ "snippet": "Warning Notice and Consent to Monitor. You are accessing a U.S.
+ Government(USG) information system(IS) that is provided for USG-authorized
+ use only.", "dateLastCrawled": "2018-11-16T04:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Pennsylvania Liquor Control Board - Home", "url": "http:\/\/www.lcb.pa.gov\/",
+ "urlPingSuffix": "DevEx,5288.1", "about": [{"name": "Pennsylvania Liquor Control
+ Board"}], "displayUrl": "www.lcb.pa.gov", "snippet": "COMMONWEALTH OF PENNSYLVANIA.
+ Keystone State. Proudly founded by William Penn in 1681 as a place of tolerance
+ and freedom.", "dateLastCrawled": "2018-11-15T15:35:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:37 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Visiting_English_affiliate_search_with_multiple_domains.yml b/features/vcr_cassettes/Legacy_Search/Visiting_English_affiliate_search_with_multiple_domains.yml
index ff19146bcd..1fd0fd9780 100644
--- a/features/vcr_cassettes/Legacy_Search/Visiting_English_affiliate_search_with_multiple_domains.yml
+++ b/features/vcr_cassettes/Legacy_Search/Visiting_English_affiliate_search_with_multiple_domains.yml
@@ -219,4 +219,227 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:24:37 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=president%20(site:whitehouse.gov%20OR%20site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3488'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:07 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=15B272726A716B8613A07EDE6BA66AA6; path=/; expires=Sat, 14-Dec-2019 22:40:08
+ GMT; domain=bingapis.com
+ - MUIDB=15B272726A716B8613A07EDE6BA66AA6; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:08 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:07 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=97036036A8274E7CA71C2A302A02C26C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:07 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:07
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0830CCF87E9C6BAD24A4C0547F4B6AD2; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:08 GMT; domain=bingapis.com
+ - _SS=SID=0830CCF87E9C6BAD24A4C0547F4B6AD2; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - DBFA19C76E354524941F3F4CB980CAD7
+ X-Msedge-Clientid:
+ - 15B272726A716B8613A07EDE6BA66AA6
+ X-Msapi-Userstate:
+ - 95fc
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: DBFA19C76E354524941F3F4CB980CAD7 Ref B: CO1EDGE0115 Ref C: 2018-11-19T22:40:08Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:07 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8DEB8FD79F194780AE5B95D4BFD3165B&CID=15B272726A716B8613A07EDE6BA66AA6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8DEB8FD79F194780AE5B95D4BFD3165B&CID=15B272726A716B8613A07EDE6BA66AA6&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3awhitehouse.gov+OR+site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5412.1", "totalEstimatedMatches": 2010000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "Which President served as a lieutenant colonel in the Spanish-American
+ war? Who was the first Democrat elected after the Civil War? Who introduced
+ Social Security?", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Donald J. Trump
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5072.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past.", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "Michael R. Pence is the 48th and current Vice President of the
+ United States. Vice President Mike Pence remains grateful for the grace
+ of God, the love and support of his family, and the blessings ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Presidents, Vice Presidents, and First Ladies of the ...", "url":
+ "https:\/\/www.usa.gov\/presidents", "urlPingSuffix": "DevEx,5102.1", "displayUrl":
+ "https:\/\/www.usa.gov\/presidents", "snippet": "The president of the
+ United States is the head of state of the U.S., the chief executive of the
+ federal government, and Commander-in-Chief of the armed forces. The United
+ States was the first nation to create the office of president as the head
+ of state in a modern republic. The Constitution ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Andrew
+ Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "urlPingSuffix": "DevEx,5116.1", "about": [{"name": "Andrew Jackson"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5130.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Write a letter to the President. Here are a few simple things you can do
+ to make sure your message gets to the White House as quickly as possible.",
+ "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "President''s Management Agenda - whitehouse.gov", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents-Management-Agenda.pdf",
+ "urlPingSuffix": "DevEx,5141.1", "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents...",
+ "snippet": "President’s Management Agenda 1. Most Americans may not think
+ about the Federal Government every day—but when they need Government services,
+ they expect them to work.", "dateLastCrawled": "2018-11-11T11:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "The Executive
+ Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "urlPingSuffix": "DevEx,5154.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5168.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5181.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Donald J. Trump’s 500 Days of American Greatness ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-500-days-american-greatness\/",
+ "urlPingSuffix": "DevEx,5193.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "500 DAYS: In his first 500 days in office, President Donald
+ J. Trump has achieved results domestically and internationally for the American
+ people. Since taking office, President Trump has ...", "dateLastCrawled":
+ "2018-11-15T04:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "George W. Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-w-bush\/",
+ "urlPingSuffix": "DevEx,5207.1", "about": [{"name": "George W. Bush"}, {"name":
+ "George H. W. Bush"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-w-bush",
+ "snippet": "George W. Bush, America’s 43rd President (2001-2009), was
+ transformed into a wartime President in the aftermath of the airborne terrorist
+ attacks on September 11, 2001, facing the “greatest ...", "dateLastCrawled":
+ "2018-11-14T23:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "William McKinley | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/william-mckinley\/",
+ "urlPingSuffix": "DevEx,5221.1", "about": [{"name": "William McKinley"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/william-mckinley",
+ "snippet": "William McKinley was the 25th President of the United States,
+ serving from March 4, 1897, until his assassination on September 14, 1901,
+ after leading the nation to victory in the Spanish-American ...", "dateLastCrawled":
+ "2018-11-12T05:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Statement from the President | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/statement-from-the-president-4\/",
+ "urlPingSuffix": "DevEx,5232.1", "displayUrl": "https:\/\/www.whitehouse.gov\/...\/statement-from-the-president-4",
+ "snippet": "As President, it is my duty to protect the interests of working
+ men and women, farmers, ranchers, businesses, and our country itself.", "dateLastCrawled":
+ "2018-11-13T18:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "President Donald J. Trump Approves North Carolina ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-approves-north-carolina-emergency-declaration\/",
+ "urlPingSuffix": "DevEx,5244.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "Today, President Donald J. Trump declared that an emergency
+ exists in the State of North Carolina and ordered Federal assistance to supplement
+ State, tribal, and local response efforts due to the ...", "dateLastCrawled":
+ "2018-11-16T13:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5257.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Richard M. Nixon | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/richard-m-nixon\/",
+ "urlPingSuffix": "DevEx,5271.1", "about": [{"name": "Richard Nixon"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/richard-m-nixon", "snippet":
+ "Richard Nixon was elected the 37th President of the United States (1969-1974)
+ after previously serving as a U.S. Representative and a U.S. Senator from
+ California. After successfully ending ...", "dateLastCrawled": "2018-11-14T18:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Theodore
+ Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/theodore-roosevelt\/",
+ "urlPingSuffix": "DevEx,5285.1", "about": [{"name": "Theodore Roosevelt"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/theodore-roosevelt",
+ "snippet": "With the assassination of President William McKinley, Theodore
+ Roosevelt, not quite 43, became the 26th and youngest President in the
+ Nation’s history (1901-1909). He brought new excitement and ...", "dateLastCrawled":
+ "2018-11-12T08:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Franklin Pierce | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-pierce\/",
+ "urlPingSuffix": "DevEx,5299.1", "about": [{"name": "Franklin Pierce"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-pierce", "snippet":
+ "Franklin Pierce became 14th President of the United States at a time
+ of apparent tranquility (1853-1857). By pursuing the recommendations of southern
+ advisers, Pierce — a New Englander — hoped ...", "dateLastCrawled": "2018-11-12T16:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Remarks
+ by President Trump to the 73rd Session of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-73rd-session-united-nations-general-assembly-new-york-ny\/",
+ "urlPingSuffix": "DevEx,5311.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "THE PRESIDENT: Madam President, Mr. Secretary-General, world
+ leaders, ambassadors, and distinguished delegates: One year ago, I stood before
+ you for the first time in this grand hall. I addressed ...", "dateLastCrawled":
+ "2018-11-15T22:47:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:08 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/Visiting_Spanish_affiliate_search_with_multiple_domains.yml b/features/vcr_cassettes/Legacy_Search/Visiting_Spanish_affiliate_search_with_multiple_domains.yml
index 3377bdc4a9..e3c39b2b36 100644
--- a/features/vcr_cassettes/Legacy_Search/Visiting_Spanish_affiliate_search_with_multiple_domains.yml
+++ b/features/vcr_cassettes/Legacy_Search/Visiting_Spanish_affiliate_search_with_multiple_domains.yml
@@ -217,4 +217,227 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:24 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=president%20(site:whitehouse.gov%20OR%20site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3486'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:09 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0814ABE6B10D600F003EA74AB0DA6192; path=/; expires=Sat, 14-Dec-2019 22:40:09
+ GMT; domain=bingapis.com
+ - MUIDB=0814ABE6B10D600F003EA74AB0DA6192; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:09 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:09 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=767E0D2A082840E49E179E45C720762A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:09 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:09
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0FB99E2902876B081781928503506A64; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:09 GMT; domain=bingapis.com
+ - _SS=SID=0FB99E2902876B081781928503506A64; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 31A280BD9FE8440A8DB188D77BE0F1CA
+ X-Msedge-Clientid:
+ - '0814ABE6B10D600F003EA74AB0DA6192'
+ X-Msapi-Userstate:
+ - ad4a
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 31A280BD9FE8440A8DB188D77BE0F1CA Ref B: CO1EDGE0411 Ref C: 2018-11-19T22:40:09Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:09 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=CBE0AA3447D347D09D3B07B48234806E&CID=0814ABE6B10D600F003EA74AB0DA6192&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=CBE0AA3447D347D09D3B07B48234806E&CID=0814ABE6B10D600F003EA74AB0DA6192&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3awhitehouse.gov+OR+site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5412.1", "totalEstimatedMatches": 2010000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "Which President served as a lieutenant colonel in the Spanish-American
+ war? Who was the first Democrat elected after the Civil War? Who introduced
+ Social Security?", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Donald J. Trump
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5072.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past.", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "Michael R. Pence is the 48th and current Vice President of the
+ United States. Vice President Mike Pence remains grateful for the grace
+ of God, the love and support of his family, and the blessings ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Presidents, Vice Presidents, and First Ladies of the ...", "url":
+ "https:\/\/www.usa.gov\/presidents", "urlPingSuffix": "DevEx,5102.1", "displayUrl":
+ "https:\/\/www.usa.gov\/presidents", "snippet": "The president of the
+ United States is the head of state of the U.S., the chief executive of the
+ federal government, and Commander-in-Chief of the armed forces. The United
+ States was the first nation to create the office of president as the head
+ of state in a modern republic. The Constitution ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Andrew
+ Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "urlPingSuffix": "DevEx,5116.1", "about": [{"name": "Andrew Jackson"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5130.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Write a letter to the President. Here are a few simple things you can do
+ to make sure your message gets to the White House as quickly as possible.",
+ "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "President''s Management Agenda - whitehouse.gov", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents-Management-Agenda.pdf",
+ "urlPingSuffix": "DevEx,5141.1", "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents...",
+ "snippet": "President’s Management Agenda 1. Most Americans may not think
+ about the Federal Government every day—but when they need Government services,
+ they expect them to work.", "dateLastCrawled": "2018-11-11T11:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "The Executive
+ Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "urlPingSuffix": "DevEx,5154.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5168.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5181.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Donald J. Trump’s 500 Days of American Greatness ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-500-days-american-greatness\/",
+ "urlPingSuffix": "DevEx,5193.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "500 DAYS: In his first 500 days in office, President Donald
+ J. Trump has achieved results domestically and internationally for the American
+ people. Since taking office, President Trump has ...", "dateLastCrawled":
+ "2018-11-15T04:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "George W. Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-w-bush\/",
+ "urlPingSuffix": "DevEx,5207.1", "about": [{"name": "George W. Bush"}, {"name":
+ "George H. W. Bush"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-w-bush",
+ "snippet": "George W. Bush, America’s 43rd President (2001-2009), was
+ transformed into a wartime President in the aftermath of the airborne terrorist
+ attacks on September 11, 2001, facing the “greatest ...", "dateLastCrawled":
+ "2018-11-14T23:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "William McKinley | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/william-mckinley\/",
+ "urlPingSuffix": "DevEx,5221.1", "about": [{"name": "William McKinley"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/william-mckinley",
+ "snippet": "William McKinley was the 25th President of the United States,
+ serving from March 4, 1897, until his assassination on September 14, 1901,
+ after leading the nation to victory in the Spanish-American ...", "dateLastCrawled":
+ "2018-11-12T05:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Statement from the President | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/statement-from-the-president-4\/",
+ "urlPingSuffix": "DevEx,5232.1", "displayUrl": "https:\/\/www.whitehouse.gov\/...\/statement-from-the-president-4",
+ "snippet": "As President, it is my duty to protect the interests of working
+ men and women, farmers, ranchers, businesses, and our country itself.", "dateLastCrawled":
+ "2018-11-13T18:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "President Donald J. Trump Approves North Carolina ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-approves-north-carolina-emergency-declaration\/",
+ "urlPingSuffix": "DevEx,5244.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "Today, President Donald J. Trump declared that an emergency
+ exists in the State of North Carolina and ordered Federal assistance to supplement
+ State, tribal, and local response efforts due to the ...", "dateLastCrawled":
+ "2018-11-16T13:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5257.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Richard M. Nixon | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/richard-m-nixon\/",
+ "urlPingSuffix": "DevEx,5271.1", "about": [{"name": "Richard Nixon"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/richard-m-nixon", "snippet":
+ "Richard Nixon was elected the 37th President of the United States (1969-1974)
+ after previously serving as a U.S. Representative and a U.S. Senator from
+ California. After successfully ending ...", "dateLastCrawled": "2018-11-14T18:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Theodore
+ Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/theodore-roosevelt\/",
+ "urlPingSuffix": "DevEx,5285.1", "about": [{"name": "Theodore Roosevelt"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/theodore-roosevelt",
+ "snippet": "With the assassination of President William McKinley, Theodore
+ Roosevelt, not quite 43, became the 26th and youngest President in the
+ Nation’s history (1901-1909). He brought new excitement and ...", "dateLastCrawled":
+ "2018-11-12T08:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Franklin Pierce | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-pierce\/",
+ "urlPingSuffix": "DevEx,5299.1", "about": [{"name": "Franklin Pierce"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-pierce", "snippet":
+ "Franklin Pierce became 14th President of the United States at a time
+ of apparent tranquility (1853-1857). By pursuing the recommendations of southern
+ advisers, Pierce — a New Englander — hoped ...", "dateLastCrawled": "2018-11-12T16:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Remarks
+ by President Trump to the 73rd Session of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-73rd-session-united-nations-general-assembly-new-york-ny\/",
+ "urlPingSuffix": "DevEx,5311.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "THE PRESIDENT: Madam President, Mr. Secretary-General, world
+ leaders, ambassadors, and distinguished delegates: One year ago, I stood before
+ you for the first time in this grand hall. I addressed ...", "dateLastCrawled":
+ "2018-11-15T22:47:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:10 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/When_a_searcher_enters_a_query_with_invalid_Lucene_character.yml b/features/vcr_cassettes/Legacy_Search/When_a_searcher_enters_a_query_with_invalid_Lucene_character.yml
index 3a205df3a2..15a121d92a 100644
--- a/features/vcr_cassettes/Legacy_Search/When_a_searcher_enters_a_query_with_invalid_Lucene_character.yml
+++ b/features/vcr_cassettes/Legacy_Search/When_a_searcher_enters_a_query_with_invalid_Lucene_character.yml
@@ -438,4 +438,458 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:38 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=%2B%2Bhealth%20it%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3787'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:22 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3A58CD94EECC6FAF2BEFC138EF1B6E8B; path=/; expires=Sat, 14-Dec-2019 22:40:22
+ GMT; domain=bingapis.com
+ - MUIDB=3A58CD94EECC6FAF2BEFC138EF1B6E8B; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:22 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:22 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=4879E11A110544F0A0AA947E8B66F40F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:22 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:22
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=29CB1E916F3568791B7E123D6EE269D9; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:22 GMT; domain=bingapis.com
+ - _SS=SID=29CB1E916F3568791B7E123D6EE269D9; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BB0D432B7F554AA6841CFA3DA1236B75
+ X-Msedge-Clientid:
+ - 3A58CD94EECC6FAF2BEFC138EF1B6E8B
+ X-Msapi-Userstate:
+ - 2cb5
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BB0D432B7F554AA6841CFA3DA1236B75 Ref B: CO1EDGE0216 Ref C: 2018-11-19T22:40:22Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:21 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=67CFD11838FD467699663DC04DF34845&CID=3A58CD94EECC6FAF2BEFC138EF1B6E8B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=67CFD11838FD467699663DC04DF34845&CID=3A58CD94EECC6FAF2BEFC138EF1B6E8B&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=%2b%2bhealth+it+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5405.1", "totalEstimatedMatches": 32700000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "HealthCare.gov - Get 2019 health coverage. Health ...", "url": "https:\/\/www.healthcare.gov\/",
+ "urlPingSuffix": "DevEx,5057.1", "about": [{"name": "HealthCare.gov"}], "displayUrl":
+ "https:\/\/www.healthcare.gov", "snippet": "Official site of Affordable
+ Care Act. Enroll now for 2019 coverage. See health coverage choices, ways
+ to save today, how law affects you.", "dateLastCrawled": "2018-11-13T18:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Health
+ Information | National Institutes of Health (NIH)", "url": "https:\/\/www.nih.gov\/health-information",
+ "urlPingSuffix": "DevEx,5070.1", "about": [{"name": "National Institutes of
+ Health"}], "displayUrl": "https:\/\/www.nih.gov\/health-information",
+ "snippet": "Find science-based health information on symptoms, diagnosis,
+ treatments, research, clinical trials and more from NIH, the nation’s medical
+ research agency.", "dateLastCrawled": "2018-11-15T02:32:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Home of the Office
+ of Disease Prevention and Health ...", "url": "https:\/\/health.gov\/",
+ "urlPingSuffix": "DevEx,5084.1", "about": [{"name": "Pennsylvania Department
+ of Health"}, {"name": "Physical Activity Guidelines for Americans"}], "displayUrl":
+ "https:\/\/health.gov", "snippet": "Health.gov is your portal for health
+ related resources and news from the US government. Find prevention topics,
+ dietary and physical activity guidelines, and other health resources.",
+ "dateLastCrawled": "2018-11-16T03:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Healthcare - OPM.gov", "url": "https:\/\/www.opm.gov\/healthcare-insurance\/healthcare",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/www.opm.gov\/health",
+ "snippet": "The Federal Employees Health Benefits (FEHB) Program. The FEHB
+ Program can help you and your family meet your health care needs. Federal
+ employees, retirees and their survivors enjoy the widest selection of health
+ plans in the country.", "dateLastCrawled": "2018-11-13T19:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "health.pa.gov
+ - Latest News", "url": "https:\/\/www.health.pa.gov\/", "urlPingSuffix": "DevEx,5110.1",
+ "displayUrl": "https:\/\/www.health.pa.gov", "snippet": "Be Health Aware.
+ Flu season is here! Have your received your flu vaccine yet? Everyone 6 months
+ of age and older should get a flu vaccine every year, preferably by the end
+ of October. However, getting vaccinated even later can be protective, as long
+ as flu viruses are circulating.", "dateLastCrawled": "2018-10-31T11:27:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Home |
+ HealthIT.gov", "url": "https:\/\/www.healthit.gov\/", "urlPingSuffix": "DevEx,5124.1",
+ "about": [{"name": "Office of the National Coordinator for Health Information
+ Technology"}, {"name": "Office of the National Coordinator for Health Information
+ Technology"}], "displayUrl": "https:\/\/www.healthit.gov", "snippet": "Health
+ information technology (Health IT) makes it possible for health care providers
+ to better manage patient care through secure use and sharing of health information.
+ Health IT includes the use of electronic health records (EHRs) instead
+ of paper medical records to maintain people''s health information.", "dateLastCrawled":
+ "2018-11-13T12:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Veterans Health Administration - United States Department ...",
+ "url": "https:\/\/www.va.gov\/health\/", "urlPingSuffix": "DevEx,5138.1",
+ "about": [{"name": "Veterans Health Administration"}, {"name": "Veterans Health
+ Administration"}], "displayUrl": "https:\/\/www.va.gov\/health", "snippet":
+ "The Veterans Health Administration is America’s largest integrated health
+ care system, providing care at 1,243 health care facilities, including 172
+ medical centers and 1,062 outpatient sites of care of varying complexity (VHA
+ outpatient clinics), serving 9 million enrolled Veterans each year.", "dateLastCrawled":
+ "2018-11-15T17:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Florida Department of Health", "url": "http:\/\/www.floridahealth.gov\/",
+ "urlPingSuffix": "DevEx,5152.1", "about": [{}, {"name": "Florida Department
+ of Health"}], "displayUrl": "www.floridahealth.gov", "snippet": "The Florida
+ Department of Health (DOH) continues to focus on the health and safety
+ of Florida’s families and is dedicated to ensuring patients have safe access
+ to low-THC cannabis and medical marijuana.", "dateLastCrawled": "2018-11-15T17:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Health
+ Insurance Marketplace for Individuals | HealthCare.gov", "url": "https:\/\/www.healthcare.gov\/login",
+ "urlPingSuffix": "DevEx,5164.1", "about": [{"name": "HealthCare.gov"}], "displayUrl":
+ "https:\/\/www.healthcare.gov\/login", "snippet": "Using a shared or public
+ computer? Be sure to log out and close all browser windows when you''re done.
+ This will help keep your information secure.", "dateLastCrawled": "2018-11-15T16:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Health
+ - Tennessee", "url": "https:\/\/www.tn.gov\/health.html", "urlPingSuffix":
+ "DevEx,5176.1", "displayUrl": "https:\/\/www.tn.gov\/health.html", "snippet":
+ "public health advisory concerning fentanyl and fentanyl-laced substances
+ Welcome to The Tennessee Department of Health Mission: Protect, promote
+ and improve the health and prosperity of people in Tennessee.", "dateLastCrawled":
+ "2018-11-13T00:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Health - New York City", "url": "https:\/\/www1.nyc.gov\/site\/doh\/index.page",
+ "urlPingSuffix": "DevEx,5190.1", "about": [{"name": "New York City Department
+ of Health and Mental Hygiene"}], "displayUrl": "https:\/\/www1.nyc.gov\/site\/doh\/index.page",
+ "snippet": "Health insurance counselors provide free, in-person assistance
+ to help you get insurance. They can discuss your insurance and care options
+ with you and walk you through the application process. They can discuss your
+ insurance and care options with you and walk you through the application process.",
+ "dateLastCrawled": "2018-11-15T10:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Hawaii State Department of Health", "url": "http:\/\/health.hawaii.gov\/",
+ "urlPingSuffix": "DevEx,5204.1", "about": [{"name": "Hawaii Department of
+ Health"}], "displayUrl": "health.hawaii.gov", "snippet": "Videos. Watch
+ new videos about the Department of Health’s Strategic Plan and learn how
+ the state is transforming public health in Hawaii. Read More Videos", "dateLastCrawled":
+ "2018-11-15T22:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Home - My HealtheVet", "url": "https:\/\/www.myhealth.va.gov\/",
+ "urlPingSuffix": "DevEx,5218.1", "about": [{"name": "United States Department
+ of Veterans Affairs"}], "displayUrl": "https:\/\/www.myhealth.va.gov",
+ "snippet": "Health Records View, print, or download a copy of your VA medical
+ record information, or enter your own health information. Read More. Resources.
+ Benefits. Veterans Health Library. Community. Mental Health. Healthy Living.
+ HealtheLiving Assessment. In the Spotlight In the Spotlight.", "dateLastCrawled":
+ "2018-11-16T00:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "New York State Department of Health", "url": "https:\/\/www.health.ny.gov\/",
+ "urlPingSuffix": "DevEx,5231.1", "about": [{"name": "New York State Department
+ of Health"}, {"name": "New York State Department of Health"}], "displayUrl":
+ "https:\/\/www.health.ny.gov", "snippet": "Home page for the New York
+ State Department of Health", "dateLastCrawled": "2018-11-14T01:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5245.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Health Information
+ from the Government. Learn more about the best ways to find health information
+ from the government. Health Insurance. Learn about health insurance, including
+ Medicaid and Medicare. Medications. Get answers to common questions about
+ buying and using medicine and medical products.", "dateLastCrawled": "2018-11-14T16:52:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Appendix
+ 9. Alcohol - 2015-2020 Dietary ... - health.gov", "url": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9\/",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9",
+ "snippet": "Print this section Appendix 9. Alcohol. If alcohol is consumed,
+ it should be in moderation—up to one drink per day for women and up to two
+ drinks per day for men—and only by adults of legal drinking age.", "dateLastCrawled":
+ "2018-11-16T08:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Virginia Department of Health", "url": "http:\/\/www.vdh.virginia.gov\/",
+ "urlPingSuffix": "DevEx,5271.1", "about": [{"name": "Virginia Department of
+ Health"}], "displayUrl": "www.vdh.virginia.gov", "snippet": "Antibiotics
+ Awareness Week – November 12th-18th. This important week alerts individuals
+ to the growing threat of antibiotic resistance – a serious public health
+ issue – and urges everyone to use antibiotics appropriately.", "dateLastCrawled":
+ "2018-11-15T22:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Mental Health Home", "url": "https:\/\/www.mentalhealth.va.gov\/",
+ "urlPingSuffix": "DevEx,5284.1", "displayUrl": "https:\/\/www.mentalhealth.va.gov",
+ "snippet": "Find Mental Health Support. Your mental health is a critical
+ component to your overall wellness. If you are experiencing mental health
+ challenges, or suspect a family member would benefit from talking to a mental
+ health provider, VA offers ways to help.", "dateLastCrawled": "2018-11-17T16:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Get Healthcare
+ Coverage, Health Insurance Marketplace ...", "url": "https:\/\/www.healthcare.gov\/get-coverage\/",
+ "urlPingSuffix": "DevEx,5295.1", "displayUrl": "https:\/\/www.healthcare.gov\/get-coverage",
+ "snippet": "Get Affordable Care Act info for individuals, families today.
+ Affordable quality health insurance coverage.", "dateLastCrawled": "2018-10-19T19:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "National
+ Institutes of Health (NIH) | Turning Discovery ...", "url": "https:\/\/www.nih.gov\/",
+ "urlPingSuffix": "DevEx,5306.1", "displayUrl": "https:\/\/www.nih.gov",
+ "snippet": "An agency of the U.S. Department of Health and Human Services,
+ the NIH is the Federal focal point for health and medical research. The
+ NIH website offers health information for the public, scientists, researchers,
+ medical professionals, patients, educators, and students.", "dateLastCrawled":
+ "2018-11-19T21:58:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:22 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=OR%20us97%20central%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4592'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:22 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=19FE7A79A59E681A1F6B76D5A44969E1; path=/; expires=Sat, 14-Dec-2019 22:40:22
+ GMT; domain=bingapis.com
+ - MUIDB=19FE7A79A59E681A1F6B76D5A44969E1; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:22 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:22 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=0AB45DE885C443ACB04AE3CE0EBF9959&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:22 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:22
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=024EE72692F86C171167EB8A932F6D20; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:22 GMT; domain=bingapis.com
+ - _SS=SID=024EE72692F86C171167EB8A932F6D20; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 8AE7719A827D476CAF004A79A875988B
+ X-Msedge-Clientid:
+ - 19FE7A79A59E681A1F6B76D5A44969E1
+ X-Msapi-Userstate:
+ - 5c9d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 8AE7719A827D476CAF004A79A875988B Ref B: CO1EDGE0521 Ref C: 2018-11-19T22:40:22Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:22 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=598AD714719446D991E5E2410429CDE7&CID=19FE7A79A59E681A1F6B76D5A44969E1&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=598AD714719446D991E5E2410429CDE7&CID=19FE7A79A59E681A1F6B76D5A44969E1&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=OR+us97+central+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5358.1", "totalEstimatedMatches": 66200,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Descriptions of US and OR Routes - oregon.gov", "url": "https:\/\/www.oregon.gov\/ODOT\/Engineering\/TRSDocs\/HWY-Route-Descriptions.pdf",
+ "urlPingSuffix": "DevEx,5055.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Engineering\/TRSDocs\/HWY-Route...",
+ "snippet": "Thence southerly over The Dalles-California Highway (common with
+ US97) to its junction with the Central Oregon Highway in Bend; thence
+ easterly over the Central Oregon Highway via Brothers, Riley, Hines, Burns
+ (common with US395 from Riley to two miles northeast of Burns), Juntura, Vale,
+ Cairo, and", "dateLastCrawled": "2018-11-05T05:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "US 97 Bend North Corridor - oregon.gov", "url": "https:\/\/www.oregon.gov\/ODOT\/Projects\/Project%20Documents\/BendNorthCorridorfinal_rec_doc_2014_07_17.pdf",
+ "urlPingSuffix": "DevEx,5065.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Projects\/Project
+ Documents...", "snippet": "2.2 Central Section: Nels Anderson Place to Cooley
+ Road Under the Preferred Alternative, this segment of US 97 will be four
+ lanes, with two northbound and two southbound lanes separated by a median
+ or a median barrier.", "dateLastCrawled": "2018-11-08T01:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "STATE
+ OF OREGON INTEROFFICE MEMO Planning Section", "url": "https:\/\/www.oregon.gov\/ODOT\/Planning\/Documents\/APMv2_App19A3.pdf",
+ "urlPingSuffix": "DevEx,5075.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Planning\/Documents\/APMv2_App19A3.pdf",
+ "snippet": "project location is a five-lane expressway and a major freight
+ route in central Oregon. There are currently signals at Robal Road and Cooley
+ Road and several driveway approaches to US97 in", "dateLastCrawled": "2018-11-02T01:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Caltrans
+ District 2 -Northeastern California", "url": "http:\/\/www.dot.ca.gov\/dist2\/cctv\/allcams.shtml",
+ "urlPingSuffix": "DevEx,5090.1", "displayUrl": "www.dot.ca.gov\/dist2\/cctv\/allcams.shtml",
+ "snippet": "Central Yreka Cam (SIS 5 R 47.82) is located in central Yreka
+ on the east side of I-5 next to the flag pole in Siskiyou County: South Yreka
+ Cam ... (SIS 5 R 19.27) is located in Siskiyou County just north of the I5-US97
+ separation in Weed: South Weed Cam (SIS 5 R 18.38) is located in Siskiyou
+ County on the east shoulder of northbound I-5:", "dateLastCrawled": "2018-11-16T13:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "WSDOT
+ - South Central Region Construction Update", "url": "http:\/\/www.wsdot.gov\/Regions\/SouthCentral\/Construction\/",
+ "urlPingSuffix": "DevEx,5103.1", "displayUrl": "www.wsdot.gov\/Regions\/SouthCentral\/Construction",
+ "snippet": "Please use extra caution when driving through construction zones.
+ Traffic fines are doubled in work zones when workers are present.", "dateLastCrawled":
+ "2018-11-11T22:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "TRANSPORTATION 2018 BRIDGE LOG - oregon.gov", "url": "https:\/\/www.oregon.gov\/ODOT\/Bridge\/Documents\/brlog.pdf",
+ "urlPingSuffix": "DevEx,5114.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Bridge\/Documents\/brlog.pdf",
+ "snippet": "007 Central Oregon Hwy US20, US26, US395, OR201 194 008 Oregon-Washington
+ Hwy OR11 202 009 Oregon Coast Hwy US101 205 010 Wallowa Lake Hwy OR82 232
+ ... 040 Beaverton-Hillsdale Hwy US97 328 041 Ochco Hwy US26, OR126 329 042
+ Sherman Hwy US97 333 043 Monmouth-Independence Hwy OR51 336 044 Wapinitia
+ Hwy OR216 337", "dateLastCrawled": "2018-11-16T13:49:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "US 97 Satus
+ Creek Bridge Replacement Project", "url": "http:\/\/www.wsdot.wa.gov\/eesc\/bridge\/Folios\/US97_SatusCreekBridge.pdf",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "www.wsdot.wa.gov\/eesc\/bridge\/Folios\/US97_SatusCreekBridge.pdf",
+ "snippet": "Innovative Horizontally . Curved Prefabricated Girders. The superstructure
+ is built from open precast concrete box girders, referred . to as “tubs” in
+ bridge parlance.", "dateLastCrawled": "2018-10-28T15:10:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Using Highway
+ Economic Requirements System: Telling the Story", "url": "https:\/\/www.oregon.gov\/ODOT\/Planning\/Documents\/HERS-ST-Poster-Telling-the-Story-US97-Bend-North-Corridor.pdf",
+ "urlPingSuffix": "DevEx,5135.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Planning\/Documents\/HERS-ST-Poster...",
+ "snippet": "organizations moving into this Central Oregon community. With
+ growth comes traffic and associated congestion and this area is a source of
+ current congestion issues. The location makes it extremely attractive for
+ ... HERS_Poster4_US97.XAR Author: hwye82f Created Date:", "dateLastCrawled":
+ "2018-11-02T08:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Live Traffic Cameras - Caltrans", "url": "http:\/\/www.dot.ca.gov\/video\/index.html",
+ "urlPingSuffix": "DevEx,5148.1", "about": [{"name": "U.S. Route 50 in California"},
+ {"name": "Southern California freeways"}], "displayUrl": "www.dot.ca.gov\/video\/index.html",
+ "snippet": "Live Traffic Cameras Some of our live cameras are off-line while
+ we improve our network. We appreciate your patience. Share via: ... Caltrans
+ District 6 - Central California Traffic Camera Map Live traffic cams covering
+ western Kern, Tulare, Fresno, and Madera Counties.", "dateLastCrawled": "2018-11-13T03:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Active
+ (without 2nd Note) Construction Contracts by County", "url": "https:\/\/www.oregon.gov\/ODOT\/Construction\/Documents\/contract-admin-status-reports\/CPSR001c.pdf",
+ "urlPingSuffix": "DevEx,5159.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Construction\/Documents\/contract-admin...",
+ "snippet": "C15079 Farline Bridge Inc US97 @ Wickiup Jct Bridge Girder R
+ Structures Martin, Bill S004(218) $622,671 $605,704 4 C15097 Specialized Pavement
+ Markin All Roads Transportation Safety (Des Martin, Bill C017(019) $768,617",
+ "dateLastCrawled": "2018-11-11T13:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "RURAL HIGHWAY DESIGN (NON-FREEWAY) - oregon.gov", "url": "https:\/\/www.oregon.gov\/ODOT\/Engineering\/Documents_RoadwayEng\/HDM_07-Rural-Highway.pdf",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Engineering\/Documents_RoadwayEng\/HDM...",
+ "snippet": "The Dalles-California Highway (US 97) in Central Oregon is
+ an example of a designated expressway that includes both multi-lane sections
+ and two-lane sections. The primary function of rural expressways is to provide
+ connections to larger urban", "dateLastCrawled": "2018-11-16T02:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "2018
+ CROSS REFERENCE TABLE OF HIGHWAY ROUTE NUMBER TO ...", "url": "https:\/\/www.oregon.gov\/ODOT\/Data\/Documents\/Routes-to-Highway-Cross-Reference-Table.pdf",
+ "urlPingSuffix": "DevEx,5179.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Data\/Documents\/Routes-to-Highway-Cross...",
+ "snippet": "us 26 central oregon 007 us 26 john day 005 us 26 madras-prineville
+ 360 us 26 mt. hood 026 us 26 ochoco 041 us 26 stadium freeway 061 us 26 sunset
+ 047 ... us97, us197, or216 005 john day us26, us395, or19, or206, or207
+ 006 old oregon trail i-84, us30, us395, or203 007 central oregon us20, us26,
+ us395, or201 008 oregon-washington us30, or11", "dateLastCrawled": "2018-11-15T17:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "ODOT
+ Region 4 Project Information - oregon.gov", "url": "https:\/\/www.oregon.gov\/ODOT\/Projects\/Project%20Documents\/US97CooleyPIP.pdf",
+ "urlPingSuffix": "DevEx,5189.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Projects\/Project
+ Documents...", "snippet": "central portion of Oregon and complements the
+ I-5 corridor. It is designated as a statewide facility and freight route on
+ the ... The US97 @ Cooley project will receive funding in relative proportion
+ to revenues collected from 2018 through 2025 by House Bill 2017. Additional
+ revenue is anticipated to allow for", "dateLastCrawled": "2018-11-13T15:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Document
+ Central | City of Bend", "url": "https:\/\/www.bendoregon.gov\/services\/advanced-components\/document-central\/-folder-714",
+ "urlPingSuffix": "DevEx,5200.1", "displayUrl": "https:\/\/www.bendoregon.gov\/...\/document-central\/-folder-714",
+ "snippet": "Get In Touch. City Hall (541) 388-5505 Utility Billing (541) 388-5515
+ Send us an Email", "dateLastCrawled": "2018-09-04T17:17:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "www.oregon.gov",
+ "url": "https:\/\/www.oregon.gov\/ODOT\/MCT\/Mobility%20Document%20Retention\/US97BendPkwy_K19091_TMP_07-01-14.pdf",
+ "urlPingSuffix": "DevEx,5211.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/MCT\/Mobility
+ Document Retention...", "snippet": "Central Ore affic as wel US97 is a
+ di w in Table k Overlay to the stud y lepoint 137 ity Map (Goog Condition
+ s, the projec designate d hway Syste m ay. rial highwa y gon. The ro u ls
+ as long rdis vided four rl 1. area, the a.2. A vicinit y le Maps) ct section
+ of Freight Ro u. The rout e that conn e", "dateLastCrawled": "2018-11-06T14:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "2015
+ ATR Characteristic Table - oregon.gov", "url": "https:\/\/www.oregon.gov\/ODOT\/Planning\/Documents\/ATRCharacteristicTable.xls",
+ "urlPingSuffix": "DevEx,5221.1", "displayUrl": "https:\/\/www.oregon.gov\/ODOT\/Planning\/Documents\/ATRCharacteristic...",
+ "snippet": "us97, the dalles-california highway, 0.17 mile south of china
+ hat road us97, the dalles-california highway, 0.49 mile south of empire
+ avenue ... us20, central oregon highway, 5.80 miles northwest of deschutes-lake
+ county line us97, the dalles-california highway, 0.07 mile north of pinebrook
+ boulevard", "dateLastCrawled": "2018-11-11T14:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "WSDOT - North Central Region Projects", "url": "http:\/\/wadot.wa.gov\/Regions\/NorthCentral\/projects\/?s=county,funding,location,route-us97",
+ "urlPingSuffix": "DevEx,5234.1", "displayUrl": "wadot.wa.gov\/Regions\/NorthCentral\/projects\/?s=county,funding...",
+ "snippet": "North Central Region Projects. News. 2018 Projects-US 2 W. of
+ Stevens Pass Camera Installation. SR 17 Prior Farms Left Turn Lane. SR 26
+ Railroad Bridge Deck Repair. US 97 Blewett Pass Culvert Replacements. US
+ 97 Brays Landing Rd. Intersection Improvements.", "dateLastCrawled": "2018-11-05T18:27:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "APPENDIX
+ I Stormwater Management Plan - bendoregon.gov", "url": "https:\/\/www.bendoregon.gov\/home\/showdocument?id=1134",
+ "urlPingSuffix": "DevEx,5245.1", "displayUrl": "https:\/\/www.bendoregon.gov\/home\/showdocument?id=1134",
+ "snippet": "The Central Oregon Stormwater Manual (COSM), Oregon Department
+ of Transportation (ODOT) Hydraulic Manual, and the City of Bend Design Standards
+ were used to establish the design criteria for the Design Acceptance Package
+ Stormwater Management Plan.", "dateLastCrawled": "2018-10-30T07:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "WSDOT
+ - Mountain Pass Cameras", "url": "http:\/\/www.wsdot.wa.gov\/traffic\/passes\/camera.aspx",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.wsdot.wa.gov\/traffic\/passes\/camera.aspx",
+ "snippet": "Conditions: Roadway bare and dry, frost and ice in places Weather:
+ Clear skies Elevation: 4061 ft \/ 1238 m", "dateLastCrawled": "2018-11-16T00:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Document
+ Central | City of Bend", "url": "https:\/\/www.bendoregon.gov\/services\/advanced-components\/document-central\/-folder-1314",
+ "urlPingSuffix": "DevEx,5269.1", "displayUrl": "https:\/\/www.bendoregon.gov\/...\/document-central\/-folder-1314",
+ "snippet": "Document Central » BMPO Documents » US97 Parkway Plan US97
+ Parkway Plan DRAFT Tech Memo Existing Conditions 8_11_17 Parkway Plan Presentation
+ November 2017 Policy Board Existing Conditions", "dateLastCrawled": "2018-11-11T20:50:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:23 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_a_Spanish_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml b/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_a_Spanish_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml
index 808928f759..894a0c1ab2 100644
--- a/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_a_Spanish_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml
+++ b/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_a_Spanish_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml
@@ -204,4 +204,240 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:43 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=noticia%20uno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4898'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:28 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1CE920EA9A7A65AD019B2C469BAD64F8; path=/; expires=Sat, 14-Dec-2019 22:40:28
+ GMT; domain=bingapis.com
+ - MUIDB=1CE920EA9A7A65AD019B2C469BAD64F8; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:28 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:28 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CCA2A7AE1DDE49D99F109B0A71EBED6A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:28 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:28
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2B7C31DD2E3863293F563D712FEF625F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:28 GMT; domain=bingapis.com
+ - _SS=SID=2B7C31DD2E3863293F563D712FEF625F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 1FBFED095A8A4B1F98C6E558DACF4F87
+ X-Msedge-Clientid:
+ - 1CE920EA9A7A65AD019B2C469BAD64F8
+ X-Msapi-Userstate:
+ - 205b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 1FBFED095A8A4B1F98C6E558DACF4F87 Ref B: CO1EDGE0508 Ref C: 2018-11-19T22:40:28Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:28 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=43B4FD7ACD494C4B981D7E39C89A92C0&CID=1CE920EA9A7A65AD019B2C469BAD64F8&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=43B4FD7ACD494C4B981D7E39C89A92C0&CID=1CE920EA9A7A65AD019B2C469BAD64F8&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=noticia+uno+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5434.1", "totalEstimatedMatches": 554000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Preguntas y Respuestas: Se extiende TPS para hondureños ...", "url": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se-extiende-tps-para-hondurenos-por-18-meses-mas",
+ "urlPingSuffix": "DevEx,5060.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se...",
+ "snippet": "Para solicitar un cambio de fecha de su cita en un ASC, envíe
+ la copia original de su cita con el cambio de fecha a la dirección de ASC
+ que figura en el aviso. Asegúrese de hacer una copia de su aviso original
+ y manténgalo en sus archivos.", "dateLastCrawled": "2018-11-16T11:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Información
+ General sobre el ITIN | Internal Revenue Service", "url": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general-itin-information",
+ "urlPingSuffix": "DevEx,5072.1", "displayUrl": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general...",
+ "snippet": "Un extranjero que no es residente y no califica para un SSN,
+ quien tiene un requisito de presentar una declaración federal de impuestos
+ sólo para reclamar un reembolso bajo las provisiones de algún acuerdo con
+ los Estados Unidos, necesita un ITIN.", "dateLastCrawled": "2018-11-07T05:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Tarjeta
+ Verde para Familiares Inmediatos de un Ciudadano ...", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "urlPingSuffix": "DevEx,5089.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "snippet": "Si usted es un familiar inmediato de un ciudadano estadounidense,
+ puede convertirse en residente permanente legal (obtener una Tarjeta Verde)
+ a base de su relación familiar, si cumple con ciertos requisitos de elegibilidad.",
+ "dateLastCrawled": "2018-11-13T21:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Nuevos Inmigrantes Ahora pueden Crear una Cuenta de USCIS ...", "url":
+ "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora-pueden-crear-una-cuenta-de-uscis-en-linea-al-pagar-la-tarifa-de-inmigrante-de-uscis",
+ "urlPingSuffix": "DevEx,5105.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora...",
+ "snippet": "Un mensaje a los nuevos inmigrantes: Ahora usted tiene la opción
+ de crear una cuenta de USCIS en línea al momento de pagar la Tarifa de Inmigrante
+ de USCIS. Una cuenta en línea le permitirá dar seguimiento fácilmente al estatus
+ de su Tarjeta Verde, recibir notificaciones electrónicas y ...", "dateLastCrawled":
+ "2018-11-07T03:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "| Policía de Puerto Rico", "url": "https:\/\/policia.pr.gov\/", "urlPingSuffix":
+ "DevEx,5118.1", "about": [{"name": "Puerto Rico Police"}], "displayUrl": "https:\/\/policia.pr.gov",
+ "snippet": "Dato importante: Con la nueva disposición de ley, si un peatón
+ muere atropellado, el conductor responsable se expone a 8 años de cárcel sin
+ derecho a probatoria si se va a la fuga y abandona la escena.", "dateLastCrawled":
+ "2018-11-13T21:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Trabajadores de Cuidado de Niños : Occupational Outlook ...", "url":
+ "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare-workers.htm",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare...",
+ "snippet": "Se proyecta que el empleo de los trabajadores de cuidado de niños
+ aumentará un 14 por ciento entre el 2012 y el 2022, casi tan rápido como
+ el promedio de todas las ocupaciones. Los padres continuarán necesitando quien
+ cuide de sus hijos mientras ellos trabajan.", "dateLastCrawled": "2018-11-14T13:15:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Preguntas
+ y Respuestas sobre temas relacionados a ...", "url": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas-y-respuestas-sobre-temas-relacionados-residencia-permanente-green-card",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas...",
+ "snippet": "Nota importante: Las siguientes respuestas en el artículo sobre
+ ciudadanía en el Consejero de Inmigración de Univision.com no deben ser interpretadas
+ como un derecho o beneficio sustantivo o procesal de forma legal por cualquier
+ entidad en contra de los Estados Unidos, sus agencias, representantes o cualquier
+ otra persona.", "dateLastCrawled": "2018-11-15T00:38:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Robo de Identidad
+ | Información para consumidores", "url": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "snippet": "Revise cada uno de sus tres informes de crédito por lo menos
+ una vez al año. Para solicitar sus informes gratuitos, visite annualcreditreport.com.
+ Para más recomendaciones preventivas — y para acceder a recursos que puede
+ compartir con otras personas — visite ftc.gov\/robodeidentidad.", "dateLastCrawled":
+ "2018-11-13T04:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Cambios del Seguro Social para el 2015 - ssa.gov", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola-datos.html",
+ "urlPingSuffix": "DevEx,5178.1", "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola...",
+ "snippet": "Bajo estos límites, se retendrá un dólar de los beneficios por
+ cada $3 de salarios que sobrepasen el límite anteriormente mencionado. Una
+ vez que la persona cumple su plena edad de jubilación, los límites de salarios
+ cesan de aplicarse.", "dateLastCrawled": "2018-11-15T23:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Ceremonias
+ de Naturalización | USCIS", "url": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "snippet": "Un pasaporte estadounidense sirve como prueba oficial de ciudadanía
+ adicional a su Certificado de Naturalización. Recibirá una solicitud para
+ un pasaporte estadounidense en el Paquete de Bienvenida de Ciudadano Estadounidense
+ que le entregará en su ceremonia de naturalización.", "dateLastCrawled": "2018-11-15T10:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "¿Cuánto
+ tiempo tarda el trámite de residencia? | USCIS", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos-para-la-tarjeta-verde\/cuanto-tiempo-tarda-el-tramite-de-residencia",
+ "urlPingSuffix": "DevEx,5209.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos...",
+ "snippet": "En la mayoría de los casos, la petición es presentada por un
+ familiar (Formulario I-130, Petición de Familiar Extranjero) o un empleador
+ (Formulario I-140, Petición de Trabajador Extranjero). En algunos casos, usted
+ puede ser elegible para presentar la solicitud a nombre propio.", "dateLastCrawled":
+ "2018-11-16T12:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Información sobre la matrícula y el título de propiedad de ...",
+ "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "urlPingSuffix": "DevEx,5222.1", "displayUrl": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "snippet": "Dicha ley permite a un usuario el obtener un reemplazo o recompra
+ del vehículo cuando el fabricante no es capaz de reparar el vehículo de acuerdo
+ a la garantía expresa después de un número razonable de intentos, mientras
+ el vehículo se encuentra bajo la garantía original del fabricante.", "dateLastCrawled":
+ "2018-11-16T14:08:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Administradores de Servicios Médicos y de Salud ...", "url": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services-managers.htm",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services...",
+ "snippet": "Los administradores de servicios médicos y de salud, también
+ llamados ejecutivos o administradores de atención de la salud, planifican,
+ dirigen y coordinan servicios médicos y de salud. Pueden dirigir un centro
+ de salud completo, especializarse en un área clínica o un departamento
+ específico, o administrar un consultorio para un grupo de médicos.", "dateLastCrawled":
+ "2018-11-12T15:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Cómo solicitar una Visa | Embajada de EE.UU. en Colombia", "url":
+ "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to-apply-es\/",
+ "urlPingSuffix": "DevEx,5251.1", "displayUrl": "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to...",
+ "snippet": "IMPORTANTE: La Embajada de EE. UU. en Bogotá tiene una política
+ específica para aceptar solicitudes de visa de Comerciante (E1) e Inversionista
+ por Tratado (E2) de solicitantes que no demuestren presencia legal y física
+ en Colombia por un mínimo de un año previo a la solicitud de visa E. Tenga
+ en cuenta que la disponibilidad ...", "dateLastCrawled": "2018-11-13T08:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Suicidio
+ y comportamiento suicida: MedlinePlus ...", "url": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "urlPingSuffix": "DevEx,5267.1", "displayUrl": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "snippet": "Es el acto de quitarse deliberadamente la propia vida. El comportamiento
+ suicida es cualquier acción que pudiera llevar a una persona a morir, como
+ tomar una sobredosis de medicamentos o estrellar un automóvil a propósito.",
+ "dateLastCrawled": "2018-11-13T14:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Información para la prensa | Oficina de Prensa ...", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados\/",
+ "urlPingSuffix": "DevEx,5280.1", "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados",
+ "snippet": "Noticias de última hora acerca del fallo de la Corte Suprema
+ referente a la Ley en Defensa del Matrimonio. 31 de mayo del 2013. ... La
+ Administración del Seguro Social propone un proyecto de ley para poner final
+ a las cesantías de los empleados de la oficina estatal de incapacidad a quienes
+ se les paga con fondos federales.", "dateLastCrawled": "2018-11-15T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Embajada
+ de los Estados Unidos en la República Dominicana", "url": "https:\/\/do.usembassy.gov\/es\/",
+ "urlPingSuffix": "DevEx,5293.1", "about": [{"name": "U.S. Embassy Panama"}],
+ "displayUrl": "https:\/\/do.usembassy.gov\/es", "snippet": "Noticias & Eventos.
+ Mensajes de seguridad y emergencia. Restricciones de viajes hacia Haití para
+ el personal del gobierno de EE.UU. ... Información detallada para visitantes
+ sobre cómo solicitar un visado para Estados Unidos. Aprende más. Estoy interesado
+ en servicios a los ciudadanos de E.U.", "dateLastCrawled": "2018-11-15T21:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Noticias
+ - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "urlPingSuffix": "DevEx,5306.1", "displayUrl": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "snippet": "Noticias de programas y estudios patrocinados por el NCI. Noticias.
+ Noticias destacadas Para cáncer de pulmón de células pequeñas, un fármaco
+ de inmunoterapia mejora la supervivencia. Primer estudio en décadas en mostrar
+ que pacientes con este cáncer vivieron más.", "dateLastCrawled": "2018-11-15T09:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "State
+ of New Jersey", "url": "http:\/\/nj.gov\/oag\/news-esp.htm", "urlPingSuffix":
+ "DevEx,5319.1", "displayUrl": "nj.gov\/oag\/news-esp.htm", "snippet": "1\/12
+ - Un Hombre del Condado de Gloucester en Posesión de 76,000 Videos e Imágenes
+ Pornográficas de Menores Condenado a Siete Años de Prision - El acusado fue
+ uno de los 40 hombres arrestados en el operativo “Operación Statewide”",
+ "dateLastCrawled": "2018-11-13T03:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5332.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:28 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_an_English_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml b/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_an_English_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml
index d7aac23aae..ebde7dd213 100644
--- a/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_an_English_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml
+++ b/features/vcr_cassettes/Legacy_Search/When_a_searcher_on_an_English_site_clicks_on_an_RSS_Feed_on_sidebar_and_the_query_is_blank.yml
@@ -209,4 +209,238 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:41 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=first%20item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4893'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:25 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=23F310760ED965F20ED31CDA0F0E644A; path=/; expires=Sat, 14-Dec-2019 22:40:25
+ GMT; domain=bingapis.com
+ - MUIDB=23F310760ED965F20ED31CDA0F0E644A; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:25 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:25 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=DA2F5F9237DD4045873DDB4D4631B995&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:25 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:25
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1E6AC52426906DBA29CFC98827476C01; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:25 GMT; domain=bingapis.com
+ - _SS=SID=1E6AC52426906DBA29CFC98827476C01; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3D5EB24F916E4766A5DC5A5811A75B0B
+ X-Msedge-Clientid:
+ - 23F310760ED965F20ED31CDA0F0E644A
+ X-Msapi-Userstate:
+ - c336
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3D5EB24F916E4766A5DC5A5811A75B0B Ref B: CO1EDGE0908 Ref C: 2018-11-19T22:40:25Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:25 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=BDAFAFEA28CC45F4BB3E363E2CFA3405&CID=23F310760ED965F20ED31CDA0F0E644A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=BDAFAFEA28CC45F4BB3E363E2CFA3405&CID=23F310760ED965F20ED31CDA0F0E644A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=first+item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5397.1", "totalEstimatedMatches": 6140000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "FIRST ITEM: SECOND ITEM - tn.gov", "url": "https:\/\/www.tn.gov\/content\/dam\/tn\/environment\/air\/documents\/publicnotices\/apc_eastman_august-21-2018-2018-0808%20MSOP-23%20%2031%20SMs%20Web%20Posting.pdf",
+ "urlPingSuffix": "DevEx,5056.1", "displayUrl": "https:\/\/www.tn.gov\/content\/dam\/tn\/environment\/air\/documents...",
+ "snippet": "FIRST ITEM: Eastman Chemical Company has applied for a significant
+ modification to transfer certain permitted emission sources into an existing
+ operating permit. The Title V operating permit subject to the modification
+ is identified as follows: Division identification number 82-0003\/568419",
+ "dateLastCrawled": "2018-11-13T19:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Boston.gov", "url": "https:\/\/www.boston.gov\/", "urlPingSuffix":
+ "DevEx,5069.1", "about": [{"name": "Eliot Burying Ground"}, {"name": "Boston
+ City Hall Plaza"}, {"name": "Boston"}], "displayUrl": "https:\/\/www.boston.gov",
+ "snippet": "City releases first-ever inventory of Boston''s income-restricted
+ housing . Neighborhood Development. More City news. BOS:311 service requests
+ BOS:311. ... (wait until three hours after snowfall ends) Request a bulk item
+ pickup. Request to salt or plow a street. Report a pothole. Report a parking
+ violation. Report a missing or damaged street sign.", "dateLastCrawled": "2018-11-15T19:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "First
+ Grade Mathematics Item Specifications", "url": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs-0717.pdf",
+ "urlPingSuffix": "DevEx,5081.1", "displayUrl": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs...",
+ "snippet": "One of the documents developed is the item specification document,
+ which includes all Missouri grade level\/course expectations arranged by domains\/strands.",
+ "dateLastCrawled": "2018-11-11T01:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "The first items I will discuss are the five points of ...", "url":
+ "https:\/\/www.bragg.army.mil\/application\/files\/5314\/7948\/1914\/Pre-Jump_FY_17.pdf",
+ "urlPingSuffix": "DevEx,5091.1", "displayUrl": "https:\/\/www.bragg.army.mil\/application\/files\/5314\/7948\/1914\/Pre...",
+ "snippet": "PRE-JUMP FOR FORT BRAGG UNITS OCTOBER 2016 The first items I
+ will discuss are the five points of performance. The first point of performance
+ is proper exit, check body position, and count. Jumpers hit it.Upon exiting
+ the aircraft, snap into a good tight body position.", "dateLastCrawled": "2018-11-10T00:05:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "First
+ Responder Network Authority", "url": "https:\/\/firstnet.gov\/", "urlPingSuffix":
+ "DevEx,5104.1", "about": [{"name": "First Responder Network Authority"}, {"name":
+ "First Responder Network Authority"}], "displayUrl": "https:\/\/firstnet.gov",
+ "snippet": "The Middle Class Tax Relief and Job Creation Act of 2012 created
+ the First Responder Network Authority (FirstNet) as an independent authority
+ within NTIA to provide emergency responders with the first nationwide, high-speed,
+ broadband network dedicated to public safety.", "dateLastCrawled": "2018-11-16T09:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "\"The
+ first vote\" \/ AW ; drawn by A.R. Waud. | Library of ...", "url": "https:\/\/www.loc.gov\/item\/2011648984\/",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/www.loc.gov\/item\/2011648984",
+ "snippet": "Title \"The first vote\" \/ AW ; drawn by A.R. Waud. Summary
+ Illustration shows a queue of African American men, the first, dressed as
+ a laborer, casting his vote, the second is dressed as a businessman, the third
+ is wearing a Union army uniform, and the fourth appears to be dressed as a
+ farmer.", "dateLastCrawled": "2018-08-10T00:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "\"The first vote\"", "url": "http:\/\/www.loc.gov\/pictures\/item\/00651117\/",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "www.loc.gov\/pictures\/item\/00651117",
+ "snippet": "Yes, the item is digitized. Please use the digital image in
+ preference to requesting the original. All images can be viewed at a large
+ size when you are in any reading room at the Library of Congress.", "dateLastCrawled":
+ "2018-09-18T03:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "List 1 HTSUS Product Description - ustr.gov", "url": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations\/List%201.pdf",
+ "urlPingSuffix": "DevEx,5143.1", "displayUrl": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations...",
+ "snippet": "List 1 . HTSUS Subheading Product Description 2845.90.00 Isotopes
+ not in heading 2844 and their compounds other than heavy water 4011.30.00
+ New pneumatic tires, of rubber, of a kind used on aircraft", "dateLastCrawled":
+ "2018-11-11T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "hours per response . ..2395.73 FORM 10-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "urlPingSuffix": "DevEx,5154.1", "about": [{"name": "Form 10-K"}, {"name":
+ "Form 10-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "snippet": "(1)The combined report contains full and complete answers to all
+ items required by Form 10-K. When responses to a certain item of required
+ disclosure are separated within the combined report, an appropriate cross-reference
+ should", "dateLastCrawled": "2018-11-14T20:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Guidance on Personal Protective Equipment (PPE) | Personal ...",
+ "url": "https:\/\/www.cdc.gov\/vhf\/ebola\/healthcare-us\/ppe\/guidance.html",
+ "urlPingSuffix": "DevEx,5168.1", "about": [{"name": "Personal protective equipment"}],
+ "displayUrl": "https:\/\/www.cdc.gov\/vhf\/ebola\/healthcare-us\/ppe\/guidance.html",
+ "snippet": "Remove Personal Clothing and Items: Change into surgical scrubs
+ (or disposable garments) and dedicated washable (plastic or rubber) footwear
+ in a suitable, clean area. No personal items (e.g., jewelry including rings,
+ watches, cell phones, pagers, pens) should be brought into patient room.",
+ "dateLastCrawled": "2018-11-16T06:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Pennsylvania System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5182.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Apply
+ in Person - State", "url": "https:\/\/travel.state.gov\/content\/travel\/en\/passports\/apply-renew-passport\/apply-in-person.html",
+ "urlPingSuffix": "DevEx,5198.1", "displayUrl": "https:\/\/travel.state.gov\/...\/apply-renew-passport\/apply-in-person.html",
+ "snippet": "You are applying for your first U.S. passport You are under
+ age 16 Your previous U.S. passport was issued when you were under age 16 Your
+ previous U.S. passport was lost, stolen, or damaged Your previous U.S. passport
+ was issued more than 15 years ago If none of the above statements apply to
+ you ...", "dateLastCrawled": "2018-11-11T00:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "FAR -- Part 12 Acquisition of Commercial Items", "url": "http:\/\/farsite.hill.af.mil\/reghtml\/regs\/far2afmcfars\/fardfars\/far\/12.htm",
+ "urlPingSuffix": "DevEx,5212.1", "displayUrl": "farsite.hill.af.mil\/reghtml\/regs\/far2afmcfars\/fardfars\/far\/12.htm",
+ "snippet": "It implements the Federal Government’s preference for the acquisition
+ of commercial items contained in 41 U.S.C. 1906, 1907, and 3307 and 10 U.S.C.
+ 2375-2377 by establishing acquisition policies more closely resembling those
+ of the commercial marketplace and encouraging the acquisition of commercial
+ items and components.", "dateLastCrawled": "2018-11-16T07:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "SEC.gov
+ | How to Read a 10-K", "url": "https:\/\/www.sec.gov\/fast-answers\/answersreada10khtm.html",
+ "urlPingSuffix": "DevEx,5226.1", "displayUrl": "https:\/\/www.sec.gov\/fast-answers\/answersreada10khtm.html",
+ "snippet": "Item 15 - “Exhibits, Financial Statement Schedules” requires
+ a list of the financial statements and exhibits included as part of the Form
+ 10-K. Many exhibits are required, including documents such as the company’s
+ bylaws, copies of its material contracts, and a list of the company’s subsidiaries.",
+ "dateLastCrawled": "2018-11-16T02:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "FORM ADV (Paper Version) - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/about\/forms\/formadv-part1a.pdf",
+ "urlPingSuffix": "DevEx,5238.1", "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/formadv-part1a.pdf",
+ "snippet": "Item 1 Identifying Information . Responses to this Item tell
+ us who you are, where you are doing business, and how we can ... Your full
+ legal name (if you are a sole proprietor, your last, first, and middle names):
+ B. (1) Name under which you primarily conduct your advisory business, if different
+ from ... If you are using this Form ADV to ...", "dateLastCrawled": "2018-11-13T18:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "The first
+ picket line - College day ... - Library of Congress", "url": "https:\/\/www.loc.gov\/item\/97500299\/",
+ "urlPingSuffix": "DevEx,5250.1", "displayUrl": "https:\/\/www.loc.gov\/item\/97500299",
+ "snippet": "In some cases, only thumbnail (small) images are available when
+ you are outside the Library of Congress because the item is rights restricted
+ or has not been evaluated for rights restrictions. As a preservation measure,
+ we generally do not serve an original item when a digital image is available.",
+ "dateLastCrawled": "2018-07-16T23:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Build A Kit | Ready.gov", "url": "https:\/\/www.ready.gov\/build-a-kit",
+ "urlPingSuffix": "DevEx,5264.1", "about": [{"name": "Emergency shelter"},
+ {"name": "Ready"}], "displayUrl": "https:\/\/www.ready.gov\/build-a-kit",
+ "snippet": "Make sure your emergency kit is stocked with the items on the
+ checklist below. Most of the items are inexpensive and easy to find, and
+ any one of them could save your life. Headed to the store? Download a printable
+ version to take with you.", "dateLastCrawled": "2018-11-13T23:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "The
+ first spadeful | Library of Congress", "url": "https:\/\/www.loc.gov\/item\/2010717820\/",
+ "urlPingSuffix": "DevEx,5277.1", "displayUrl": "https:\/\/www.loc.gov\/item\/2010717820",
+ "snippet": "Title The first spadeful Summary Theodore Roosevelt standing
+ among ships in harbor and digging and throwing dirt in direction of \"Bogota,\"
+ while small man on hill raises flag \"new treaty.\"", "dateLastCrawled": "2018-08-21T03:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "First
+ Methodist Protestant Church, 4th St., between G and ...", "url": "https:\/\/www.loc.gov\/item\/2003652509\/",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.loc.gov\/item\/2003652509",
+ "snippet": "Citations are generated automatically from bibliographic data
+ as a convenience, and may not be complete or accurate.", "dateLastCrawled":
+ "2018-10-25T16:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "First woman jury, Los Angeles | Library of Congress", "url": "https:\/\/www.loc.gov\/item\/2014690063\/",
+ "urlPingSuffix": "DevEx,5301.1", "displayUrl": "https:\/\/www.loc.gov\/item\/2014690063",
+ "snippet": "Photo shows the first all-woman jury in California who acquitted
+ the editor of the Watts News of printing indecent language, on Nov. 2, 1911.
+ (Source: Flickr Commons project, 2009 and Los Angeles Times, Nov. 3, 1911
+ ...", "dateLastCrawled": "2018-09-27T15:22:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:26 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Legacy_Search/When_there_are_relevant_Tweets_from_Twitter_profiles_associated_with_the_affiliate.yml b/features/vcr_cassettes/Legacy_Search/When_there_are_relevant_Tweets_from_Twitter_profiles_associated_with_the_affiliate.yml
index cd80ffb629..c56dfc646c 100644
--- a/features/vcr_cassettes/Legacy_Search/When_there_are_relevant_Tweets_from_Twitter_profiles_associated_with_the_affiliate.yml
+++ b/features/vcr_cassettes/Legacy_Search/When_there_are_relevant_Tweets_from_Twitter_profiles_associated_with_the_affiliate.yml
@@ -420,4 +420,468 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:16:46 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=season%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4212'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:30 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=17D31F274CA2641D14DD138B4D75655C; path=/; expires=Sat, 14-Dec-2019 22:40:30
+ GMT; domain=bingapis.com
+ - MUIDB=17D31F274CA2641D14DD138B4D75655C; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:30 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:30 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=602B4D104F1541A48B7B388B8641EF8B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:30 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:30
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=06A2B6F03D54670C12C8BA5C3C83666D; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:30 GMT; domain=bingapis.com
+ - _SS=SID=06A2B6F03D54670C12C8BA5C3C83666D; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 7B114139BF3D4AC1A557B5054DB5F7E0
+ X-Msedge-Clientid:
+ - 17D31F274CA2641D14DD138B4D75655C
+ X-Msapi-Userstate:
+ - a3ac
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 7B114139BF3D4AC1A557B5054DB5F7E0 Ref B: CO1EDGE0207 Ref C: 2018-11-19T22:40:30Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:30 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=4ECE686CAC0041FF9229E160EF196B3A&CID=17D31F274CA2641D14DD138B4D75655C&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=4ECE686CAC0041FF9229E160EF196B3A&CID=17D31F274CA2641D14DD138B4D75655C&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=season+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5415.1", "totalEstimatedMatches": 16400000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Open Season", "url": "https:\/\/www.opm.gov\/healthcare-insurance\/open-season",
+ "urlPingSuffix": "DevEx,5056.1", "displayUrl": "https:\/\/www.opm.gov\/healthcare-insurance\/open-season",
+ "snippet": "Welcome to the home page for the Federal Benefits Open Season.
+ Here you will find all the resources you need to make informed decisions about
+ your health, dental, vision, or flexible spending account benefits.", "dateLastCrawled":
+ "2018-11-15T16:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "2018-2019 Flu Season | Seasonal Influenza (Flu) | CDC", "url":
+ "https:\/\/www.cdc.gov\/flu\/about\/season\/current.htm", "urlPingSuffix":
+ "DevEx,5070.1", "displayUrl": "https:\/\/www.cdc.gov\/flu\/about\/season\/current.htm",
+ "snippet": "More information about the upcoming 2018-2019 flu season is
+ available. What You Need to Know Find preventive steps, symptoms, and treatment
+ options for this flu season.", "dateLastCrawled": "2018-11-12T20:53:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Summary
+ of the 2017-2018 Influenza Season | Seasonal ...", "url": "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season-2017-2018.htm",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season-2017-2018.htm",
+ "snippet": "The 2017-2018 influenza season was a high severity season
+ with high levels of outpatient clinic and emergency department visits for
+ influenza-like illness (ILI), high influenza-related hospitalization rates,
+ and elevated and geographically widespread influenza activity for an extended
+ period.", "dateLastCrawled": "2018-11-13T14:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "2018-19 Tennessee Hunting Seasons Summary", "url": "https:\/\/www.tn.gov\/content\/dam\/tn\/twra\/documents\/hunting_seasons_summary.pdf",
+ "urlPingSuffix": "DevEx,5094.1", "displayUrl": "https:\/\/www.tn.gov\/...\/tn\/twra\/documents\/hunting_seasons_summary.pdf",
+ "snippet": "2018-19 Tennessee Hunting Seasons Summary. Please refer to the
+ . 2018-19 Tennessee Hunting and Trapping Guide . for detailed hunting dates,
+ bag limits, zones, units, and required licenses and\/or permits.", "dateLastCrawled":
+ "2018-11-12T05:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Hunting Seasons | MDC Hunting and Fishing", "url": "https:\/\/huntfish.mdc.mo.gov\/hunting-trapping\/seasons",
+ "urlPingSuffix": "DevEx,5109.1", "displayUrl": "https:\/\/huntfish.mdc.mo.gov\/hunting-trapping\/seasons",
+ "snippet": "During fall deer season, hunters must have an unfilled firearms
+ deer hunting permit and a permit to hunt small game. During spring turkey
+ season, coyotes may be taken using only methods allowed for spring turkey
+ hunting, and hunters must have an unfilled spring turkey hunting permit and
+ a permit to hunt small game.", "dateLastCrawled": "2018-11-10T19:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "NOAA forecasters
+ lower Atlantic hurricane season ...", "url": "https:\/\/www.noaa.gov\/media-release\/noaa-forecasters-lower-atlantic-hurricane-season-prediction",
+ "urlPingSuffix": "DevEx,5122.1", "displayUrl": "https:\/\/www.noaa.gov\/media-release\/noaa-forecasters-lower-atlantic...",
+ "snippet": "For the entire season, which ends Nov. 30, NOAA predicts a total
+ of 9-13 named storms (winds of 39 mph or greater) of which 4-7 will become
+ hurricanes (winds of 74 mph or greater), including 0-2 major hurricanes (winds
+ of 111 mph or greater).", "dateLastCrawled": "2018-11-13T04:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Deer Hunting",
+ "url": "https:\/\/www.wildlife.ca.gov\/Hunting\/Deer", "urlPingSuffix": "DevEx,5137.1",
+ "displayUrl": "https:\/\/www.wildlife.ca.gov\/Hunting\/Deer", "snippet": "Beginning
+ with the 2015-2016 season EVERY purchaser of a deer tag(s) must report their
+ harvest, even if they were unsuccessful, or if they did not hunt.. For successful
+ hunters, the report must be made within 30 days of harvesting a deer or by
+ January 31, whichever date is first.", "dateLastCrawled": "2018-11-13T16:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Open Season
+ (November 12 – December 10) | TRICARE", "url": "https:\/\/www.tricare.mil\/About\/Changes\/OpenSeason",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.tricare.mil\/About\/Changes\/OpenSeason",
+ "snippet": "What is TRICARE Open Season? Open Season is an annual period
+ when you can enroll in or change your health plan for the next year. It will
+ occur each fall, beginning on the Monday of the second full week in November
+ to the Monday of the second full week in December. For 2018, Open Season
+ is Nov. 12 to Dec. 10.", "dateLastCrawled": "2018-11-16T05:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Seasons
+ and Bag Limits", "url": "https:\/\/www.pgc.pa.gov\/HuntTrap\/Law\/Pages\/SeasonsandBagLimits.aspx",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.pgc.pa.gov\/HuntTrap\/Law\/Pages\/SeasonsandBagLimits.aspx",
+ "snippet": "ELK (Outside Elk Management Area) extended season: Nov. 12-17.
+ Only one elk may be taken during the license year. Only one elk may be taken
+ during the license year. For eligible elk license recipients who haven’t harvested
+ an elk by Nov. 10, in designated areas.", "dateLastCrawled": "2018-11-13T09:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "The Flu
+ Season | Seasonal Influenza (Flu) | CDC", "url": "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season.htm",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Influenza (flu)"}], "displayUrl":
+ "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season.htm", "snippet":
+ "When is the flu season in the United States? In the United States, flu
+ season occurs in the fall and winter. While influenza viruses circulate year-round,
+ most of the time flu activity peaks between December and February, but activity
+ can last as late as May.", "dateLastCrawled": "2018-11-13T06:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Hunting
+ dates and deadlines - Wisconsin DNR", "url": "http:\/\/dnr.wi.gov\/topic\/hunt\/dates.html",
+ "urlPingSuffix": "DevEx,5190.1", "displayUrl": "dnr.wi.gov\/topic\/hunt\/dates.html",
+ "snippet": "No season limits, bag limits, size limits or possession limits,
+ but a license is required. Print the 2018 season dates and application deadlines
+ [PDF] Last revised: Wednesday November 07 2018", "dateLastCrawled": "2018-11-15T08:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "DNR -
+ Season Information", "url": "https:\/\/www.michigan.gov\/dnr\/0,4570,7-350-79119_79147_82106---,00.html",
+ "urlPingSuffix": "DevEx,5206.1", "displayUrl": "https:\/\/www.michigan.gov\/dnr\/0,4570,7-350-79119_79147_82106---,00.html",
+ "snippet": "Season Dates for All Species Note: Seasons marked with an *
+ indicate the season dates are the same each year. Fur Harvester Information
+ (includes Muskrat, Mink, Raccoon, Fox, Bobcat, Badger, Fisher\/Marten, Beaver,
+ Otter, and Coyote): See page 6 of the Michigan Hunting and Trapping Digest
+ .", "dateLastCrawled": "2018-10-26T00:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Deer and Bear Hunting Seasons", "url": "http:\/\/www.dec.ny.gov\/outdoor\/28605.html",
+ "urlPingSuffix": "DevEx,5224.1", "displayUrl": "www.dec.ny.gov\/outdoor\/28605.html",
+ "snippet": "Early Season bear hunters may use a bow (with appropriate bowhunting
+ eligibility), crossbow, muzzleloader, handgun, shotgun, or rifle (where allowed).
+ For legal implements in other bear seasons, please see Rifle, Shotgun, and
+ Bow Areas .", "dateLastCrawled": "2018-11-16T01:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "2018-19 Big Game, Turkey, and Furbearer Seasons Summary ...", "url":
+ "http:\/\/www.dec.ny.gov\/docs\/wildlife_pdf\/huntseason18.pdf", "urlPingSuffix":
+ "DevEx,5235.1", "displayUrl": "www.dec.ny.gov\/docs\/wildlife_pdf\/huntseason18.pdf",
+ "snippet": "Season Dates Fall 2018 Oct. 1 – Oct. 14 Oct. 20 – Nov. 2 Nov.
+ 17 – Nov.30 2018-19 Big Game, Turkey, and Furbearer Seasons Summary (most
+ maps depict Wildlife Management Unit boundaries, refer to the 2018-19 Hunting
+ & Trapping Regulations Guide)", "dateLastCrawled": "2018-11-12T20:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Prevention
+ and Control of Seasonal Influenza with Vaccines ...", "url": "https:\/\/www.cdc.gov\/mmwr\/volumes\/67\/rr\/rr6703a1.htm",
+ "urlPingSuffix": "DevEx,5246.1", "displayUrl": "https:\/\/www.cdc.gov\/mmwr\/volumes\/67\/rr\/rr6703a1.htm",
+ "snippet": "This report focuses on the recommendations for use of vaccines
+ for the prevention and control of influenza during the 2018–19 season in
+ the United States. Vaccination and health care providers should check CDC’s
+ influenza website periodically for additional information.", "dateLastCrawled":
+ "2018-11-12T21:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Frequently Asked Flu Questions 2018-2019 Influenza Season", "url":
+ "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season-2018-2019.htm", "urlPingSuffix":
+ "DevEx,5258.1", "displayUrl": "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season-2018-2019.htm",
+ "snippet": "What flu vaccines are recommended this season? For the 2018-2019
+ flu season, providers may choose to administer any licensed, age-appropriate
+ flu vaccine (IIV, RIV4, or LAIV4). There is a table showing all flu vaccines
+ that are FDA-approved for use in the United States during the 2018-2019 season
+ ...", "dateLastCrawled": "2018-11-15T03:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Summary of the 2015-2016 Influenza Season | Seasonal ...", "url":
+ "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season-2015-2016.htm", "urlPingSuffix":
+ "DevEx,5271.1", "displayUrl": "https:\/\/www.cdc.gov\/flu\/about\/season\/flu-season-2015-2016.htm",
+ "snippet": "What was the 2015-2016 flu season like? Flu seasons can vary
+ in their timing, severity, and duration from one season to another. The
+ 2015-2016 flu season started a little later than the previous three flu
+ seasons.", "dateLastCrawled": "2018-11-18T17:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Montana Fish, Wildlife & Parks :: Season Dates", "url": "http:\/\/fwp.mt.gov\/hunting\/seasons\/",
+ "urlPingSuffix": "DevEx,5286.1", "about": [{"name": "Montana Department of
+ Fish, Wildlife and Parks"}], "displayUrl": "fwp.mt.gov\/hunting\/seasons",
+ "snippet": "General hunting season dates for the current hunting season.",
+ "dateLastCrawled": "2018-11-15T15:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Hunting Seasons - NYS Dept. of Environmental Conservation", "url":
+ "http:\/\/www.dec.ny.gov\/outdoor\/65231.html", "urlPingSuffix": "DevEx,5302.1",
+ "displayUrl": "www.dec.ny.gov\/outdoor\/65231.html", "snippet": "The fall
+ season is divided in to six season zones and fall hunting hours are sunrise
+ to sunset. Waterfowl Seasons. Hunters in pursuit of ducks, mergansers, geese,
+ and brant can view dates and bag limits for waterfowl seasons and a special
+ youth waterfowl hunt.", "dateLastCrawled": "2018-11-15T08:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Forecasters
+ predict a near- or above-normal 2018 Atlantic ...", "url": "https:\/\/www.noaa.gov\/media-release\/forecasters-predict-near-or-above-normal-2018-atlantic-hurricane-season",
+ "urlPingSuffix": "DevEx,5315.1", "displayUrl": "https:\/\/www.noaa.gov\/media-release\/forecasters-predict-near-or...",
+ "snippet": "Forecasters predict a 35 percent chance of an above-normal season,
+ a 40 percent chance of a near-normal season, and a 25 percent chance of
+ a below-normal season for the upcoming hurricane season, which extends
+ from June 1 to November 30.", "dateLastCrawled": "2018-11-16T03:53:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:30 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=estados%20unidos%20amiga%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4141'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:39:31 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=08ED054C12716F222DFF09E013A66E00; path=/; expires=Sat, 14-Dec-2019 22:40:31
+ GMT; domain=bingapis.com
+ - MUIDB=08ED054C12716F222DFF09E013A66E00; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:40:31 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:31 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=76B0C234621441C08D5BECD47DE1396B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:40:31 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:40:31
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0EB6C7A8A62662782260CB04A7F16314; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:40:31 GMT; domain=bingapis.com
+ - _SS=SID=0EB6C7A8A62662782260CB04A7F16314; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 4BBD56CFEC64451B88CA0708BA27167D
+ X-Msedge-Clientid:
+ - '08ED054C12716F222DFF09E013A66E00'
+ X-Msapi-Userstate:
+ - 3c44
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 4BBD56CFEC64451B88CA0708BA27167D Ref B: CO1EDGE0311 Ref C: 2018-11-19T22:40:31Z'
+ Date:
+ - Mon, 19 Nov 2018 22:40:31 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=B8BAC2F8471345D2976BA8E705C1115E&CID=08ED054C12716F222DFF09E013A66E00&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=B8BAC2F8471345D2976BA8E705C1115E&CID=08ED054C12716F222DFF09E013A66E00&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=estados+unidos+amiga+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5432.1", "totalEstimatedMatches": 34800,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Visita a los Estados Unidos | USCIS", "url": "https:\/\/www.uscis.gov\/es\/visita-los-estados-unidos",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/visita-los-estados-unidos",
+ "snippet": "La visa B-1 es para individuos que desean visitar los Estados
+ Unidos temporalmente por razón de negocios, (por ejemplo, asistir a conferencias)
+ o para recibir tratamiento médico, o para acompañar a un familiar que requiere
+ tratamiento médico. La visa B-2 es para individuos que desean visitar los
+ ...", "dateLastCrawled": "2018-11-16T02:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Soy ciudadano de los Estados Unidos A3 - uscis.gov", "url":
+ "https:\/\/www.uscis.gov\/sites\/default\/files\/files\/article\/A3esp.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.uscis.gov\/sites\/default\/files\/files\/article\/A3esp.pdf",
+ "snippet": "A3—Soy cuidadano de los Estados Unidos…¿Cómo puedo traer a los
+ Estados Unidos a mi hijo adoptivoo a un niño que quiero adoptar, o cómo
+ puedo ayudar a mi hijo adoptivo a adquirir la residencia permanente o ciudadanía
+ en los Estados Unidos? M-556S (Febrero 2014) N.", "dateLastCrawled": "2018-11-03T21:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Bienvenido
+ a los Estados Unidos de América Guía para ...", "url": "https:\/\/www.uscis.gov\/sites\/default\/files\/files\/nativedocuments\/M-618_sp.pdf",
+ "urlPingSuffix": "DevEx,5080.1", "displayUrl": "https:\/\/www.uscis.gov\/sites\/default\/files\/files\/nativedocuments\/M...",
+ "snippet": "Estados Unidos tiene una larga tradición de acoger a inmigrantes
+ de todas partes del mundo. Este país valora las contribuciones de los inmigrantes,
+ quienes siguen enriqueciendo nuestra nación y preservando su legado de libertad
+ y de oportunidades para todos.", "dateLastCrawled": "2018-11-15T08:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "240 Aniversario
+ de la Independencia de EE.UU. | Embajada ...", "url": "https:\/\/ni.usembassy.gov\/es\/240-aniversario-de-la-independencia-de-ee-uu\/",
+ "urlPingSuffix": "DevEx,5094.1", "displayUrl": "https:\/\/ni.usembassy.gov\/es\/240-aniversario-de-la-independencia-de...",
+ "snippet": "TEl Programa de exención de visas (VWP, en inglés) permite a ciudadanos
+ de países participantes* viajar a Estados Unidos sin visado por estancias
+ de 90 días o menos, cuando cumplan con todos los requisitos.", "dateLastCrawled":
+ "2018-11-11T08:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Discursos Archives | Embajada de EE.UU. en España y Andorra", "url":
+ "https:\/\/es.usembassy.gov\/es\/category\/discursos\/", "urlPingSuffix":
+ "DevEx,5109.1", "displayUrl": "https:\/\/es.usembassy.gov\/es\/category\/discursos",
+ "snippet": "Washington, DC 11 de octubre de 2017 En nombre del gobierno de
+ los Estados Unidos de América, envío nuestros mejores deseos al pueblo de
+ España con motivo de la celebración de su Fiesta Nacional. Estados Unidos
+ y España son grandes amigos y sólidos aliados.", "dateLastCrawled": "2018-11-10T19:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Negocios
+ & Turismo (B1\/B2) | Embajada y consulados de ...", "url": "https:\/\/mx.usembassy.gov\/es\/visas-es\/turismo-y-visitantes\/",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/mx.usembassy.gov\/es\/visas-es\/turismo-y-visitantes",
+ "snippet": "La visa B2 esta diseñada para actividades turísticas, tales como
+ compras y turismo, visitar amigos y parientes, obtener tratamientos médicos,
+ etc. La visa B1 y B2 no es válida para obtener empleo en Estados Unidos
+ de América.", "dateLastCrawled": "2018-11-15T17:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Embajada agradece a Asamblea Legislativa por el decreto de ...",
+ "url": "https:\/\/sv.usembassy.gov\/es\/embajada-agradece-asamblea-legislativa-por-el-decreto-de-dia-de-la-amistad-ee-uu-el-salvador\/",
+ "urlPingSuffix": "DevEx,5139.1", "displayUrl": "https:\/\/sv.usembassy.gov\/es\/embajada-agradece-asamblea-legislativa...",
+ "snippet": "Creemos que el ‘Día de la Amistad’ puede servir como un llamado
+ a la acción para los amigos de El Salvador, tanto aquí como en los Estados
+ Unidos, para encontrar otras maneras de contribuir a este esfuerzo”.", "dateLastCrawled":
+ "2018-11-15T15:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Preguntas frecuentes | Embajada de EE.UU. en España y Andorra", "url":
+ "https:\/\/es.usembassy.gov\/es\/education-culture-es\/preguntas-frecuentes\/",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/es.usembassy.gov\/es\/education-culture-es\/preguntas-frecuentes",
+ "snippet": "Tenemos unos amigos residentes en Estados Unidos y nos han
+ ofrecido la posibilidad de que se aloje en su domicilio. R – Si su hija va
+ a matricularse en un colegio público, son sus amigos norteamericanos los
+ que deben acudir al centro que les corresponda por zona y comunicar al director
+ del colegio que van a acoger a un estudiante extranjero ...", "dateLastCrawled":
+ "2018-11-11T18:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Bienestar y paradero | Embajada de EE.UU. en Costa Rica", "url":
+ "https:\/\/cr.usembassy.gov\/es\/u-s-citizen-services-es\/bienestar-y-paradero\/",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/cr.usembassy.gov\/es\/u-s-citizen-services-es\/bienestar-y...",
+ "snippet": "Estados Unidos apoya ambicioso proyecto para mejorar las oportunidades
+ y condiciones laborales de los jóvenes en Costa Rica Pista multiusos renovada
+ ¡Llegaron!", "dateLastCrawled": "2018-11-13T06:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Visados | Embajada de EE.UU. en España y Andorra", "url": "https:\/\/es.usembassy.gov\/es\/visas-es\/",
+ "urlPingSuffix": "DevEx,5184.1", "displayUrl": "https:\/\/es.usembassy.gov\/es\/visas-es",
+ "snippet": "Un ciudadano de un país extranjero que busca entrar a los Estados
+ Unidos en general, debe primero obtener una visa de EE.UU., que se coloca
+ en el pasaporte del viajero, un documento de viaje expedido por el país de
+ ciudadanía del viajero.", "dateLastCrawled": "2018-11-15T12:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Día de
+ los Veteranos Archivo | Embajada de los Estados ...", "url": "https:\/\/pa.usembassy.gov\/es\/tag\/dia-de-los-veteranos\/",
+ "urlPingSuffix": "DevEx,5198.1", "displayUrl": "https:\/\/pa.usembassy.gov\/es\/tag\/dia-de-los-veteranos",
+ "snippet": "Esta es la página oficial de la Embajada de los Estados Unidos
+ en Panamá. Los enlaces externos a otros sitios de Internet no deben interpretarse
+ como un endoso de los puntos de vista o las políticas de privacidad contenidos
+ en el mismo.", "dateLastCrawled": "2018-11-13T23:52:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Visa de no inmigrante
+ | Embajada de los Estados Unidos en ...", "url": "https:\/\/gt.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/",
+ "urlPingSuffix": "DevEx,5213.1", "displayUrl": "https:\/\/gt.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es",
+ "snippet": "La Sección Consular de la Embajada de los Estados Unidos en
+ la Ciudad de Guatemala es responsable de proporcionar servicios de visas a
+ aquellos que buscan ingresar a los Estados Unidos por un período temporal
+ y para aquellos que desean tener una residencia indefinida o permanente en
+ los Estados Unidos.", "dateLastCrawled": "2018-11-16T05:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Fallecimiento
+ de un ciudadano de EE.UU. | Embajada de los ...", "url": "https:\/\/pa.usembassy.gov\/es\/u-s-citizen-services-es\/death-of-a-u-s-citizen-es\/",
+ "urlPingSuffix": "DevEx,5228.1", "displayUrl": "https:\/\/pa.usembassy.gov\/es\/u-s-citizen-services-es\/death-of-a-u-s...",
+ "snippet": "La Unidad de Servicios para Ciudadanos Americanos (ACS) puede
+ asistir a familiar y amigos en un evento de muerte de un ciudadano Americano
+ en Panamá. La Unidad ACS puede notificar al pariente más cercano en los Estados
+ Unidos, actuar como enlace para arreglar la disposición de los restos y ayudar
+ con el envío de los ...", "dateLastCrawled": "2018-11-11T09:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Comunicado
+ del secretario Tillerson: Fiesta Nacional de ...", "url": "https:\/\/es.usembassy.gov\/es\/statement-secretary-tillerson-spain-national-day-es\/",
+ "urlPingSuffix": "DevEx,5243.1", "displayUrl": "https:\/\/es.usembassy.gov\/es\/statement-secretary-tillerson-spain...",
+ "snippet": "Estados Unidos y España son grandes amigos y sólidos aliados.
+ Como dijo el Presidente durante su reunión con el Presidente Rajoy el pasado
+ 26 de septiembre, la profunda relación entre nuestros pueblos constituye una
+ base firme para la cooperación duradera.", "dateLastCrawled": "2018-10-29T17:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Fallecimiento
+ de un ciudadano estadounidense | Embajada de ...", "url": "https:\/\/ve.usembassy.gov\/es\/u-s-citizen-services-es\/death-of-a-u-s-citizen-es\/",
+ "urlPingSuffix": "DevEx,5258.1", "displayUrl": "https:\/\/ve.usembassy.gov\/es\/u-s-citizen-services-es\/death-of-a-u-s...",
+ "snippet": "Cuando un ciudadano estadounidense fallece en Venezuela, la Embajada
+ de los Estados Unidos en Caracas puede asistir a los familiares y amigos
+ durante éste momento tan difícil. La Embajada puede ayudar localizando y notificando
+ a los familiares inmediatos del fallecido e informar a los familiares sobre
+ los requisitos del entierro localmente o la repatriación de ...", "dateLastCrawled":
+ "2018-11-11T08:51:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Visados | U.S. Embassy in El Salvador", "url": "https:\/\/sv.usembassy.gov\/es\/visas-es\/",
+ "urlPingSuffix": "DevEx,5273.1", "displayUrl": "https:\/\/sv.usembassy.gov\/es\/visas-es",
+ "snippet": "las Secciones Consulares de los Estados Unidos no permiten que
+ ningún tipo de acompañante, como amigos, parientes, abogados o contactos
+ de negocios, se presente a la entrevista junto con el solicitante debido a
+ políticas de seguridad y limitantes de espacio. Existen las siguientes excepciones:",
+ "dateLastCrawled": "2018-11-16T08:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Discurso del asesor en Seguridad Nacional, embajador John ...", "url":
+ "https:\/\/ni.usembassy.gov\/es\/discurso-del-asesor-en-seguridad-nacional-embajador-john-r-bolton\/",
+ "urlPingSuffix": "DevEx,5287.1", "displayUrl": "https:\/\/ni.usembassy.gov\/es\/discurso-del-asesor-en-seguridad-nac...",
+ "snippet": "Estados Unidos defenderá a sus ciudadanos, nuestros aliados
+ y nuestros amigos, ya sea que frecuenten nuestra nueva Embajada de EE.UU.
+ en Jerusalén, exijan reformas en Teherán o luchen por la libertad en las calles
+ de La Habana.", "dateLastCrawled": "2018-11-14T11:26:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Discursos Archives
+ | Embajada de los Estados Unidos en ...", "url": "https:\/\/gt.usembassy.gov\/es\/category\/discursos\/",
+ "urlPingSuffix": "DevEx,5302.1", "displayUrl": "https:\/\/gt.usembassy.gov\/es\/category\/discursos",
+ "snippet": "29\/06\/2017 Estimados amigos: Sean bienvenidos todos a la conmemoración
+ del Día de la Independencia de los Estados Unidos de América. Este año decidimos
+ celebrar la ciudad de Nueva York, una de las ciudades más diversas del mundo.",
+ "dateLastCrawled": "2018-11-03T13:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Asistencia financiera de emergencia | Embajada de EE.UU ...", "url":
+ "https:\/\/co.usembassy.gov\/es\/u-s-citizen-services-es\/emergency-financial-assistance-es\/",
+ "urlPingSuffix": "DevEx,5317.1", "displayUrl": "https:\/\/co.usembassy.gov\/es\/u-s-citizen-services-es\/emergency...",
+ "snippet": "El Programa de Exención de Visa o Visa Waiver Program (VWP) permite
+ a los ciudadanos de los países participantes* viajar a Estados Unidos sin
+ una visa, para estadías de 90 días o menos, si cumplen con todos los requisitos.",
+ "dateLastCrawled": "2018-11-06T01:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Matrimonio en Colombia | Embajada de EE.UU. en Colombia", "url":
+ "https:\/\/co.usembassy.gov\/es\/u-s-citizen-services-es\/child-family-matters-es\/marriage-colombia-es\/",
+ "urlPingSuffix": "DevEx,5332.1", "displayUrl": "https:\/\/co.usembassy.gov\/es\/u-s-citizen-services-es\/child-family...",
+ "snippet": "El Programa de Exención de Visa o Visa Waiver Program (VWP) permite
+ a los ciudadanos de los países participantes* viajar a Estados Unidos sin
+ una visa, para estadías de 90 días o menos, si cumplen con todos los requisitos.",
+ "dateLastCrawled": "2018-11-08T22:20:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:40:31 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Manage_Display/Editing_No_Results_Page_on_non_legacy_Affiliate.yml b/features/vcr_cassettes/Manage_Display/Editing_No_Results_Page_on_non_legacy_Affiliate.yml
index b5ac3762cf..b3d84132de 100644
--- a/features/vcr_cassettes/Manage_Display/Editing_No_Results_Page_on_non_legacy_Affiliate.yml
+++ b/features/vcr_cassettes/Manage_Display/Editing_No_Results_Page_on_non_legacy_Affiliate.yml
@@ -140,4 +140,140 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:15:04 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hdakfjd%3Bkljowaurei%3Bak%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:37:45 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=17859FC09F566DA20129936C9E816CF0; path=/; expires=Sat, 14-Dec-2019 22:38:45
+ GMT; domain=bingapis.com
+ - MUIDB=17859FC09F566DA20129936C9E816CF0; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:38:45 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:38:45 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=1A4B83F3E5F84992AB5D7922E7016472&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:38:45 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:38:45
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=02C31201B15C665D14151EADB08B6778; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:38:45 GMT; domain=bingapis.com
+ - _SS=SID=02C31201B15C665D14151EADB08B6778; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3BFB0C8EC3AF480DB62F76FBBB7B0FEF
+ X-Msedge-Clientid:
+ - 17859FC09F566DA20129936C9E816CF0
+ X-Msapi-Userstate:
+ - f55d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3BFB0C8EC3AF480DB62F76FBBB7B0FEF Ref B: CO1EDGE0922 Ref C: 2018-11-19T22:38:45Z'
+ Date:
+ - Mon, 19 Nov 2018 22:38:45 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=489AF567FA894865A4A1E0F3E53AE00F&CID=17859FC09F566DA20129936C9E816CF0&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=489AF567FA894865A4A1E0F3E53AE00F&CID=17859FC09F566DA20129936C9E816CF0&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:38:45 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hdakfjd%3Bkljowaurei%3Bak%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '241'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:37:46 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=152006DAA36D62C82A860A76A2BA630D; path=/; expires=Sat, 14-Dec-2019 22:38:46
+ GMT; domain=bingapis.com
+ - MUIDB=152006DAA36D62C82A860A76A2BA630D; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:38:46 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:38:46 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A0DA4D8F2AAC4BAB9DC0283CF344A452&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:38:46 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:38:46
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=10FADC0E217D676D0FC1D0A220AA663C; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:38:46 GMT; domain=bingapis.com
+ - _SS=SID=10FADC0E217D676D0FC1D0A220AA663C; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 96BD72D1466E4029A6EBA30F5E939EAC
+ X-Msedge-Clientid:
+ - 152006DAA36D62C82A860A76A2BA630D
+ X-Msapi-Userstate:
+ - dbf2
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 96BD72D1466E4029A6EBA30F5E939EAC Ref B: CO1EDGE0215 Ref C: 2018-11-19T22:38:46Z'
+ Date:
+ - Mon, 19 Nov 2018 22:38:45 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=0A7C8D8C5D5F4734B3339137743077E7&CID=152006DAA36D62C82A860A76A2BA630D&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=0A7C8D8C5D5F4734B3339137743077E7&CID=152006DAA36D62C82A860A76A2BA630D&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:38:47 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/SearchGov_search/Image_search.yml b/features/vcr_cassettes/SearchGov_search/Image_search.yml
index 0ce3eb85a5..40408b4f42 100644
--- a/features/vcr_cassettes/SearchGov_search/Image_search.yml
+++ b/features/vcr_cassettes/SearchGov_search/Image_search.yml
@@ -529,4 +529,713 @@ http_interactions:
[]}, {"pivot": "site:archive.epa.gov)", "suggestions": []}]}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:46 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=20&mkt=en-US&offset=0&q=global%20warming%20(site:www.epa.gov%20OR%20site:archive.epa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '174097'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - F57E32C0D0E04519B96F869AF2D35AC3
+ X-Msedge-Clientid:
+ - 131EFBEA7AF368511D4CF7467BBF69F3
+ X-Msapi-Userstate:
+ - '4941'
+ X-Search-Responseinfo:
+ - InternalResponseTime=167,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: F57E32C0D0E04519B96F869AF2D35AC3 Ref B: BY3EDGE0219 Ref C: 2018-11-19T22:43:32Z'
+ Apim-Request-Id:
+ - 1ecb9e89-4e52-47f9-90dc-7bcc53129c5b
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:32 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"_type": "ResponseInstrumentation"},
+ "readLink": "images\/search?q=global warming (site:www.epa.gov OR site:archive.epa.gov)",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=global warming (site:www.epa.gov
+ OR site:archive.epa.gov)&FORM=OIIARP", "totalEstimatedMatches": 100, "nextOffset":
+ 21, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=3C7CC8BEBE6FA5219203046A2CF797B6D7F4EA52&simid=607986287436760840",
+ "name": "Overview of Climate Change Science | Climate Change Science | US
+ EPA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.A0NdPgPTMPP7ZHqBsYea3wHaE8&pid=Api",
+ "datePublished": "2016-09-29T12:00:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/medium\/public\/2016-08\/climate_v_global_warming.jpg",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-change-science\/overview-climate-change-science",
+ "contentSize": "9552 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/climate-change-science\/overview-climate-change...",
+ "width": 448, "height": 299, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_A0NdPgPT*mid_3C7CC8BEBE6FA5219203046A2CF797B6D7F4EA52*simid_607986287436760840*thid_OIP.A0NdPgPTMPP7ZHqBsYea3wHaE8",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 2, "availableSizesCount":
+ 1}, "imageId": "3C7CC8BEBE6FA5219203046A2CF797B6D7F4EA52", "accentColor":
+ "C9C902"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=068F77A4DAB30CBA0904C1C7FF5DB205DD3F8F18&simid=608050480016329316",
+ "name": "Climate Impacts on Coastal Areas | Climate Change Impacts | US EPA",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.enXfoUcRsX4LkE54TzeewAHaEp&pid=Api",
+ "datePublished": "2015-09-18T17:47:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-05\/charlestonslr-large.jpg",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-impacts\/climate-impacts-coastal-areas",
+ "contentSize": "15358 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-impacts\/climate-impacts-coastal-areas", "width":
+ 300, "height": 188, "thumbnail": {"width": 474, "height": 297}, "imageInsightsToken":
+ "ccid_enXfoUcR*mid_068F77A4DAB30CBA0904C1C7FF5DB205DD3F8F18*simid_608050480016329316*thid_OIP.enXfoUcRsX4LkE54TzeewAHaEp",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Charleston South Carolina Flood Map", "displayText": "Charleston South Carolina
+ Flood Map", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Charleston+South+Carolina+Flood+Map&id=068F77A4DAB30CBA0904C1C7FF5DB205DD3F8F18&FORM=IDBQDM"},
+ "pagesIncludingCount": 4, "availableSizesCount": 2}, "imageId": "068F77A4DAB30CBA0904C1C7FF5DB205DD3F8F18",
+ "accentColor": "BA8511"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=CFD989E42FE24F932F5C920043CA9A6995ADEAE6&simid=608013131026140498",
+ "name": "Climate Change Indicators: Sea Surface Temperature | Climate Change
+ Indicators in the United ...", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.QsNSuU-NGiFnOVXWTqm43wHaHP&pid=Api",
+ "datePublished": "2018-11-07T01:41:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-07\/sea-surface-temp-download2-2016.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-sea-surface-temperature",
+ "contentSize": "256565 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators...",
+ "width": 928, "height": 907, "thumbnail": {"width": 474, "height": 463}, "imageInsightsToken":
+ "ccid_QsNSuU+N*mid_CFD989E42FE24F932F5C920043CA9A6995ADEAE6*simid_608013131026140498*thid_OIP.QsNSuU-NGiFnOVXWTqm43wHaHP",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Sea Surface Temperature", "displayText": "Climate Change Sea
+ Surface Temperature", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Sea+Surface+Temperature&id=CFD989E42FE24F932F5C920043CA9A6995ADEAE6&FORM=IDBQDM"},
+ "pagesIncludingCount": 18, "availableSizesCount": 5}, "imageId": "CFD989E42FE24F932F5C920043CA9A6995ADEAE6",
+ "accentColor": "CC1200"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=3C7CC8BEBE6FA5219203BC3E50AA86B7A2E8D024&simid=608028159025613119",
+ "name": "Overview of Climate Change Science | Climate Change Science | US
+ EPA", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.vlQymB7eJwTGUmdZqcrjcQHaE4&pid=Api",
+ "datePublished": "2016-09-29T12:00:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/2016-07\/models-observed-human-natural.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-change-science\/overview-climate-change-science",
+ "contentSize": "62082 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/climate-change-science\/overview-climate-change...",
+ "width": 819, "height": 540, "thumbnail": {"width": 474, "height": 312}, "imageInsightsToken":
+ "ccid_vlQymB7e*mid_3C7CC8BEBE6FA5219203BC3E50AA86B7A2E8D024*simid_608028159025613119*thid_OIP.vlQymB7eJwTGUmdZqcrjcQHaE4",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Human and Natural Causes", "displayText": "Climate Change
+ Human and Natural Causes", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Human+and+Natural+Causes&id=3C7CC8BEBE6FA5219203BC3E50AA86B7A2E8D024&FORM=IDBQDM"},
+ "pagesIncludingCount": 33, "availableSizesCount": 12}, "imageId": "3C7CC8BEBE6FA5219203BC3E50AA86B7A2E8D024",
+ "accentColor": "4E627D"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=7BC438CAD542BB03FF2A5BF42BD70B55B271ED40&simid=608056072015905270",
+ "name": "Climate Change Indicators in the United States | US EPA", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.73DoBvxoicTUu0ZrRjyiKgHaE7&pid=Api",
+ "datePublished": "2016-12-19T12:00:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-10\/climate-forcing-graphic.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators", "contentSize":
+ "559912 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/climate-indicators",
+ "width": 928, "height": 618, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_73DoBvxo*mid_7BC438CAD542BB03FF2A5BF42BD70B55B271ED40*simid_608056072015905270*thid_OIP.73DoBvxoicTUu0ZrRjyiKgHaE7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Greenhouse Effect", "displayText": "Climate Change Greenhouse
+ Effect", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Greenhouse+Effect&id=7BC438CAD542BB03FF2A5BF42BD70B55B271ED40&FORM=IDBQDM"},
+ "pagesIncludingCount": 5, "availableSizesCount": 1}, "imageId": "7BC438CAD542BB03FF2A5BF42BD70B55B271ED40",
+ "accentColor": "002246"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=2DBBA66D2F0D73B11861321939C21205F015F220&simid=608000843047571333",
+ "name": "Frequently Asked Questions About Climate Change | Climate Change
+ | US EPA", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.IgX5Hz4PnedipGlZLcRIBAHaFn&pid=Api",
+ "datePublished": "2018-07-10T04:46:00.0000000Z", "contentUrl": "https:\/\/archive.epa.gov\/epa\/sites\/production\/files\/2017-01\/cs_global_temp_and_co2_1880-2012_v3_1.png",
+ "hostPageUrl": "https:\/\/archive.epa.gov\/epa\/climatechange\/frequently-asked-questions-about-climate-change.html",
+ "contentSize": "118671 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "https:\/\/archive.epa.gov\/epa\/climatechange\/frequently-asked...", "width":
+ 2261, "height": 1714, "thumbnail": {"width": 474, "height": 359}, "imageInsightsToken":
+ "ccid_IgX5Hz4P*mid_2DBBA66D2F0D73B11861321939C21205F015F220*simid_608000843047571333*thid_OIP.IgX5Hz4PnedipGlZLcRIBAHaFn",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Carbon Dioxide and Global Temperature Graph", "displayText": "Carbon Dioxide
+ and Global Temperature Graph", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Carbon+Dioxide+and+Global+Temperature+Graph&id=2DBBA66D2F0D73B11861321939C21205F015F220&FORM=IDBQDM"},
+ "pagesIncludingCount": 16, "availableSizesCount": 7}, "imageId": "2DBBA66D2F0D73B11861321939C21205F015F220",
+ "accentColor": "BB1017"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=FBDD9A68952824D539F07CAE413B16BB8314130A&simid=608049389094636496",
+ "name": "Climate Change Indicators: Arctic Sea Ice | Climate Change Indicators
+ in the United States | US EPA", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.YTgIWRquDMfiOOKokXiHLwHaEy&pid=Api",
+ "datePublished": "2015-06-26T09:22:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-07\/arctic-sea-ice-figure2-2016.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-arctic-sea-ice",
+ "contentSize": "77320 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators...",
+ "width": 928, "height": 600, "thumbnail": {"width": 474, "height": 306}, "imageInsightsToken":
+ "ccid_YTgIWRqu*mid_FBDD9A68952824D539F07CAE413B16BB8314130A*simid_608049389094636496*thid_OIP.YTgIWRquDMfiOOKokXiHLwHaEy",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Arctic Sea Ice", "displayText": "Climate Change Arctic Sea
+ Ice", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Arctic+Sea+Ice&id=FBDD9A68952824D539F07CAE413B16BB8314130A&FORM=IDBQDM"},
+ "pagesIncludingCount": 5, "availableSizesCount": 2}, "imageId": "FBDD9A68952824D539F07CAE413B16BB8314130A",
+ "accentColor": "04214E"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=13238DAB7D1FD0A6BC941C7817765297B2823F39&simid=607990384811771263",
+ "name": "Climate Change Indicators: U.S. and Global Temperature | Climate
+ Change Indicators in the United ...", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.OxISenAm4EqiMaXfg1aqfwHaI2&pid=Api",
+ "datePublished": "2018-09-25T03:22:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-07\/temperature-download3-2016.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-us-and-global-temperature",
+ "contentSize": "286390 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-us...",
+ "width": 928, "height": 1109, "thumbnail": {"width": 474, "height": 566},
+ "imageInsightsToken": "ccid_OxISenAm*mid_13238DAB7D1FD0A6BC941C7817765297B2823F39*simid_607990384811771263*thid_OIP.OxISenAm4EqiMaXfg1aqfwHaI2",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Temperature Map Us", "displayText": "Climate Change Temperature
+ Map Us", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Temperature+Map+Us&id=13238DAB7D1FD0A6BC941C7817765297B2823F39&FORM=IDBQDM"},
+ "pagesIncludingCount": 12, "availableSizesCount": 5}, "imageId": "13238DAB7D1FD0A6BC941C7817765297B2823F39",
+ "accentColor": "A42827"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=A5178FB3D43326BEAE3B24F55CF0CC580422F3A3&simid=608049676859805507",
+ "name": "Rising Sea Level | A Student''s Guide to Global Climate Change |
+ US EPA", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.a6ZCZ540VnHuwYj_dfNFEgHaC2&pid=Api",
+ "datePublished": "2018-11-02T22:54:00.0000000Z", "contentUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/images\/2-1-5-1-sealevel.gif",
+ "hostPageUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/impacts\/signs\/sea-level.html",
+ "contentSize": "20907 B", "encodingFormat": "gif", "hostPageDisplayUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/impacts\/signs\/sea-level...",
+ "width": 516, "height": 199, "thumbnail": {"width": 474, "height": 182}, "imageInsightsToken":
+ "ccid_a6ZCZ540*mid_A5178FB3D43326BEAE3B24F55CF0CC580422F3A3*simid_608049676859805507*thid_OIP.a6ZCZ540VnHuwYj!_dfNFEgHaC2",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Rising Sea Levels", "displayText": "Climate Change Rising
+ Sea Levels", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Rising+Sea+Levels&id=A5178FB3D43326BEAE3B24F55CF0CC580422F3A3&FORM=IDBQDM"},
+ "pagesIncludingCount": 4, "availableSizesCount": 1}, "imageId": "A5178FB3D43326BEAE3B24F55CF0CC580422F3A3",
+ "accentColor": "0D90BE"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=18CD64EFDB57B90DF518A0617B221717272D0742&simid=608029765335322619",
+ "name": "Climate Change Indicators: Global Greenhouse Gas Emissions | Climate
+ Change Indicators in the ...", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.xCWx1ux9WhLijuSZsVPyXQHaF0&pid=Api",
+ "datePublished": "2018-11-02T02:08:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-07\/global-ghg-emissions-download3-2016.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-global-greenhouse-gas-emissions",
+ "contentSize": "74410 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators...",
+ "width": 928, "height": 730, "thumbnail": {"width": 474, "height": 372}, "imageInsightsToken":
+ "ccid_xCWx1ux9*mid_18CD64EFDB57B90DF518A0617B221717272D0742*simid_608029765335322619*thid_OIP.xCWx1ux9WhLijuSZsVPyXQHaF0",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Global Greenhouse Gas Emissions by Country", "displayText": "Global Greenhouse
+ Gas Emissions by Country", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Greenhouse+Gas+Emissions+by+Country&id=18CD64EFDB57B90DF518A0617B221717272D0742&FORM=IDBQDM"},
+ "pagesIncludingCount": 8, "availableSizesCount": 1}, "imageId": "18CD64EFDB57B90DF518A0617B221717272D0742",
+ "accentColor": "CA9E01"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=4FA1BC156C5BEC14BADA5CC7A7FDE51825109972&simid=607991643236666555",
+ "name": "Causes of Climate Change | Climate Change Science | US EPA", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.f4bXdY56ONr43c04mX2EXwHaGM&pid=Api",
+ "datePublished": "2016-12-27T12:00:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/2016-07\/co2temp800kyrs-large.jpg",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-change-science\/causes-climate-change",
+ "contentSize": "77415 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-change-science\/causes-climate-change", "width":
+ 688, "height": 576, "thumbnail": {"width": 474, "height": 396}, "imageInsightsToken":
+ "ccid_f4bXdY56*mid_4FA1BC156C5BEC14BADA5CC7A7FDE51825109972*simid_607991643236666555*thid_OIP.f4bXdY56ONr43c04mX2EXwHaGM",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Temperature Graph", "displayText": "Climate Change Temperature
+ Graph", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Temperature+Graph&id=4FA1BC156C5BEC14BADA5CC7A7FDE51825109972&FORM=IDBQDM"},
+ "pagesIncludingCount": 14, "availableSizesCount": 3}, "imageId": "4FA1BC156C5BEC14BADA5CC7A7FDE51825109972",
+ "accentColor": "386193"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=5EE01CF732141D9546BD5F101B0880CADC4C7CE2&simid=608006293361790224",
+ "name": "Global Greenhouse Gas Emissions Data | Greenhouse Gas (GHG) Emissions
+ | US EPA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.hE4hz2tJ4RuC1cUufEx-pAHaIK&pid=Api",
+ "datePublished": "2016-08-09T12:00:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/2016-05\/global_emissions_sector_2015.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/ghgemissions\/global-greenhouse-gas-emissions-data",
+ "contentSize": "34996 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/ghgemissions\/global-greenhouse-gas-emissions-data",
+ "width": 493, "height": 543, "thumbnail": {"width": 474, "height": 522}, "imageInsightsToken":
+ "ccid_hE4hz2tJ*mid_5EE01CF732141D9546BD5F101B0880CADC4C7CE2*simid_608006293361790224*thid_OIP.hE4hz2tJ4RuC1cUufEx-pAHaIK",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Global Greenhouse Gas Emissions by Sector", "displayText": "Global Greenhouse
+ Gas Emissions by Sector", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Greenhouse+Gas+Emissions+by+Sector&id=5EE01CF732141D9546BD5F101B0880CADC4C7CE2&FORM=IDBQDM"},
+ "pagesIncludingCount": 29, "availableSizesCount": 10}, "imageId": "5EE01CF732141D9546BD5F101B0880CADC4C7CE2",
+ "accentColor": "BB5410"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=CAFFEFEDD04568DFABA28D1DA6D491D71B17E938&simid=608044230819971900",
+ "name": "Climate Impacts in Alaska | Climate Change Impacts | US EPA", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.y98chFmye_WBwmnjU6OkgQHaGe&pid=Api",
+ "datePublished": "2016-12-21T03:28:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/2015-12\/pondshrinkage-large_1.jpg",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-impacts\/climate-impacts-alaska",
+ "contentSize": "311962 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-impacts\/climate-impacts-alaska", "width":
+ 800, "height": 700, "thumbnail": {"width": 474, "height": 414}, "imageInsightsToken":
+ "ccid_y98chFmy*mid_CAFFEFEDD04568DFABA28D1DA6D491D71B17E938*simid_608044230819971900*thid_OIP.y98chFmye!_WBwmnjU6OkgQHaGe",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "The Tundra Human Impact On Climate Change", "displayText": "The Tundra Human
+ Impact On Climate Change", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=The+Tundra+Human+Impact+On+Climate+Change&id=CAFFEFEDD04568DFABA28D1DA6D491D71B17E938&FORM=IDBQDM"},
+ "pagesIncludingCount": 8, "availableSizesCount": 3}, "imageId": "CAFFEFEDD04568DFABA28D1DA6D491D71B17E938",
+ "accentColor": "4A6C81"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=1A4F62A5B1BB0E3FB5948E1EAB0DE1A4084B4DDF&simid=608037217153125665",
+ "name": "Climate Impacts in the Southeast | Climate Change Impacts | US EPA",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.cHUZbX6nlulGL12a5xgz4gHaGe&pid=Api",
+ "datePublished": "2017-02-20T23:28:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/2015-12\/southest-sea-level-large.jpg",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-impacts\/climate-impacts-southeast",
+ "contentSize": "105148 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-impacts\/climate-impacts-southeast", "width":
+ 720, "height": 630, "thumbnail": {"width": 474, "height": 414}, "imageInsightsToken":
+ "ccid_cHUZbX6n*mid_1A4F62A5B1BB0E3FB5948E1EAB0DE1A4084B4DDF*simid_608037217153125665*thid_OIP.cHUZbX6nlulGL12a5xgz4gHaGe",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 18, "availableSizesCount":
+ 7}, "imageId": "1A4F62A5B1BB0E3FB5948E1EAB0DE1A4084B4DDF", "accentColor":
+ "CA7501"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=16B5ED494FB4CDDC38643E3C051D1A6CDA86161F&simid=608043741190685141",
+ "name": "Future of Climate Change | Climate Change Science | US EPA", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.fpR15wanBSBH-4zA0uI78QHaI0&pid=Api",
+ "datePublished": "2017-04-28T21:18:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/2016-07\/scenarioustemp-large.jpg",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-change-science\/future-climate-change",
+ "contentSize": "1116757 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-change-science\/future-climate-change", "width":
+ 1350, "height": 1608, "thumbnail": {"width": 474, "height": 564}, "imageInsightsToken":
+ "ccid_fpR15wan*mid_16B5ED494FB4CDDC38643E3C051D1A6CDA86161F*simid_608043741190685141*thid_OIP.fpR15wanBSBH-4zA0uI78QHaI0",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Future United States Climate Change", "displayText": "Future United States
+ Climate Change", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Future+United+States+Climate+Change&id=16B5ED494FB4CDDC38643E3C051D1A6CDA86161F&FORM=IDBQDM"},
+ "pagesIncludingCount": 14, "availableSizesCount": 6}, "imageId": "16B5ED494FB4CDDC38643E3C051D1A6CDA86161F",
+ "accentColor": "C3A308"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=4FCF386098971122A6461F7C67BF77118D63ED9E&simid=608022090291349608",
+ "name": "Climate Concepts | A Student''s Guide to Global Climate Change |
+ US EPA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.JS3hoAoMrWobE-yhJ40RBgHaF9&pid=Api",
+ "datePublished": "2018-07-10T18:22:00.0000000Z", "contentUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/images\/1-1-webof.gif",
+ "hostPageUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/basics\/concepts.html",
+ "contentSize": "25739 B", "encodingFormat": "gif", "hostPageDisplayUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/basics\/concepts.html",
+ "width": 510, "height": 411, "thumbnail": {"width": 474, "height": 381}, "imageInsightsToken":
+ "ccid_JS3hoAoM*mid_4FCF386098971122A6461F7C67BF77118D63ED9E*simid_608022090291349608*thid_OIP.JS3hoAoMrWobE-yhJ40RBgHaF9",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Greenhouse Effect and Climate Change", "displayText": "Greenhouse Effect
+ and Climate Change", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Effect+and+Climate+Change&id=4FCF386098971122A6461F7C67BF77118D63ED9E&FORM=IDBQDM"},
+ "pagesIncludingCount": 15, "availableSizesCount": 4}, "imageId": "4FCF386098971122A6461F7C67BF77118D63ED9E",
+ "accentColor": "C69505"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=D3390570A2390E473B272C79882DBAA18187E415&simid=608046730473312254",
+ "name": "The Greenhouse Effect | A Student''s Guide to Global Climate Change
+ | US EPA", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.vWsAgwngE3VsdWCAkRFpvQAAAA&pid=Api",
+ "datePublished": "2018-09-21T04:17:00.0000000Z", "contentUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/images\/1-2-3-greenhs.jpg",
+ "hostPageUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/basics\/today\/greenhouse-effect.html",
+ "contentSize": "26401 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/archive.epa.gov\/climatechange\/kids\/basics\/today\/greenhouse...",
+ "width": 422, "height": 317, "thumbnail": {"width": 422, "height": 317}, "imageInsightsToken":
+ "ccid_vWsAgwng*mid_D3390570A2390E473B272C79882DBAA18187E415*simid_608046730473312254*thid_OIP.vWsAgwngE3VsdWCAkRFpvQAAAA",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Greenhouse Effect", "displayText": "Greenhouse Effect", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Effect&id=D3390570A2390E473B272C79882DBAA18187E415&FORM=IDBQDM"},
+ "pagesIncludingCount": 19, "availableSizesCount": 4}, "imageId": "D3390570A2390E473B272C79882DBAA18187E415",
+ "accentColor": "BDBC0E"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=4112558BFAD7BB081375B7228F849DC8C7D5272D&simid=608008127346839210",
+ "name": "More Droughts | A Student''s Guide to Global Climate Change | US
+ EPA", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.6jUKmVYzkOLX5riAdOR3wQAAAA&pid=Api",
+ "datePublished": "2018-09-10T21:55:00.0000000Z", "contentUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/images\/2-1-3-drought.gif",
+ "hostPageUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/impacts\/signs\/droughts.html",
+ "contentSize": "25522 B", "encodingFormat": "gif", "hostPageDisplayUrl": "https:\/\/archive.epa.gov\/climatechange\/kids\/impacts\/signs\/droughts.html",
+ "width": 399, "height": 237, "thumbnail": {"width": 399, "height": 237}, "imageInsightsToken":
+ "ccid_6jUKmVYz*mid_4112558BFAD7BB081375B7228F849DC8C7D5272D*simid_608008127346839210*thid_OIP.6jUKmVYzkOLX5riAdOR3wQAAAA",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Future Climate Change Drought Map", "displayText": "Future Climate Change
+ Drought Map", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Future+Climate+Change+Drought+Map&id=4112558BFAD7BB081375B7228F849DC8C7D5272D&FORM=IDBQDM"},
+ "pagesIncludingCount": 6, "availableSizesCount": 1}, "imageId": "4112558BFAD7BB081375B7228F849DC8C7D5272D",
+ "accentColor": "C56B06"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=18CD64EFDB57B90DF51833A5B960911695357E64&simid=608016639992532498",
+ "name": "Climate Change Indicators: Global Greenhouse Gas Emissions | Climate
+ Change Indicators in the ...", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.aFXmY4Xh1E4vbm17OiKzRQHaGl&pid=Api",
+ "datePublished": "2018-11-02T02:08:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-07\/global-ghg-emissions-download1-2016.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-global-greenhouse-gas-emissions",
+ "contentSize": "67633 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators...",
+ "width": 928, "height": 825, "thumbnail": {"width": 474, "height": 421}, "imageInsightsToken":
+ "ccid_aFXmY4Xh*mid_18CD64EFDB57B90DF51833A5B960911695357E64*simid_608016639992532498*thid_OIP.aFXmY4Xh1E4vbm17OiKzRQHaGl",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Global Greenhouse Gas Emissions by Sector", "displayText": "Global Greenhouse
+ Gas Emissions by Sector", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Greenhouse+Gas+Emissions+by+Sector&id=18CD64EFDB57B90DF51833A5B960911695357E64&FORM=IDBQDM"},
+ "pagesIncludingCount": 9, "availableSizesCount": 1}, "imageId": "18CD64EFDB57B90DF51833A5B960911695357E64",
+ "accentColor": "CA9E01"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)&id=FBDD9A68952824D539F015F63086304A02399BDE&simid=608051111373309414",
+ "name": "Climate Change Indicators: Arctic Sea Ice | Climate Change Indicators
+ in the United States | US EPA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.8uN3GNNelcYrjjQ3wyYSUgHaIm&pid=Api",
+ "datePublished": "2018-10-02T00:29:00.0000000Z", "contentUrl": "https:\/\/www.epa.gov\/sites\/production\/files\/styles\/large\/public\/2016-07\/arctic-sea-ice-map-figure-2016.png",
+ "hostPageUrl": "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators-arctic-sea-ice",
+ "contentSize": "1413372 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "https:\/\/www.epa.gov\/climate-indicators\/climate-change-indicators...",
+ "width": 928, "height": 1077, "thumbnail": {"width": 474, "height": 550},
+ "imageInsightsToken": "ccid_8uN3GNNe*mid_FBDD9A68952824D539F015F63086304A02399BDE*simid_608051111373309414*thid_OIP.8uN3GNNelcYrjjQ3wyYSUgHaIm",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Climate Change Arctic Sea Ice", "displayText": "Climate Change Arctic Sea
+ Ice", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Climate+Change+Arctic+Sea+Ice&id=FBDD9A68952824D539F015F63086304A02399BDE&FORM=IDBQDM"},
+ "pagesIncludingCount": 7, "availableSizesCount": 2}, "imageId": "FBDD9A68952824D539F015F63086304A02399BDE",
+ "accentColor": "2E4E65"}], "queryExpansions": [{"text": "Global Warming Scam",
+ "displayText": "Scam", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Scam&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Scam%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Scam&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Scam%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Scam&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Fake", "displayText": "Fake", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Fake&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fake%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Fake&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fake%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Fake&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Hoax", "displayText": "Hoax", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Hoax&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Hoax%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Hoax&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Hoax%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Hoax&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Solar Flares Global Warming", "displayText": "Solar Flares", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Solar+Flares+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solar+Flares%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Solar+Flares+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solar+Flares%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Solar+Flares+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Melting Glaciers Global Warming", "displayText": "Melting Glaciers",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Melting+Glaciers+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Melting+Glaciers%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Melting+Glaciers+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Melting+Glaciers%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Melting+Glaciers+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Climate Change", "displayText": "Climate Change",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Climate+Change&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Climate+Change%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Climate+Change&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Climate+Change%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Climate+Change&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Funny Global Warming", "displayText": "Funny", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Funny+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Funny%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Funny+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Funny%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Funny+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Cartoon", "displayText": "Cartoon", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Cartoon&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cartoon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Cartoon&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cartoon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Cartoon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Xkcd", "displayText": "Xkcd", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Xkcd&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Xkcd%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Xkcd&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Xkcd%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Xkcd&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Polar Bears Global Warming", "displayText": "Polar Bears", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Polar+Bears+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Polar+Bears%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Polar+Bears+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Polar+Bears%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Polar+Bears+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Stop Global Warming", "displayText": "Stop", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Stop+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Stop%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Stop+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Stop%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Stop+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Proof Global Warming", "displayText": "Proof", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Proof+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Proof%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Proof+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Proof%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Proof+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Posters", "displayText": "Posters", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Posters&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Posters&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Posters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Posters&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Map", "displayText": "Map", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Map&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Map&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Graphs", "displayText": "Graphs", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Graphs&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Graphs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Graphs&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Graphs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Graphs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Diagram", "displayText": "Diagram", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Diagram&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Diagram%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Diagram&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Diagram%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Diagram&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Myth", "displayText": "Myth", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Myth&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Myth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Myth&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Myth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Myth&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Meme", "displayText": "Meme", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Meme&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Meme%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Meme&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Meme%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Meme&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Propaganda", "displayText": "Propaganda", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Propaganda&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Propaganda%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Propaganda&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Propaganda%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Propaganda&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Solutions", "displayText": "Solutions", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Solutions&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solutions%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Solutions&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solutions%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Solutions&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Infographic", "displayText": "Infographic", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Infographic&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Infographic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Infographic&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Infographic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Infographic&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Jokes", "displayText": "Jokes", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Jokes&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jokes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Jokes&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jokes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Jokes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Truth", "displayText": "Truth", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Truth&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Truth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Truth&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Truth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Truth&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Drawings", "displayText": "Drawings", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Drawings&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Drawings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Drawings&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Drawings%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Drawings&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Art", "displayText": "Art", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Art&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Art%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Art&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Art%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Artwork", "displayText": "Artwork", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Artwork&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Artwork%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Artwork&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Artwork%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Artwork&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Pollution", "displayText": "Pollution", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Pollution&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pollution%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Pollution&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pollution%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Pollution&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Carbon", "displayText": "Carbon", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Carbon&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Carbon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Carbon&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Carbon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Carbon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Deforestation", "displayText": "Deforestation", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Deforestation&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Deforestation%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Deforestation&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Deforestation%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Deforestation&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Antarctica Global Warming", "displayText": "Antarctica", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Antarctica+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Antarctica%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Antarctica+Global+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Antarctica%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Antarctica+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Penguins", "displayText": "Penguins", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Penguins&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Penguins%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Penguins&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Penguins%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Penguins&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Coral", "displayText": "Coral", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Coral&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Coral&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Coral&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Poems", "displayText": "Poems", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Poems&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Poems%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Poems&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Poems%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Poems&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Articles", "displayText": "Articles", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Articles&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Articles%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Articles&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Articles%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Articles&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Essay", "displayText": "Essay", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Essay&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Essay%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Essay&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Essay%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Essay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Ad", "displayText": "Ad", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Ad&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ad%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Ad&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ad%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Ad&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Statistics", "displayText": "Statistics", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Statistics&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statistics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Statistics&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statistics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Statistics&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Debate", "displayText": "Debate", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Debate&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Debate%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Debate&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Debate%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Debate&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Potential", "displayText": "Potential", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Potential&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Potential%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Potential&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Potential%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Potential&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Statue of Liberty", "displayText": "Statue of Liberty",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Statue+of+Liberty&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statue+of+Liberty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Statue+of+Liberty&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statue+of+Liberty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Statue+of+Liberty&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "global", "suggestions": [{"text": "Greenhouse
+ Warming", "displayText": "Greenhouse", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Greenhouse%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Greenhouse+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Greenhouse%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Greenhouse+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Globl Warming", "displayText": "Globl", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Globl+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Globl%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Globl+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Globl%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Globl+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Solar Warming", "displayText": "Solar", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Solar+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Solar+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Solar+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "BBC Warming", "displayText": "BBC", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=BBC+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22BBC%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=BBC+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22BBC%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=BBC+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Local Warming", "displayText": "Local", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Local+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Local%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Local+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Local%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Local+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mobile Warming", "displayText": "Mobile", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mobile+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Mobile%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mobile+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Mobile%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Mobile+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Antarctic Warming", "displayText": "Antarctic", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Antarctic+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Antarctic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Antarctic+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Antarctic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Antarctic+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Roman Warming", "displayText": "Roman", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Roman+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Roman%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Roman+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Roman%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Roman+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Globle Warming", "displayText": "Globle", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Globle+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Globle%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Globle+Warming&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Globle%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Globle+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "warming", "suggestions": [{"text": "Global Cooling", "displayText":
+ "Cooling", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Cooling&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cooling%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Cooling&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cooling%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Cooling&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Disease", "displayText": "Disease", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Disease&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Disease%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Disease&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Disease%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Disease&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Wind", "displayText": "Wind", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Wind&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wind%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Wind&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wind%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Wind&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Map", "displayText": "Map", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Map&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Map&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Drought", "displayText": "Drought", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Drought&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Drought%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Drought&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Drought%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Drought&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Imbalance", "displayText": "Imbalance", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Imbalance&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Imbalance%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Imbalance&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Imbalance%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Imbalance&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Issues", "displayText": "Issues", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Issues&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Issues%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Issues&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Issues%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Issues&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Wa", "displayText": "Wa", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Wa&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wa%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Wa&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wa%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Wa&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Flooding", "displayText": "Flooding", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Flooding&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Flooding%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Flooding&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Flooding%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Flooding&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Weather", "displayText": "Weather", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Weather&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Weather%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Weather&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Weather%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Weather&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global War", "displayText": "War", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+War&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22War%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+War&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22War%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+War&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warmin", "displayText": "Warmin", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warmin&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Warmin%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warmin&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Warmin%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warmin&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Evolution", "displayText": "Evolution", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Evolution&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Evolution%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Evolution&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Evolution%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Evolution&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Needs", "displayText": "Needs", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Needs&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Needs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Needs&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Needs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Needs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Earthquake Fault Lines", "displayText": "Earthquake Fault
+ Lines", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Earthquake+Fault+Lines&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Earthquake+Fault+Lines%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Earthquake+Fault+Lines&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Earthquake+Fault+Lines%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Earthquake+Fault+Lines&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warining", "displayText": "Warining", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warining&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Warining%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warining&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Warining%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warining&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Ani GIF", "displayText": "Ani GIF", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Ani+GIF&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ani+GIF%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Ani+GIF&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ani+GIF%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Ani+GIF&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Waste", "displayText": "Waste", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Waste&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Waste%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Waste&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Waste%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Waste&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Deforestation", "displayText": "Deforestation", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Deforestation&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Deforestation%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Deforestation&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Deforestation%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Deforestation&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Animation", "displayText": "Animation", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Animation&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animation%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Animation&tq=%7b%22pq%22%3a%22global+warming+(site%3awww.epa.gov+OR+site%3aarchive.epa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22global%22%2c%22pv%22%3a%22global%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22warming%22%2c%22pv%22%3a%22warming%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awww.epa.gov%22%2c%22pv%22%3a%22(site%3awww.epa.gov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3aarchive.epa.gov)%22%2c%22pv%22%3a%22site%3aarchive.epa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animation%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Animation&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:www.epa.gov", "suggestions": []}, {"pivot": "OR", "suggestions":
+ []}, {"pivot": "site:archive.epa.gov)", "suggestions": []}], "relatedSearches":
+ [{"text": "Effects of Global Warming", "displayText": "Effects of Global Warming",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Effects+of+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Effects+of+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Effects+of+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Greenhouse Effect Global Warming", "displayText": "Greenhouse Effect
+ Global Warming", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Effect+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Greenhouse+Effect+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Greenhouse+Effect+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Cartoon", "displayText": "Global Warming Cartoon",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Cartoon&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Cartoon",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Cartoon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Causes of Global Warming", "displayText": "Causes of Global Warming",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Causes+of+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Causes+of+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Causes+of+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Meme", "displayText": "Global Warming Meme", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Meme&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Meme",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Meme&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Hoax", "displayText": "Global Warming Hoax", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Hoax&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Hoax",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Hoax&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Animals", "displayText": "Global Warming Animals",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Animals&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Animals",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Animals&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Stop Global Warming", "displayText": "Stop Global Warming", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Stop+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Stop+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Stop+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Climate Change", "displayText": "Climate Change", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Climate+Change&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Climate+Change",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Climate+Change&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Greenhouse Effect", "displayText": "Greenhouse Effect", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Effect&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Greenhouse+Effect",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Greenhouse+Effect&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Deforestation", "displayText": "Deforestation", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Deforestation&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Deforestation",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Deforestation&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pollution", "displayText": "Pollution", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pollution&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Pollution",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Pollution&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Greenhouse Gases", "displayText": "Greenhouse Gases", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Gases&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Greenhouse+Gases",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Greenhouse+Gases&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Melting Glaciers", "displayText": "Melting Glaciers", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Melting+Glaciers&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Melting+Glaciers",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Melting+Glaciers&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Graph", "displayText": "Global Warming Graph", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Graph&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Graph",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Graph&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Diagram", "displayText": "Global Warming Diagram",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Diagram&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Diagram",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Diagram&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Chart", "displayText": "Global Warming Chart", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Chart&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Chart",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Chart&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Funny Global Warming", "displayText": "Funny Global Warming", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Funny+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Funny+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Funny+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Jokes", "displayText": "Global Warming Jokes", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Jokes&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Jokes",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Jokes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earth", "displayText": "Earth", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Earth&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earth",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Earth&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earthquake", "displayText": "Earthquake", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Earthquake&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earthquake",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Earthquake&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Air Pollution", "displayText": "Air Pollution", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Air+Pollution&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Air+Pollution",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Air+Pollution&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Polar Bear", "displayText": "Polar Bear", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Polar+Bear&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Polar+Bear",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Polar+Bear&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ozone Layer", "displayText": "Ozone Layer", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ozone+Layer&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ozone+Layer",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Ozone+Layer&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fossil Fuels", "displayText": "Fossil Fuels", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Fossil+Fuels&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Fossil+Fuels",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Fossil+Fuels&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Drawings", "displayText": "Global Warming Drawings",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Drawings&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Drawings",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Drawings&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Map", "displayText": "Global Warming Map", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Map&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Map",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Clip Art", "displayText": "Global Warming Clip Art",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Clip+Art&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Clip+Art",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Clip+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pictures About Global Warming", "displayText": "Pictures About Global
+ Warming", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pictures+About+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Pictures+About+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Pictures+About+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Earth", "displayText": "Global Warming Earth", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Earth&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Earth",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Global+Warming+Earth&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Damage", "displayText": "Global Warming Damage",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Damage&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Damage",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Damage&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Penguins", "displayText": "Global Warming Penguins",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Penguins&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Penguins",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Penguins&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Polar Bears and Global Warming", "displayText": "Polar Bears and
+ Global Warming", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Polar+Bears+and+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Polar+Bears+and+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Polar+Bears+and+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Statistics", "displayText": "Global Warming Statistics",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Statistics&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Statistics",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Global+Warming+Statistics&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Myth", "displayText": "Global Warming Myth", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Myth&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Myth",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Warming+Myth&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming Causes and Effects", "displayText": "Global Warming
+ Causes and Effects", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+Causes+and+Effects&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+Causes+and+Effects",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+Causes+and+Effects&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Warming and Its Causes", "displayText": "Global Warming and
+ Its Causes", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Global+Warming+and+Its+Causes&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Warming+and+Its+Causes",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Warming+and+Its+Causes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Show Pictures of Global Warming", "displayText": "Show Pictures
+ of Global Warming", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Show+Pictures+of+Global+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Show+Pictures+of+Global+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Show+Pictures+of+Global+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Greenhouse Warming", "displayText": "Greenhouse Warming", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Greenhouse+Warming&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Greenhouse+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Greenhouse+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Globa Warming", "displayText": "Globa Warming", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Globa+Warming&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Globa+Warming",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Globa+Warming&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Wamring", "displayText": "Global Wamring", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Wamring&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Wamring",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Global+Wamring&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Global Waring", "displayText": "Global Waring", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Global+Waring&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Global+Waring",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Global+Waring&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:33 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Advanced_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Advanced_search.yml
index b66a6c3537..f554e2a57b 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Advanced_search.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Advanced_search.yml
@@ -70,4 +70,137 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Thu, 22 Feb 2018 08:37:49 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=allofit%20%22exact%22%20-bad%20(any)%20filetype:pdf%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:57 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=09C44E5A76C06516263242F6771764CA; path=/; expires=Sat, 14-Dec-2019 22:41:57
+ GMT; domain=bingapis.com
+ - MUIDB=09C44E5A76C06516263242F6771764CA; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:57 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:57 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=1B91CEC1A2224C3A8B5498AD18F95DCF&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:57 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:57
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2F5232BFF46B62EF06B23E13F5BC6353; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:57 GMT; domain=bingapis.com
+ - _SS=SID=2F5232BFF46B62EF06B23E13F5BC6353; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 6A2610F22D114CEF80575E9451E23DA0
+ X-Msedge-Clientid:
+ - '09C44E5A76C06516263242F6771764CA'
+ X-Msapi-Userstate:
+ - 0c6c
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 6A2610F22D114CEF80575E9451E23DA0 Ref B: CO1EDGE0413 Ref C: 2018-11-19T22:41:57Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=6E029AC1110B485CB6CA44C2F1D4523B&CID=09C44E5A76C06516263242F6771764CA&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=6E029AC1110B485CB6CA44C2F1D4523B&CID=09C44E5A76C06516263242F6771764CA&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:57 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=allofit%20%22exact%22%20-bad%20(any)%20filetype:pdf%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:09 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 3AFB477E8F1541F09594E55B386528CE
+ Bingapis-Sessionid:
+ - 8CE857804E904680ABEF30066DDF439E
+ X-Msedge-Clientid:
+ - 152B7F65E36A6056328D73C9E22661AC
+ X-Msapi-Userstate:
+ - 4c97
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=122,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 3AFB477E8F1541F09594E55B386528CE Ref B: BY3EDGE0310 Ref C: 2018-11-19T22:43:09Z'
+ Apim-Request-Id:
+ - 65c31a97-27ad-4eab-a5fc-4162202406a1
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:08 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "allofit
+ \"exact\" -bad (any) filetype:pdf (site:gov OR site:mil)"}, "rankingResponse":
+ {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:09 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Custom_date_range_news_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Custom_date_range_news_search.yml
index 287caa3d95..c0ebd426c8 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Custom_date_range_news_search.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Custom_date_range_news_search.yml
@@ -412,4 +412,950 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:39 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4769'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:16 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3F3D315BC1F7616C360D3DF7C020603B; path=/; expires=Sat, 14-Dec-2019 22:41:16
+ GMT; domain=bingapis.com
+ - MUIDB=3F3D315BC1F7616C360D3DF7C020603B; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:16 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:16 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=8085D113E82248AFAE8152124D259E68&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:16 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:16
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=37629EEADC576D2F29509246DD806CFE; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:16 GMT; domain=bingapis.com
+ - _SS=SID=37629EEADC576D2F29509246DD806CFE; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - C6D52A4526534C66AEDDF177B5556F86
+ X-Msedge-Clientid:
+ - 3F3D315BC1F7616C360D3DF7C020603B
+ X-Msapi-Userstate:
+ - 2bcf
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: C6D52A4526534C66AEDDF177B5556F86 Ref B: CO1EDGE0408 Ref C: 2018-11-19T22:41:16Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:15 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=867A73593EBB421B9E6E5BBFE4815390&CID=3F3D315BC1F7616C360D3DF7C020603B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=867A73593EBB421B9E6E5BBFE4815390&CID=3F3D315BC1F7616C360D3DF7C020603B&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:16 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4770'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:17 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3064A7D768726B870BECAB7B69A56AB5; path=/; expires=Sat, 14-Dec-2019 22:41:17
+ GMT; domain=bingapis.com
+ - MUIDB=3064A7D768726B870BECAB7B69A56AB5; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:17 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:17 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=65A05C8E21D74E0D8D823CD26C4DD29F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:17 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:17
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=20EDF4C00CE4640B163CF86C0D3365B3; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:17 GMT; domain=bingapis.com
+ - _SS=SID=20EDF4C00CE4640B163CF86C0D3365B3; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 125AB9CDFFA244918EFFB99D4DE72B06
+ X-Msedge-Clientid:
+ - 3064A7D768726B870BECAB7B69A56AB5
+ X-Msapi-Userstate:
+ - bb11
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 125AB9CDFFA244918EFFB99D4DE72B06 Ref B: CO1EDGE0216 Ref C: 2018-11-19T22:41:17Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:16 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A938E380B6B142D0BF933C9CD2B08DAF&CID=3064A7D768726B870BECAB7B69A56AB5&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A938E380B6B142D0BF933C9CD2B08DAF&CID=3064A7D768726B870BECAB7B69A56AB5&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5394.1", "totalEstimatedMatches": 15200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "ITEM
+ I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url":
+ "https:\/\/www.loc.gov\/item\/2016839132\/", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress. In some cases, only thumbnail (small)
+ images are available when you are outside the Library of Congress because
+ the item is rights restricted or ...", "dateLastCrawled": "2018-11-14T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CURRENT
+ Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url":
+ "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf", "urlPingSuffix":
+ "DevEx,5114.1", "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *",
+ "url": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "urlPingSuffix": "DevEx,5124.1", "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pay Item Catalog",
+ "url": "https:\/\/www.dot.ny.gov\/pic", "urlPingSuffix": "DevEx,5137.1", "displayUrl":
+ "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York State Department
+ of Transportation coordinates operation of transportation facilities and
+ services including highway, bridges, railroad, mass transit, port, waterway
+ and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Items",
+ "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Form 8-K"}, {"name":
+ "Form 8-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "What
+ Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5176.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Integrated
+ Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "urlPingSuffix": "DevEx,5202.1", "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bulky Item
+ Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "urlPingSuffix": "DevEx,5230.1",
+ "displayUrl": "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes,
+ the item is digitized. Please use the digital image in preference to requesting
+ the original. All images can be viewed at a large size when you are in any
+ reading room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Average
+ Low Bid Unit Prices - Texas Department of ...", "url": "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "Texas Department of Transportation"}],
+ "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "PNO Guidance
+ on Item 4(d) | Federal Trade Commission", "url": "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Bulk
+ Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:17 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:25 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - CC671E67713D4CD4947C87611B2222CB
+ Bingapis-Sessionid:
+ - BC2E4EF5B8B74264BBA09EA69BAF3CD8
+ X-Msedge-Clientid:
+ - 334A64C8FAD76BFB0F156864FB9B6A7A
+ X-Msapi-Userstate:
+ - 0ef8
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=228,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: CC671E67713D4CD4947C87611B2222CB Ref B: BY3EDGE0316 Ref C: 2018-11-19T22:42:26Z'
+ Apim-Request-Id:
+ - f24c213e-95c5-45e1-80c3-73264f884ca6
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:25 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "item
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 15200000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "ITEM I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url": "https:\/\/www.loc.gov\/item\/2016839132\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132",
+ "snippet": "Yes, the item is digitized. Please use the digital image in
+ preference to requesting the original. All images can be viewed at a large
+ size when you are in any reading room at the Library of Congress. In some
+ cases, only thumbnail (small) images are available when you are outside the
+ Library of Congress because the item is rights restricted or ...", "dateLastCrawled":
+ "2018-11-14T03:31:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "CURRENT Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "isFamilyFriendly": true, "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *", "url":
+ "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Pay Item Catalog", "url": "https:\/\/www.dot.ny.gov\/pic", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York
+ State Department of Transportation coordinates operation of transportation
+ facilities and services including highway, bridges, railroad, mass transit,
+ port, waterway and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Items", "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "about": [{"name": "Form 8-K"}, {"name": "Form 8-K"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "What Can I Bring? | Transportation Security Administration",
+ "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "about": [{"name": "Baggage allowance"}, {"name": "Transportation Security
+ Administration"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "isFamilyFriendly": true, "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Integrated Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Bulky Item Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes, the item
+ is digitized. Please use the digital image in preference to requesting the
+ original. All images can be viewed at a large size when you are in any reading
+ room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Average Low Bid Unit Prices - Texas Department of ...", "url":
+ "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "about": [{"name": "Texas Department of Transportation"}], "isFamilyFriendly":
+ true, "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "isFamilyFriendly": true, "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "PNO Guidance on Item 4(d) | Federal Trade Commission", "url":
+ "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Bulk Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Pennsylvania System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "about": [{"name": "Pennsylvania System of School Assessment"}], "isFamilyFriendly":
+ true, "displayUrl": "www.education.pa.gov\/K-12\/Assessment and Accountability\/PSSA\/Pages...",
+ "snippet": "The annual Pennsylvania System School Assessment is a standards-based,
+ criterion-referenced assessment which provides students, parents, educators
+ and citizens with an understanding of student and school performance related
+ to the attainment of proficiency of the academic standards.", "dateLastCrawled":
+ "2018-11-07T09:11:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:26 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:27 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 01E9DD9F442F4E9FACAE8FC9B13234FA
+ Bingapis-Sessionid:
+ - 5F263743441C4B42A8AEB95D714666D4
+ X-Msedge-Clientid:
+ - 3A52EA34C6BE66B12CC3E698C7F26743
+ X-Msapi-Userstate:
+ - 6da6
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=322,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 01E9DD9F442F4E9FACAE8FC9B13234FA Ref B: BY3EDGE0206 Ref C: 2018-11-19T22:42:27Z'
+ Apim-Request-Id:
+ - 428f94ae-e027-4156-8b81-09fa5e3dd369
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:27 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "item
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=item+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 14800000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Is your test, item, or service covered? | Medicare", "url": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.medicare.gov\/coverage\/is-your-test-item-or-service-covered",
+ "snippet": "Find out if your test, item or service is covered. Medicare
+ coverage for many tests, items, and services depends on where you live. This
+ list includes tests, items, and services (covered and non-covered) if coverage
+ is the same no matter where you live.", "dateLastCrawled": "2018-11-15T20:09:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "ITEM I - EXCAVATION", "url": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications\/Excavation%20City%20of%20Cayce.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cityofcayce-sc.gov\/files\/engineering\/Specifications...",
+ "snippet": "Section VI - Technical Specifications ITEM I – EXCAVATION VI
+ – I Page 1 ITEM I - EXCAVATION 1.01 Shoring and Shielding (a) The Contractor
+ shall comply with OSHA trenching and excavation regulations as", "dateLastCrawled":
+ "2018-11-14T05:58:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "NPIS - Item Screen", "url": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.npis.pa.gov\/Screens\/Admin\/Item",
+ "snippet": "Item Screen : Search Items: Hint: Search using part of the name
+ for best results: Item Name: Vendor Name: ISBN #: Item #: Item Eligibility
+ Status: Vendor Item Availability: Item Type: No Charge Items: ...", "dateLastCrawled":
+ "2018-11-15T19:39:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "Conference on Cause and Cure for War at W.H., 1\/24\/25 ...", "url": "https:\/\/www.loc.gov\/item\/2016839132\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.loc.gov\/item\/2016839132",
+ "snippet": "Yes, the item is digitized. Please use the digital image in
+ preference to requesting the original. All images can be viewed at a large
+ size when you are in any reading room at the Library of Congress. In some
+ cases, only thumbnail (small) images are available when you are outside the
+ Library of Congress because the item is rights restricted or ...", "dateLastCrawled":
+ "2018-11-14T03:31:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "CURRENT Agenda Item A - crc.nv.gov", "url": "http:\/\/www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744\/CRC-Additional-Documents-Supporting%20Material%20Item%20A%20to%20K-November-2018",
+ "isFamilyFriendly": true, "displayUrl": "www.crc.nv.gov\/files.php\/meetings\/b0e17582bb7fe55195c6ceb7e691e744...",
+ "snippet": "COLORADO RIVER COMMISSION OF NEVADA AGENDA ITEM B FOR MEETING
+ OF NOVEMBER 13, 2018 SUBJECT: Comments from the public. (No action may be
+ taken on a matter raised under this item of the agenda", "dateLastCrawled":
+ "2018-11-14T13:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Fiscal Note and Budget Item Follow-Up Report - 2018 Interim", "url": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/le.utah.gov\/interim\/2018\/pdf\/00002986.pdf",
+ "snippet": "through line item; or 2) beginning in FY 2020 moving the $3.0
+ million ongoing appropriation out of the Capital Budget ‐ Pass‐through line
+ item and into the \"Winter Sports Venues Grant Fund\".", "dateLastCrawled":
+ "2018-11-14T10:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "ITEM NO. 1: MAYOR AND COUNCIL CONSENT ITEM QUESTIONS * * * *", "url":
+ "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October%208,%202018.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/charlottenc.gov\/CityClerk\/Minutes\/October
+ 8, 2018.pdf", "snippet": "item no. 3: charlotte chamber campaign update
+ on bond referendum Phil Reiger, Strategy and Budget Director said it is a
+ distinct pleasure of m ine to introduce Bob Morgan, President and CEO of the
+ Charlotte Chamber.", "dateLastCrawled": "2018-11-06T03:57:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Pay Item Catalog", "url": "https:\/\/www.dot.ny.gov\/pic", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.dot.ny.gov\/pic", "snippet": "New York
+ State Department of Transportation coordinates operation of transportation
+ facilities and services including highway, bridges, railroad, mass transit,
+ port, waterway and aviation facilities", "dateLastCrawled": "2018-11-12T03:31:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Items", "url": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dol.gov\/oasam\/LearningLink\/AssigningWorkingItems.pdf",
+ "snippet": "An item is an assignable unit that can be tracked in the SuccessFactors
+ Learning system. It may be a learning or non- learning activity. Items are
+ usually thought of as “courses”; however, they can be much more. For example:
+ reading a standard operating procedure or attending a", "dateLastCrawled":
+ "2018-11-12T03:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "hours per response7.71 FORM 8-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "about": [{"name": "Form 8-K"}, {"name": "Form 8-K"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form8-k.pdf",
+ "snippet": "If a report on Form 8-K contains disclosures under Item 2.02
+ or Item 7.01, whether or not the report contains disclosures regarding other
+ items, all exhibits to such report relating to Item 2.02 or Item 7.01
+ will be deemed furnished, and not filed, unless the registrant speci fies, under
+ Item 9.01 (Financial Statements and ...", "dateLastCrawled": "2018-11-11T09:32:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "What Can I Bring? | Transportation Security Administration",
+ "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "about": [{"name": "Baggage allowance"}, {"name": "Transportation Security
+ Administration"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure that
+ the item will fit in the overhead bin or underneath the seat of the airplane.",
+ "dateLastCrawled": "2018-11-15T09:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "KCMO.gov » Bulky Item Collection", "url": "http:\/\/kcmo.gov\/neighborhoods\/trash\/bulky\/",
+ "isFamilyFriendly": true, "displayUrl": "kcmo.gov\/neighborhoods\/trash\/bulky",
+ "snippet": "Residents of the City of Kansas City, Missouri now have the option
+ of using the City’s no-charge Bulky Item Collection (Pick-up) Appointment
+ System, or for a fee, can access additional bulky collection options that
+ provide greater flexibility.", "dateLastCrawled": "2018-11-15T11:47:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Integrated Logistics Support Center (ILSC)", "url": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.tacom.army.mil\/ilsc\/tulsa",
+ "snippet": "Provides item managers with pertinent information to determine
+ disposition, as well as, generate the desired transactions into CCSS per their
+ instructions. A productivity tool. IMA Europe Excess Items Redistribution
+ (Retrograde)", "dateLastCrawled": "2018-11-16T13:16:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Bulky Item Collection Overview - San Antonio", "url": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sanantonio.gov\/swmd\/Bulky",
+ "snippet": "Bulky Item Collection Overview. Bulky item collection is provided
+ to all City residential solid waste ratepayers. To find out if you are a solid
+ waste customer, check your CPS Energy bill. If it lists a Solid Waste Fee,
+ you are a customer and you are eligible to receive bulky item collection.",
+ "dateLastCrawled": "2018-11-03T23:20:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Pack mule of U.S. Army Signal Corps, used for carrying ...", "url":
+ "https:\/\/www.loc.gov\/item\/2014683309", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.loc.gov\/item\/2014683309", "snippet": "Yes, the item
+ is digitized. Please use the digital image in preference to requesting the
+ original. All images can be viewed at a large size when you are in any reading
+ room at the Library of Congress.", "dateLastCrawled": "2018-11-15T19:48:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Average Low Bid Unit Prices - Texas Department of ...", "url":
+ "http:\/\/www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "about": [{"name": "Texas Department of Transportation"}], "isFamilyFriendly":
+ true, "displayUrl": "www.txdot.gov\/business\/letting-bids\/average-low-bid-unit-prices.html",
+ "snippet": "Average Low Bid Unit Prices. Texas Department of Transportation;
+ Business; Letting & Bids; Three-Month Statewide Item Average. August 2018
+ - October 2018 (Text Version) July 2018 - September 2018 (Text Version) June
+ 2018 - August 2018 (Text Version) May 2018 - July 2018 (Text Version)", "dateLastCrawled":
+ "2018-11-13T16:48:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "Management Army Major Item Systems Management", "url": "http:\/\/www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "isFamilyFriendly": true, "displayUrl": "www.dtic.mil\/dtic\/tr\/fulltext\/u2\/a401934.pdf",
+ "snippet": "The Army Item Management Study by the Concepts Analysis Agency
+ recommended that the Major Item System Map (MISM) be expanded to interface
+ with all phases of the Planning, Programming,", "dateLastCrawled": "2018-11-11T07:16:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "PNO Guidance on Item 4(d) | Federal Trade Commission", "url":
+ "https:\/\/www.ftc.gov\/enforcement\/premerger-notification-program\/hsr-resources\/pno-guidance-item-4d",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ftc.gov\/...\/hsr-resources\/pno-guidance-item-4d",
+ "snippet": "The number generated by the electronic form for an attachment
+ has no bearing on the number assigned to Item 4(c) and Item 4(d) documents.
+ The first Item 4(c) document should be labeled 4(c)-1, even if the form
+ assigns attachment number 3 to it.", "dateLastCrawled": "2018-11-16T10:17:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Bulk Item Pick Up Appointment | City of New York", "url": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up-appointment",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www1.nyc.gov\/nyc-resources\/service\/7044\/bulk-item-pick-up...",
+ "snippet": "If the item you are throwing out is 4 feet by 3 feet or smaller,
+ you do not have to schedule an appointment. You can place the item out according
+ to your normal garbage schedule. If the item you are throwing out is recyclable
+ (made of metal or rigid plastic), you do not have to schedule an appointment,
+ regardless of size.", "dateLastCrawled": "2018-11-16T02:42:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Pennsylvania System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "about": [{"name": "Pennsylvania System of School Assessment"}], "isFamilyFriendly":
+ true, "displayUrl": "www.education.pa.gov\/K-12\/Assessment and Accountability\/PSSA\/Pages...",
+ "snippet": "The annual Pennsylvania System School Assessment is a standards-based,
+ criterion-referenced assessment which provides students, parents, educators
+ and citizens with an understanding of student and school performance related
+ to the attainment of proficiency of the academic standards.", "dateLastCrawled":
+ "2018-11-07T09:11:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:28 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Custom_no_results_pointer.yml b/features/vcr_cassettes/Searches_using_mobile_device/Custom_no_results_pointer.yml
index 2fa452bf09..2cc3a72ad7 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Custom_no_results_pointer.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Custom_no_results_pointer.yml
@@ -70,4 +70,136 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:34 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=lkssldfkjsldfkjsldkfjsldkjflsdkjflskdjfwer%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '241'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:03 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=04C5D6A163316BC53C8CDA0D62E66AD3; path=/; expires=Sat, 14-Dec-2019 22:42:03
+ GMT; domain=bingapis.com
+ - MUIDB=04C5D6A163316BC53C8CDA0D62E66AD3; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:03 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:03 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=2FE9099D4EA342B8A879FA02697E2D46&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:42:03 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:03
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=38F09A5BEF6D6F893FC596F7EEBA6EB7; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:03 GMT; domain=bingapis.com
+ - _SS=SID=38F09A5BEF6D6F893FC596F7EEBA6EB7; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - A879797497BD422791C1859588D5571B
+ X-Msedge-Clientid:
+ - 04C5D6A163316BC53C8CDA0D62E66AD3
+ X-Msapi-Userstate:
+ - 6a52
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: A879797497BD422791C1859588D5571B Ref B: CO1EDGE0319 Ref C: 2018-11-19T22:42:03Z'
+ Date:
+ - Mon, 19 Nov 2018 22:42:03 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=02502C9DB5C3450B823C5E4E88C78152&CID=04C5D6A163316BC53C8CDA0D62E66AD3&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=02502C9DB5C3450B823C5E4E88C78152&CID=04C5D6A163316BC53C8CDA0D62E66AD3&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:04 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=lkssldfkjsldfkjsldkfjsldkjflsdkjflskdjfwer%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:16 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 984AA1024B714A46B956BEB8CF2AF317
+ Bingapis-Sessionid:
+ - 041A8507ECBA4010B915A2A48EDB3618
+ X-Msedge-Clientid:
+ - 06167A8028526C482975762C291E6D94
+ X-Msapi-Userstate:
+ - a506
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=148,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 984AA1024B714A46B956BEB8CF2AF317 Ref B: BY3EDGE0219 Ref C: 2018-11-19T22:43:16Z'
+ Apim-Request-Id:
+ - ff2b84c4-c09b-41b6-a0fb-17b6c8044c84
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:16 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "lkssldfkjsldfkjsldkfjsldkjflsdkjflskdjfwer
+ (site:gov OR site:mil)"}, "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:17 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Custom_page_1_results_pointer.yml b/features/vcr_cassettes/Searches_using_mobile_device/Custom_page_1_results_pointer.yml
index 8f0fc65a9f..1efa092034 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Custom_page_1_results_pointer.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Custom_page_1_results_pointer.yml
@@ -429,4 +429,916 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:33 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gov%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3012'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:01 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=175A3C3EA368673F34D23092A2BF66E7; path=/; expires=Sat, 14-Dec-2019 22:42:02
+ GMT; domain=bingapis.com
+ - MUIDB=175A3C3EA368673F34D23092A2BF66E7; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:02 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:01 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=D750439B055E41C2BEB9E2B680A8DCB5&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:42:01 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:01
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1E132C18786061F5204520B479B7603D; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:02 GMT; domain=bingapis.com
+ - _SS=SID=1E132C18786061F5204520B479B7603D; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FA34C1D2B88A4C829E24A4F6FE6746BE
+ X-Msedge-Clientid:
+ - 175A3C3EA368673F34D23092A2BF66E7
+ X-Msapi-Userstate:
+ - 3b20
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FA34C1D2B88A4C829E24A4F6FE6746BE Ref B: CO1EDGE0918 Ref C: 2018-11-19T22:42:02Z'
+ Date:
+ - Mon, 19 Nov 2018 22:42:01 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=71E59A438DB14E61B879A7481536D6B9&CID=175A3C3EA368673F34D23092A2BF66E7&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=71E59A438DB14E61B879A7481536D6B9&CID=175A3C3EA368673F34D23092A2BF66E7&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5426.1", "totalEstimatedMatches": 61200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "USA - Official Guide to Government Information and Services", "url": "https:\/\/www.usa.gov\/",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "United States"}], "displayUrl":
+ "https:\/\/www.usa.gov", "snippet": "The .gov means it''s official. Federal
+ government websites often end in .gov or .mil. Before sharing sensitive
+ information, make sure you''re on a federal government site.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Internal Revenue Service | An official website of the ...", "url":
+ "https:\/\/www.irs.gov\/", "urlPingSuffix": "DevEx,5072.1", "about": [{"name":
+ "Internal Revenue Service"}], "displayUrl": "https:\/\/www.irs.gov", "snippet":
+ "The Internal Revenue Service is the nation''s tax collection agency and
+ administers the Internal Revenue Code enacted by Congress.", "dateLastCrawled":
+ "2018-11-15T23:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "The United States Social Security Administration", "url": "https:\/\/www.ssa.gov\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "Social Security Administration"}],
+ "displayUrl": "https:\/\/www.ssa.gov", "snippet": "Official website of the
+ U.S. Social Security Administration. When I made the decision to enlist
+ in the Army, I knew it was a lifetime commitment, whether I was in uniform
+ or not.", "dateLastCrawled": "2018-11-16T02:03:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Medicare.gov: the official U.S. government site for Medicare",
+ "url": "https:\/\/www.medicare.gov\/", "urlPingSuffix": "DevEx,5100.1", "about":
+ [{"name": "Medicare"}], "displayUrl": "https:\/\/www.medicare.gov", "snippet":
+ "If you share our content on Facebook, Twitter, or other social media accounts,
+ we may track what Medicare.gov content you share. This helps us improve
+ our social media outreach. Selecting OFF will block this tracking.", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "urlPingSuffix": "DevEx,5116.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The
+ .gov means it''s official. Federal government websites often end in .gov
+ or .mil. Before sharing sensitive information, make sure you''re on a federal
+ government site. This site is secure. The https:\/\/ ensures that you are
+ connecting to the official website and that any information you provide is
+ ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "USAJOBS - The Federal Government''s Official Jobs Site", "url":
+ "https:\/\/www.usajobs.gov\/", "urlPingSuffix": "DevEx,5129.1", "about": [{"name":
+ "USAJOBS"}, {"name": "USAJOBS"}], "displayUrl": "https:\/\/www.usajobs.gov",
+ "snippet": "USAJOBS is the Federal Government''s official one-stop source
+ for Federal jobs and employment information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "IN.gov
+ | The Official Website of the State of Indiana", "url": "https:\/\/www.in.gov\/",
+ "urlPingSuffix": "DevEx,5143.1", "about": [{"name": "Indiana"}, {"name": "Tennessee
+ State Capitol"}], "displayUrl": "https:\/\/www.in.gov", "snippet": "IN.gov
+ is the official website of the State of Indiana and your place to find information,
+ services, news and events related to Indiana government. AMBER ALERT But
+ when you''re done reading it, click the close button in the corner to dismiss
+ this alert.", "dateLastCrawled": "2018-11-13T08:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "U.S. Government Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "urlPingSuffix": "DevEx,5157.1", "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Welcome to the
+ California State Web Portal", "url": "http:\/\/www.ca.gov\/", "urlPingSuffix":
+ "DevEx,5171.1", "about": [{"name": "Missouri AT"}, {"name": "California"}],
+ "displayUrl": "www.ca.gov", "snippet": "California has been hit with devastating
+ wildfires and other natural disasters in both the northern and southern parts
+ of the state. If you need more information about recovery or resources, go
+ to www.caloes.ca.gov", "dateLastCrawled": "2018-11-16T06:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Government
+ Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "urlPingSuffix": "DevEx,5185.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "HealthCare.gov
+ - Get 2019 health coverage. Health ...", "url": "https:\/\/www.healthcare.gov\/",
+ "urlPingSuffix": "DevEx,5198.1", "about": [{"name": "HealthCare.gov"}], "displayUrl":
+ "https:\/\/www.healthcare.gov", "snippet": "Official site of Affordable
+ Care Act. Enroll now for 2019 coverage. See health coverage choices, ways
+ to save today, how law affects you.", "dateLastCrawled": "2018-11-13T18:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Home
+ | DotGov", "url": "https:\/\/www.dotgov.gov\/", "urlPingSuffix": "DevEx,5212.1",
+ "about": [{"name": "gov"}], "displayUrl": "https:\/\/www.dotgov.gov",
+ "snippet": "The .gov means it’s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-15T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5226.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Unclaimed Money
+ from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "urlPingSuffix": "DevEx,5242.1", "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Home
+ [www.dmv.ca.gov]", "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv", "urlPingSuffix":
+ "DevEx,5256.1", "about": [{"name": "California Department of Motor Vehicles"}],
+ "displayUrl": "https:\/\/www.dmv.ca.gov", "snippet": "California DMV Home
+ Page is available for customers to check out publications, download forms,
+ brochures, FAQs, Vehicle Information, Boats, Vessel, and Field Offices.",
+ "dateLastCrawled": "2018-11-16T11:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "urlPingSuffix": "DevEx,5269.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Centers for
+ Disease Control and Prevention", "url": "https:\/\/www.cdc.gov\/", "urlPingSuffix":
+ "DevEx,5283.1", "about": [{"name": "Centers for Disease Control and Prevention"},
+ {"name": "Centers for Disease Control and Prevention"}], "displayUrl": "https:\/\/www.cdc.gov",
+ "snippet": "USA.gov. CDC Website Exit Disclaimer. ... The Centers for
+ Disease Control and Prevention (CDC) cannot attest to the accuracy of a
+ non-federal website. Linking to a non-federal website does not constitute
+ an endorsement by CDC or any of its employees of the sponsors or the information
+ and products presented on the website.", "dateLastCrawled": "2018-11-16T09:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "National
+ Weather Service", "url": "https:\/\/www.weather.gov\/", "urlPingSuffix":
+ "DevEx,5297.1", "about": [{"name": "National Weather Service"}, {"name": "National
+ Weather Service"}], "displayUrl": "https:\/\/www.weather.gov", "snippet":
+ "NOAA National Weather Service National Weather Service. Fire Weather Threat
+ Waning in Southern California; Early Season Winter Storm Impacting the Ohio\/Mississippi
+ Valleys and the East Coast States", "dateLastCrawled": "2018-11-16T09:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Transportation
+ Security Administration", "url": "https:\/\/www.tsa.gov\/", "urlPingSuffix":
+ "DevEx,5311.1", "about": [{"name": "Transportation Security Administration"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov",
+ "snippet": "Travel Tips. Preparing for travel may be stressful, but it doesn’t
+ need to be. Keep these screening tips in mind to help facilitate the screening
+ process on your next trip to the airport.", "dateLastCrawled": "2018-11-15T06:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Home
+ | GRANTS.GOV", "url": "https:\/\/www.grants.gov\/", "urlPingSuffix": "DevEx,5324.1",
+ "displayUrl": "https:\/\/www.grants.gov", "snippet": "The government website
+ where federal agencies post discretionary funding opportunities and grantees
+ find and apply for them", "dateLastCrawled": "2018-11-14T03:57:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:02 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=20&q=gov%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3658'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:02 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2F588805FF3C6E8801C684A9FEEB6F2A; path=/; expires=Sat, 14-Dec-2019 22:42:02
+ GMT; domain=bingapis.com
+ - MUIDB=2F588805FF3C6E8801C684A9FEEB6F2A; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:02 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:02 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=828E707351B34BC6852F1E4794F1DB4A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:42:02 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:02
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2B9A8FED28B96CB3348A8341296E6DB2; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:02 GMT; domain=bingapis.com
+ - _SS=SID=2B9A8FED28B96CB3348A8341296E6DB2; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 0BDEF16FD56A4613A36D51BCBAF81FFC
+ X-Msedge-Clientid:
+ - 2F588805FF3C6E8801C684A9FEEB6F2A
+ X-Msapi-Userstate:
+ - ce2c
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 0BDEF16FD56A4613A36D51BCBAF81FFC Ref B: CO1EDGE0508 Ref C: 2018-11-19T22:42:02Z'
+ Date:
+ - Mon, 19 Nov 2018 22:42:02 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F390A1D8DB4C49EFADB15F85B6C28C5E&CID=2F588805FF3C6E8801C684A9FEEB6F2A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F390A1D8DB4C49EFADB15F85B6C28C5E&CID=2F588805FF3C6E8801C684A9FEEB6F2A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5421.1", "totalEstimatedMatches": 52600000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Texas.gov | The Official Website of the State of Texas", "url": "https:\/\/texas.gov\/",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "Texas"}], "displayUrl":
+ "https:\/\/texas.gov", "snippet": "Texas.gov does not sell and does
+ not generally release (other than as provided in this policy) personally identifiable
+ information to third parties; however, information provided to any governmental
+ body may be subject to disclosure pursuant to the Texas Public Information
+ Act and applicable federal and state legislation.", "dateLastCrawled": "2018-11-13T13:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Choose
+ MyPlate", "url": "https:\/\/www.choosemyplate.gov\/", "urlPingSuffix": "DevEx,5073.1",
+ "about": [{"name": "MyPlate"}], "displayUrl": "https:\/\/www.choosemyplate.gov",
+ "snippet": "ChooseMyPlate.gov provides practical information to individuals,
+ health professionals, nutrition educators, and the food industry to help consumers
+ build healthier diets with resources and tools for dietary assessment, nutrition
+ education, and other user-friendly nutrition information.", "dateLastCrawled":
+ "2018-11-15T14:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Delaware.gov - Official Website of the State of Delaware",
+ "url": "https:\/\/delaware.gov\/", "urlPingSuffix": "DevEx,5087.1", "about":
+ [{"name": "Delaware"}], "displayUrl": "https:\/\/delaware.gov", "snippet":
+ "The official website of the State of Delaware. Find information about state
+ government, programs, and services. The First State is located in the Northeast
+ U.S.", "dateLastCrawled": "2018-11-15T06:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Home - My HealtheVet", "url": "https:\/\/www.myhealth.va.gov\/",
+ "urlPingSuffix": "DevEx,5101.1", "about": [{"name": "United States Department
+ of Veterans Affairs"}], "displayUrl": "https:\/\/www.myhealth.va.gov", "snippet":
+ "The .gov means it’s official. Federal government websites always use a
+ .gov or .mil domain. Before sharing sensitive information online, make sure
+ you’re on a .gov or .mil site by inspecting your browser’s address (or “location”)
+ bar.", "dateLastCrawled": "2018-11-16T00:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Welcome to EFTPS online", "url": "https:\/\/www.eftps.gov\/", "urlPingSuffix":
+ "DevEx,5115.1", "about": [{"name": "Electronic Federal Tax Payment System"}],
+ "displayUrl": "https:\/\/www.eftps.gov", "snippet": "The Electronic Federal
+ Tax Payment System® tax payment service is provided free by the U.S. Department
+ of the Treasury. After you''ve enrolled and received your credentials, you
+ can pay any tax due to the Internal Revenue Service (IRS) using this system.
+ ... USA.gov IRS.gov Treasury.gov.", "dateLastCrawled": "2018-11-15T06:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "dc.gov
+ - Washington, DC", "url": "http:\/\/www.dc.gov\/", "urlPingSuffix": "DevEx,5128.1",
+ "about": [{"name": "Washington DC VA Medical Center - 4,061 Photos - 621 Reviews
+ - Hospital - 50 Irving St NW, Washington, District of Columbia 20422"}], "displayUrl":
+ "www.dc.gov", "snippet": "Kids Ride Free in the 2018-19 School Year. Make
+ sure you know the latest about the Kids Ride Free on Bus and Rail program.
+ For more information, including FAQs, go to kidsridefree.dc.gov or call
+ DDOT customer service at (202) 673-1740.", "dateLastCrawled": "2018-11-16T13:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Homepage
+ | USCIS", "url": "https:\/\/www.uscis.gov\/", "urlPingSuffix": "DevEx,5141.1",
+ "about": [{"name": "United States Citizenship and Immigration Services"},
+ {"name": "United States Citizenship and Immigration Services"}], "displayUrl":
+ "https:\/\/www.uscis.gov", "snippet": "U.S. Citizenship and Immigration
+ Services (USCIS) is a component of the United States Department of Homeland
+ Security (DHS).", "dateLastCrawled": "2018-11-16T12:28:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Home | GRANTS.GOV",
+ "url": "https:\/\/www.grants.gov\/", "urlPingSuffix": "DevEx,5154.1", "displayUrl":
+ "https:\/\/www.grants.gov", "snippet": "The government website where federal
+ agencies post discretionary funding opportunities and grantees find and apply
+ for them", "dateLastCrawled": "2018-11-14T03:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "urlPingSuffix": "DevEx,5168.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Home |
+ disasterassistance.gov", "url": "https:\/\/www.disasterassistance.gov\/",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.disasterassistance.gov",
+ "snippet": "To find help for your immediate needs, please enter an address
+ to get a list of the closest FEMA Disaster Recovery Centers (DRCs), starting
+ with the closest three.", "dateLastCrawled": "2018-11-13T13:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Web Content
+ Viewer - DMV", "url": "http:\/\/www.dmv.ca.gov\/portal\/dmv\/", "urlPingSuffix":
+ "DevEx,5196.1", "about": [{"name": "California Department of Motor Vehicles"}],
+ "displayUrl": "www.dmv.ca.gov\/portal\/dmv", "snippet": "California DMV
+ Home Page is available for customers to check out publications, download forms,
+ brochures, FAQs, Vehicle Information, Boats, Vessel, and Field Offices.",
+ "dateLastCrawled": "2018-11-15T01:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Thrift Savings Plan", "url": "https:\/\/www.tsp.gov\/", "urlPingSuffix":
+ "DevEx,5209.1", "displayUrl": "https:\/\/www.tsp.gov", "snippet": "My Account.
+ TSP Account Number. User ID. Forgot your account number or user ID? My Account,
+ Plan Participation, Investment Funds, Planning and Tools, Life Events and
+ ...", "dateLastCrawled": "2018-11-16T01:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "U.S. General Services Administration", "url": "https:\/\/www.gsa.gov\/",
+ "urlPingSuffix": "DevEx,5221.1", "about": [{"name": "General Services Administration"}],
+ "displayUrl": "https:\/\/www.gsa.gov", "snippet": "Front Page for the GSA.gov
+ website. GSA delivers value and savings in acquisition, real estate, technology,
+ and other mission-support services for agencies across the federal government.",
+ "dateLastCrawled": "2018-11-13T22:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Data.gov", "url": "https:\/\/www.data.gov\/", "urlPingSuffix":
+ "DevEx,5235.1", "about": [{"name": "data.gov"}, {"name": "data.gov"}, {"name":
+ "Data set"}], "displayUrl": "https:\/\/www.data.gov", "snippet": "The
+ Data.gov catalog brings together datasets from hundreds of agency sources
+ across the federal government and from 50 non-federal sources. Metadata for
+ datasets that are available to the public are maintained by the …", "dateLastCrawled":
+ "2018-11-16T08:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Home - ClinicalTrials.gov", "url": "https:\/\/clinicaltrials.gov\/",
+ "urlPingSuffix": "DevEx,5246.1", "displayUrl": "https:\/\/clinicaltrials.gov",
+ "snippet": "ClinicalTrials.gov is a database of privately and publicly funded
+ clinical studies conducted around the world. ClinicalTrials.gov is a registry
+ and results database of publicly and privately supported clinical studies
+ of human participants conducted around the world.", "dateLastCrawled": "2018-11-19T18:05:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5259.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "United States
+ Patent and Trademark Office", "url": "https:\/\/www.uspto.gov\/", "urlPingSuffix":
+ "DevEx,5272.1", "about": [{"name": "United States Patent and Trademark Office"},
+ {"name": "United States Patent and Trademark Office"}, {"name": "Patent"}],
+ "displayUrl": "https:\/\/www.uspto.gov", "snippet": "Home page of the United
+ States Patent and Trademark Office''s main web site.", "dateLastCrawled":
+ "2018-11-16T08:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5288.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal
+ jobs and employment information. There, you can: You must create a USAJOBS
+ profile to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Mass.gov",
+ "url": "https:\/\/www.mass.gov\/", "urlPingSuffix": "DevEx,5302.1", "about":
+ [{"name": "Commonwealth of Massachusetts"}, {"name": "Dighton Rock State Park"}],
+ "displayUrl": "https:\/\/www.mass.gov", "snippet": "Official website of
+ the Commonwealth of Massachusetts. Updates on Greater Lawrence gas emergency
+ Officials provide up-to-date information on the Sept. 13 gas line emergency.",
+ "dateLastCrawled": "2018-11-15T13:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "login.gov | Home", "url": "https:\/\/www.login.gov\/", "urlPingSuffix":
+ "DevEx,5316.1", "about": [{"name": "Login.gov"}], "displayUrl": "https:\/\/www.login.gov",
+ "snippet": "login.gov offers the public secure and private online access
+ to participating government programs. With one login.gov account, users
+ can sign in to multiple government agencies. Our goal is to make managing
+ federal benefits, services and applications easier and more secure.", "dateLastCrawled":
+ "2018-11-14T22:26:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:02 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gov%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:14 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - AC42AEAF32BA41E6A84E93016FF68745
+ Bingapis-Sessionid:
+ - 29A5E715FAFE45C6B833EE4824808AB2
+ X-Msedge-Clientid:
+ - 1A55D248B1E060902918DEE4B0AC6100
+ X-Msapi-Userstate:
+ - b102
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=187,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: AC42AEAF32BA41E6A84E93016FF68745 Ref B: BY3EDGE0221 Ref C: 2018-11-19T22:43:14Z'
+ Apim-Request-Id:
+ - 1ffdd948-79ba-4833-bd6a-9a1cff15a679
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:14 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gov
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 52600000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Internal Revenue Service | An official website of the ...", "url":
+ "https:\/\/www.irs.gov\/", "about": [{"name": "Internal Revenue Service"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.irs.gov", "snippet":
+ "The Internal Revenue Service is the nation''s tax collection agency and
+ administers the Internal Revenue Code enacted by Congress.", "dateLastCrawled":
+ "2018-11-15T23:54:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "The United States Social Security Administration", "url": "http:\/\/www.ssa.gov\/",
+ "about": [{"name": "Social Security Administration"}], "isFamilyFriendly":
+ true, "displayUrl": "www.ssa.gov", "snippet": "Official website of the U.S.
+ Social Security Administration. When I made the decision to enlist in the
+ Army, I knew it was a lifetime commitment, whether I was in uniform or not.",
+ "dateLastCrawled": "2018-11-16T10:44:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.
+ This site is secure. The https:\/\/ ensures that you are connecting to the
+ official website and that any information you provide is ...", "dateLastCrawled":
+ "2018-11-11T03:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "Medicare.gov: the official U.S. government site for Medicare", "url":
+ "https:\/\/www.medicare.gov\/", "about": [{"name": "Medicare"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.medicare.gov", "snippet": "If you share
+ our content on Facebook, Twitter, or other social media accounts, we may track
+ what Medicare.gov content you share. This helps us improve our social media
+ outreach. Selecting OFF will block this tracking.", "dateLastCrawled": "2018-11-13T23:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "IN.gov | The Official Website of the State of Indiana", "url":
+ "https:\/\/www.in.gov\/", "about": [{"name": "Indiana"}, {"name": "Tennessee
+ State Capitol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.in.gov",
+ "snippet": "IN.gov is the official website of the State of Indiana and
+ your place to find information, services, news and events related to Indiana
+ government. AMBER ALERT But when you''re done reading it, click the close
+ button in the corner to dismiss this alert.", "dateLastCrawled": "2018-11-13T08:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "HealthCare.gov - Get 2019 health coverage. Health ...", "url":
+ "https:\/\/www.healthcare.gov\/", "about": [{"name": "HealthCare.gov"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.healthcare.gov", "snippet": "Official
+ site of Affordable Care Act. Enroll now for 2019 coverage. See health coverage
+ choices, ways to save today, how law affects you.", "dateLastCrawled": "2018-11-13T18:37:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "USAJOBS - The Federal Government''s Official Jobs Site", "url":
+ "https:\/\/www.usajobs.gov\/", "about": [{"name": "USAJOBS"}, {"name": "USAJOBS"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usajobs.gov", "snippet":
+ "USAJOBS is the Federal Government''s official one-stop source for Federal
+ jobs and employment information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "U.S. Government Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "National Weather Service", "url": "https:\/\/www.weather.gov\/",
+ "about": [{"name": "National Weather Service"}, {"name": "National Weather
+ Service"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.weather.gov",
+ "snippet": "NOAA National Weather Service National Weather Service. Fire
+ Weather Threat Waning in Southern California; Early Season Winter Storm Impacting
+ the Ohio\/Mississippi Valleys and the East Coast States", "dateLastCrawled":
+ "2018-11-16T09:22:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Welcome to the California State Web Portal", "url": "http:\/\/www.ca.gov\/",
+ "about": [{"name": "Missouri AT"}, {"name": "California"}], "isFamilyFriendly":
+ true, "displayUrl": "www.ca.gov", "snippet": "California has been hit
+ with devastating wildfires and other natural disasters in both the northern
+ and southern parts of the state. If you need more information about recovery
+ or resources, go to www.caloes.ca.gov", "dateLastCrawled": "2018-11-16T06:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Tennessee State Government - TN.gov", "url": "http:\/\/www.tn.gov\/",
+ "about": [{"name": "Tennessee State Capitol"}, {"name": "Tennessee"}, {"name":
+ "Tennessee State Capitol"}], "isFamilyFriendly": true, "displayUrl": "www.tn.gov",
+ "snippet": "Tennessee Gov. Bill Haslam and Department of Economic and Community
+ Development Commissioner Bob Rolfe announced today that Amazon will invest
+ more than $230 million to establish a new Operations Center of Excellence
+ in downtown Nashville.", "dateLastCrawled": "2018-11-15T20:10:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "CalCareers - State of California", "url": "https:\/\/jobs.ca.gov\/",
+ "about": [{"name": "JobsMoGov"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/jobs.ca.gov", "snippet": "The State of California offers its
+ employees generous benefits that include retirement and savings plans, health
+ and dental insurance, and access to long-term disability and long-term care
+ insurance.", "dateLastCrawled": "2018-11-16T07:14:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "U.S. Department of State | Home Page", "url": "https:\/\/www.state.gov\/",
+ "about": [{"name": "United States Department of State"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.state.gov", "snippet": "State Department
+ honors those who have served in the United States’ armed forces on Veterans
+ Day, and each and every day, by providing education, fellowship, and job exposure
+ to veterans and transitioning military to become the diplomats of tomorrow.",
+ "dateLastCrawled": "2018-11-14T19:16:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "PA.GOV | The Official Website for the Commonwealth of ...", "url":
+ "https:\/\/www.pa.gov\/", "about": [{"name": "Pennsylvania"}, {"name": "Commonwealth
+ Gov .Sch."}, {"name": "Pennsylvania"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.pa.gov", "snippet": "PA.GOV | The Official Website for
+ the Commonwealth of Pennsylvania. The official website of the Commonwealth
+ of Pennsylvania. Find information and services from Pennsylvania state
+ government agencies.", "dateLastCrawled": "2018-11-14T00:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Home [www.dmv.ca.gov]", "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv",
+ "about": [{"name": "California Department of Motor Vehicles"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.dmv.ca.gov", "snippet": "California
+ DMV Home Page is available for customers to check out publications, download
+ forms, brochures, FAQs, Vehicle Information, Boats, Vessel, and Field Offices.",
+ "dateLastCrawled": "2018-11-16T11:39:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Home | DotGov", "url": "https:\/\/www.dotgov.gov\/", "about": [{"name":
+ "gov"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dotgov.gov",
+ "snippet": "The .gov means it’s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-15T02:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Unclaimed Money from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Texas.gov | The Official Website of the State of Texas", "url":
+ "https:\/\/texas.gov\/", "about": [{"name": "Texas"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/texas.gov", "snippet": "Texas.gov does
+ not sell and does not generally release (other than as provided in this policy)
+ personally identifiable information to third parties; however, information
+ provided to any governmental body may be subject to disclosure pursuant to
+ the Texas Public Information Act and applicable federal and state legislation.",
+ "dateLastCrawled": "2018-11-13T13:43:00.0000000Z", "language": "en", "isNavigational":
+ false}]}, "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages",
+ "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:14 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=20&q=gov%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:14 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 447CCD65A65B4360AB50F6D9B5A18167
+ Bingapis-Sessionid:
+ - 23ABA387417F4E0F9A3C1A3E6555E457
+ X-Msedge-Clientid:
+ - 35662A9F50D66E7602262633519A6F9D
+ X-Msapi-Userstate:
+ - a062
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=145,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 447CCD65A65B4360AB50F6D9B5A18167 Ref B: BY3EDGE0220 Ref C: 2018-11-19T22:43:14Z'
+ Apim-Request-Id:
+ - 9e7bee3e-65de-4203-abc1-37e5c769585d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:14 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gov
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 52600000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Texas.gov | The Official Website of the State of Texas", "url":
+ "https:\/\/texas.gov\/", "about": [{"name": "Texas"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/texas.gov", "snippet": "Texas.gov does
+ not sell and does not generally release (other than as provided in this policy)
+ personally identifiable information to third parties; however, information
+ provided to any governmental body may be subject to disclosure pursuant to
+ the Texas Public Information Act and applicable federal and state legislation.",
+ "dateLastCrawled": "2018-11-13T13:43:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Choose MyPlate", "url": "https:\/\/www.choosemyplate.gov\/", "about":
+ [{"name": "MyPlate"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.choosemyplate.gov",
+ "snippet": "ChooseMyPlate.gov provides practical information to individuals,
+ health professionals, nutrition educators, and the food industry to help consumers
+ build healthier diets with resources and tools for dietary assessment, nutrition
+ education, and other user-friendly nutrition information.", "dateLastCrawled":
+ "2018-11-15T14:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Delaware.gov - Official Website of the State of Delaware", "url": "https:\/\/delaware.gov\/",
+ "about": [{"name": "Delaware"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/delaware.gov",
+ "snippet": "The official website of the State of Delaware. Find information
+ about state government, programs, and services. The First State is located
+ in the Northeast U.S.", "dateLastCrawled": "2018-11-15T06:54:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Home - My HealtheVet", "url": "https:\/\/www.myhealth.va.gov\/",
+ "about": [{"name": "United States Department of Veterans Affairs"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.myhealth.va.gov", "snippet": "The .gov
+ means it’s official. Federal government websites always use a .gov or .mil
+ domain. Before sharing sensitive information online, make sure you’re on a
+ .gov or .mil site by inspecting your browser’s address (or “location”) bar.",
+ "dateLastCrawled": "2018-11-16T00:05:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Welcome to EFTPS online", "url": "https:\/\/www.eftps.gov\/", "about":
+ [{"name": "Electronic Federal Tax Payment System"}], "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.eftps.gov", "snippet": "The Electronic Federal
+ Tax Payment System® tax payment service is provided free by the U.S. Department
+ of the Treasury. After you''ve enrolled and received your credentials, you
+ can pay any tax due to the Internal Revenue Service (IRS) using this system.
+ ... USA.gov IRS.gov Treasury.gov.", "dateLastCrawled": "2018-11-15T06:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "dc.gov - Washington, DC", "url": "http:\/\/www.dc.gov\/", "about":
+ [{"name": "Washington DC VA Medical Center - 4,061 Photos - 621 Reviews -
+ Hospital - 50 Irving St NW, Washington, District of Columbia 20422"}], "isFamilyFriendly":
+ true, "displayUrl": "www.dc.gov", "snippet": "Kids Ride Free in the 2018-19
+ School Year. Make sure you know the latest about the Kids Ride Free on Bus
+ and Rail program. For more information, including FAQs, go to kidsridefree.dc.gov
+ or call DDOT customer service at (202) 673-1740.", "dateLastCrawled": "2018-11-16T13:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Homepage | USCIS", "url": "https:\/\/www.uscis.gov\/", "about": [{"name":
+ "United States Citizenship and Immigration Services"}, {"name": "United States
+ Citizenship and Immigration Services"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.uscis.gov", "snippet": "U.S. Citizenship and Immigration
+ Services (USCIS) is a component of the United States Department of Homeland
+ Security (DHS).", "dateLastCrawled": "2018-11-16T12:28:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Home | GRANTS.GOV", "url": "https:\/\/www.grants.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.grants.gov", "snippet": "The government
+ website where federal agencies post discretionary funding opportunities and
+ grantees find and apply for them", "dateLastCrawled": "2018-11-14T03:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Home | disasterassistance.gov", "url": "https:\/\/www.disasterassistance.gov\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.disasterassistance.gov",
+ "snippet": "To find help for your immediate needs, please enter an address
+ to get a list of the closest FEMA Disaster Recovery Centers (DRCs), starting
+ with the closest three.", "dateLastCrawled": "2018-11-13T13:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Web Content Viewer - DMV", "url": "http:\/\/www.dmv.ca.gov\/portal\/dmv\/",
+ "about": [{"name": "California Department of Motor Vehicles"}], "isFamilyFriendly":
+ true, "displayUrl": "www.dmv.ca.gov\/portal\/dmv", "snippet": "California
+ DMV Home Page is available for customers to check out publications, download
+ forms, brochures, FAQs, Vehicle Information, Boats, Vessel, and Field Offices.",
+ "dateLastCrawled": "2018-11-15T01:50:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Thrift Savings Plan", "url": "https:\/\/www.tsp.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.tsp.gov", "snippet": "My Account. TSP
+ Account Number. User ID. Forgot your account number or user ID? My Account,
+ Plan Participation, Investment Funds, Planning and Tools, Life Events and
+ ...", "dateLastCrawled": "2018-11-16T01:09:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "U.S. General Services Administration", "url": "https:\/\/www.gsa.gov\/",
+ "about": [{"name": "General Services Administration"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.gsa.gov", "snippet": "Front Page for
+ the GSA.gov website. GSA delivers value and savings in acquisition, real
+ estate, technology, and other mission-support services for agencies across
+ the federal government.", "dateLastCrawled": "2018-11-13T22:42:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Data.gov", "url": "https:\/\/www.data.gov\/", "about": [{"name":
+ "data.gov"}, {"name": "data.gov"}, {"name": "Data set"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.data.gov", "snippet": "The Data.gov
+ catalog brings together datasets from hundreds of agency sources across the
+ federal government and from 50 non-federal sources. Metadata for datasets
+ that are available to the public are maintained by the …", "dateLastCrawled":
+ "2018-11-16T08:24:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "Home - ClinicalTrials.gov", "url": "https:\/\/clinicaltrials.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/clinicaltrials.gov", "snippet": "ClinicalTrials.gov
+ is a database of privately and publicly funded clinical studies conducted
+ around the world. ClinicalTrials.gov is a registry and results database
+ of publicly and privately supported clinical studies of human participants
+ conducted around the world.", "dateLastCrawled": "2018-11-19T18:05:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Jobs and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "United States Patent and Trademark Office", "url": "https:\/\/www.uspto.gov\/",
+ "about": [{"name": "United States Patent and Trademark Office"}, {"name":
+ "United States Patent and Trademark Office"}, {"name": "Patent"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.uspto.gov", "snippet": "Home page of
+ the United States Patent and Trademark Office''s main web site.", "dateLastCrawled":
+ "2018-11-16T08:09:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal
+ jobs and employment information. There, you can: You must create a USAJOBS
+ profile to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Mass.gov", "url": "https:\/\/www.mass.gov\/", "about": [{"name":
+ "Commonwealth of Massachusetts"}, {"name": "Dighton Rock State Park"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.mass.gov", "snippet": "Official website
+ of the Commonwealth of Massachusetts. Updates on Greater Lawrence gas emergency
+ Officials provide up-to-date information on the Sept. 13 gas line emergency.",
+ "dateLastCrawled": "2018-11-15T13:05:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "login.gov | Home", "url": "https:\/\/www.login.gov\/", "about":
+ [{"name": "Login.gov"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.login.gov",
+ "snippet": "login.gov offers the public secure and private online access
+ to participating government programs. With one login.gov account, users
+ can sign in to multiple government agencies. Our goal is to make managing
+ federal benefits, services and applications easier and more secure.", "dateLastCrawled":
+ "2018-11-14T22:26:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:15 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/English_Image_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/English_Image_search.yml
new file mode 100644
index 0000000000..524ac19ed7
--- /dev/null
+++ b/features/vcr_cassettes/Searches_using_mobile_device/English_Image_search.yml
@@ -0,0 +1,673 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=20&mkt=en-US&offset=0&q=white%20house%20(site:whitehouse.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '112979'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 5C137F802598421D910F90164D26F11D
+ X-Msedge-Clientid:
+ - 31BA622DD4B368680CEC6EAFD5FF6928
+ X-Msapi-Userstate:
+ - e56f
+ X-Search-Responseinfo:
+ - InternalResponseTime=239,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 5C137F802598421D910F90164D26F11D Ref B: BY3EDGE0306 Ref C: 2018-10-08T18:25:35Z'
+ Apim-Request-Id:
+ - 264e0f2b-23ca-4bdf-aa47-b8bd2920293d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 08 Oct 2018 18:25:34 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"_type": "ResponseInstrumentation"},
+ "readLink": "images\/search?q=white house (site:whitehouse.gov)", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=white house (site:whitehouse.gov)&FORM=OIIARP",
+ "totalEstimatedMatches": 108, "nextOffset": 24, "value": [{"webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=6D2D34DDA3F04CE3C814637ACBFF850188969934&simid=608025616309420301",
+ "name": "About The White House | The White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.vWpSQJSzVJ9lks69e2kbpAHaCx&pid=Api",
+ "datePublished": "2017-12-14T22:10:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/P20170614JB-0303-2-1920x720.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/", "contentSize":
+ "357656 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house",
+ "width": 1920, "height": 720, "thumbnail": {"width": 474, "height": 177},
+ "imageInsightsToken": "ccid_vWpSQJSz*mid_6D2D34DDA3F04CE3C814637ACBFF850188969934*simid_608025616309420301*thid_OIP.vWpSQJSzVJ9lks69e2kbpAHaCx",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House", "displayText": "White House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House&id=6D2D34DDA3F04CE3C814637ACBFF850188969934&FORM=IDBQDM"},
+ "pagesIncludingCount": 17, "availableSizesCount": 7}, "imageId": "6D2D34DDA3F04CE3C814637ACBFF850188969934",
+ "accentColor": "B11A26"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=C842520FBAAE820695E2E9DF39D29FAA113C1E30&simid=608052361083226840",
+ "name": "President Trump Hosts Faith Leaders at the White House | whitehouse.gov",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.ciJSod2ej_4Kzo0FrOhIkQHaE7&pid=Api",
+ "datePublished": "2017-05-04T19:20:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/P20170503SC-1494.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/blog\/2017\/05\/04\/president-trump-hosts-faith-leaders-white-house",
+ "contentSize": "2283410 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/blog\/2017\/05\/04\/president-trump-hosts...",
+ "width": 2048, "height": 1365, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_ciJSod2e*mid_C842520FBAAE820695E2E9DF39D29FAA113C1E30*simid_608052361083226840*thid_OIP.ciJSod2ej!_4Kzo0FrOhIkQHaE7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Trump White House President", "displayText": "Trump White House President",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Trump+White+House+President&id=C842520FBAAE820695E2E9DF39D29FAA113C1E30&FORM=IDBQDM"},
+ "pagesIncludingCount": 6, "availableSizesCount": 5}, "imageId": "C842520FBAAE820695E2E9DF39D29FAA113C1E30",
+ "accentColor": "214B6B"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838978770512553DEFFAA2A&simid=608050067599265745",
+ "name": "The White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.LwxG4x0F5CfYqbsImTJdVwHaD2&pid=Api",
+ "datePublished": "2018-07-20T07:55:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/WhiteHouse-Faded-1387x720.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/", "contentSize": "105313 B",
+ "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov",
+ "width": 1387, "height": 720, "thumbnail": {"width": 474, "height": 246},
+ "imageInsightsToken": "ccid_LwxG4x0F*mid_53513FFBBEDEC4707838978770512553DEFFAA2A*simid_608050067599265745*thid_OIP.LwxG4x0F5CfYqbsImTJdVwHaD2",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House", "displayText": "White House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House&id=53513FFBBEDEC4707838978770512553DEFFAA2A&FORM=IDBQDM"},
+ "pagesIncludingCount": 74, "availableSizesCount": 41}, "imageId": "53513FFBBEDEC4707838978770512553DEFFAA2A",
+ "accentColor": "666A61"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18&simid=608040648766194526",
+ "name": "The White House Building | The White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.TlRJvQlnk_hJVLgHxQU4DAHaCx&pid=Api",
+ "datePublished": "2017-12-14T22:04:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/35492069145_7d58e21088_k-1-1920x720.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-white-house\/",
+ "contentSize": "365382 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-white-house", "width":
+ 1920, "height": 720, "thumbnail": {"width": 474, "height": 177}, "imageInsightsToken":
+ "ccid_TlRJvQln*mid_BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18*simid_608040648766194526*thid_OIP.TlRJvQlnk!_hJVLgHxQU4DAHaCx",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Building", "displayText": "White House Building", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Building&id=BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18&FORM=IDBQDM"},
+ "pagesIncludingCount": 5, "availableSizesCount": 1}, "imageId": "BFB212A6F8EBFC9ABB37C22C7DE7481FA28D8B18",
+ "accentColor": "7B5A50"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=B1970B8EC525467AFCF94D16A275449793812A74&simid=608037513410183198",
+ "name": "The White House Easter Egg Roll | The White House", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.kRhcxef8k3DP99QCww8-fQHaE7&pid=Api",
+ "datePublished": "2018-09-24T23:04:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/04\/EASTER01.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/eastereggroll\/", "contentSize":
+ "120477 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/eastereggroll",
+ "width": 680, "height": 453, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_kRhcxef8*mid_B1970B8EC525467AFCF94D16A275449793812A74*simid_608037513410183198*thid_OIP.kRhcxef8k3DP99QCww8-fQHaE7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Easter 2018", "displayText": "White House Easter 2018", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Easter+2018&id=B1970B8EC525467AFCF94D16A275449793812A74&FORM=IDBQDM"},
+ "pagesIncludingCount": 4, "availableSizesCount": 1}, "imageId": "B1970B8EC525467AFCF94D16A275449793812A74",
+ "accentColor": "A8232B"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=E0D364ECB84A080ED578357F7335746961EAED39&simid=608046653067627884",
+ "name": "Photos of the Week: Christmas at the White House", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.4-VJLpcY4fHo9-xPAl_UgAHaE8&pid=Api",
+ "datePublished": "2017-12-01T12:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/f20171120kd-0047_original-1-820x547.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-week-christmas-white-house\/",
+ "contentSize": "98292 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/photos-week...", "width":
+ 820, "height": 547, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_4+VJLpcY*mid_E0D364ECB84A080ED578357F7335746961EAED39*simid_608046653067627884*thid_OIP.4-VJLpcY4fHo9-xPAl!_UgAHaE8",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Christmas", "displayText": "White House Christmas", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Christmas&id=E0D364ECB84A080ED578357F7335746961EAED39&FORM=IDBQDM"},
+ "pagesIncludingCount": 5, "availableSizesCount": 2}, "imageId": "E0D364ECB84A080ED578357F7335746961EAED39",
+ "accentColor": "6F2D29"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838800476737194FE35BD7D&simid=607995839353850720",
+ "name": "Home Page | The White House", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.sb82N5yrT-BOcS9wudrRYAHaCx&pid=Api",
+ "datePublished": "2017-12-21T22:13:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/P20171220SKC-0293_1-1-1920x720.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/", "contentSize": "329622 B",
+ "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov",
+ "width": 1920, "height": 720, "thumbnail": {"width": 474, "height": 177},
+ "imageInsightsToken": "ccid_sb82N5yr*mid_53513FFBBEDEC4707838800476737194FE35BD7D*simid_607995839353850720*thid_OIP.sb82N5yrT-BOcS9wudrRYAHaCx",
+ "insightsMetadata": {"pagesIncludingCount": 6, "availableSizesCount": 4},
+ "imageId": "53513FFBBEDEC4707838800476737194FE35BD7D", "accentColor": "A92236"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=7EE781591D182839A8EF97CFDAFF8568F62AD57C&simid=607998850108164211",
+ "name": "In Photos: Pope Francis Visits the White House | whitehouse.gov",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.f1jG7noWwgjazXQ_lKinNgHaE7&pid=Api",
+ "datePublished": "2015-09-25T16:39:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/email\/PopeFrancisPhoto25Sep23.jpeg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis-visits-white-house",
+ "contentSize": "884856 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis...",
+ "width": 2000, "height": 1333, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_f1jG7noW*mid_7EE781591D182839A8EF97CFDAFF8568F62AD57C*simid_607998850108164211*thid_OIP.f1jG7noWwgjazXQ!_lKinNgHaE7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Pope Francis Visit White House", "displayText": "Pope Francis Visit White
+ House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pope+Francis+Visit+White+House&id=7EE781591D182839A8EF97CFDAFF8568F62AD57C&FORM=IDBQDM"},
+ "pagesIncludingCount": 8, "availableSizesCount": 4}, "imageId": "7EE781591D182839A8EF97CFDAFF8568F62AD57C",
+ "accentColor": "30629B"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0&simid=608022983541325944",
+ "name": "About The White House | The White House", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.LWQexhMC5cbyU43uA7UtRwHaEK&pid=Api",
+ "datePublished": "2017-12-14T22:10:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/IMG_5365-820x461.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/", "contentSize":
+ "76171 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house",
+ "width": 820, "height": 461, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_LWQexhMC*mid_6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0*simid_608022983541325944*thid_OIP.LWQexhMC5cbyU43uA7UtRwHaEK",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House", "displayText": "White House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House&id=6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "6D2D34DDA3F04CE3C814DF518B1B7F1320226FF0",
+ "accentColor": "486337"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=7EE781591D182839A8EF75D8B18B37AF2D8C3AB1&simid=608034622883956890",
+ "name": "In Photos: Pope Francis Visits the White House | whitehouse.gov",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.1GxurjZWSH_u2-OG_NjRHgHaE7&pid=Api",
+ "datePublished": "2015-09-25T16:39:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/email\/PopeFrancisPhoto19Sep23.jpeg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis-visits-white-house",
+ "contentSize": "790323 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/blog\/2015\/09\/25\/photos-pope-francis...",
+ "width": 2000, "height": 1333, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_1GxurjZW*mid_7EE781591D182839A8EF75D8B18B37AF2D8C3AB1*simid_608034622883956890*thid_OIP.1GxurjZWSH!_u2-OG!_NjRHgHaE7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Obama White House Official Photos", "displayText": "Obama White House Official
+ Photos", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Obama+White+House+Official+Photos&id=7EE781591D182839A8EF75D8B18B37AF2D8C3AB1&FORM=IDBQDM"},
+ "pagesIncludingCount": 7, "availableSizesCount": 2}, "imageId": "7EE781591D182839A8EF75D8B18B37AF2D8C3AB1",
+ "accentColor": "286097"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B&simid=608012357837589490",
+ "name": "1600 Daily: Everything White House for 3\/16\/17 | whitehouse.gov",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.V6RUls_b78Nl1kiq_nNY4QHaE8&pid=Api",
+ "datePublished": "2017-03-16T23:36:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/WH-in-snow_0.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600daily", "contentSize": "520446
+ B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/1600daily",
+ "width": 1200, "height": 800, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_V6RUls\/b*mid_27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B*simid_608012357837589490*thid_OIP.V6RUls!_b78Nl1kiq!_nNY4QHaE8",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Snow White House", "displayText": "Snow White House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Snow+White+House&id=27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B&FORM=IDBQDM"},
+ "pagesIncludingCount": 27, "availableSizesCount": 18}, "imageId": "27C02B7CBE052B093BAFA0EBFEDBE32CEA6AC08B",
+ "accentColor": "2F2D21"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC4707838F708FB1688B050A7EF3B&simid=608020410821184914",
+ "name": "The White House", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.MesezdL4dUOLtENtxopvdAAAAA&pid=Api",
+ "datePublished": "2018-07-20T07:55:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/bitmap-1.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/", "contentSize": "13119 B",
+ "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov",
+ "width": 264, "height": 177, "thumbnail": {"width": 264, "height": 177}, "imageInsightsToken":
+ "ccid_MesezdL4*mid_53513FFBBEDEC4707838F708FB1688B050A7EF3B*simid_608020410821184914*thid_OIP.MesezdL4dUOLtENtxopvdAAAAA",
+ "insightsMetadata": {"bestRepresentativeQuery": {"text": "White House", "displayText":
+ "White House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House&id=53513FFBBEDEC4707838F708FB1688B050A7EF3B&FORM=IDBQDM"},
+ "pagesIncludingCount": 7, "availableSizesCount": 1}, "imageId": "53513FFBBEDEC4707838F708FB1688B050A7EF3B",
+ "accentColor": "38485F"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=912E3BEDA73D6B47328B1450A0062EDD692E5D48&simid=608021823905203802",
+ "name": "1600 Daily: Everything White House for 7\/12\/17 | whitehouse.gov",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.9w3XVJ54wDw8e3yuop77fAHaLH&pid=Api",
+ "datePublished": "2017-05-25T12:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/P20170614JB-0671_0.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600daily?utm_source=email&utm_medium=email&utm_content=20170525_ADM_1600-Daily#potd",
+ "contentSize": "2676311 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/1600daily?utm_source=email&utm...", "width":
+ 1365, "height": 2048, "thumbnail": {"width": 474, "height": 711}, "imageInsightsToken":
+ "ccid_9w3XVJ54*mid_912E3BEDA73D6B47328B1450A0062EDD692E5D48*simid_608021823905203802*thid_OIP.9w3XVJ54wDw8e3yuop77fAHaLH",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 9, "availableSizesCount":
+ 5}, "imageId": "912E3BEDA73D6B47328B1450A0062EDD692E5D48", "accentColor":
+ "821520"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC47078388E073E9A0C1B9019C50E&simid=608026827494393630",
+ "name": "Home Page | The White House", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.N9K85hTftxW0ZuFp1J6lKAHaHa&pid=Api",
+ "datePublished": "2017-12-16T22:12:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/12\/cropped-WH.gov_favicon_512X512.png",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/", "contentSize": "10750 B",
+ "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov",
+ "width": 512, "height": 512, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
+ "ccid_N9K85hTf*mid_53513FFBBEDEC47078388E073E9A0C1B9019C50E*simid_608026827494393630*thid_OIP.N9K85hTftxW0ZuFp1J6lKAHaHa",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Government", "displayText": "White House Government", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Government&id=53513FFBBEDEC47078388E073E9A0C1B9019C50E&FORM=IDBQDM"},
+ "pagesIncludingCount": 5, "availableSizesCount": 2}, "imageId": "53513FFBBEDEC47078388E073E9A0C1B9019C50E",
+ "accentColor": "26303E"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=27C02B7CBE052B093BAFD686D3031ECD76E3A6C9&simid=608000997576411221",
+ "name": "1600 Daily: Everything White House for 6\/2\/17 | whitehouse.gov",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.2Us-EQ5d6mP_y99dXci3iQHaE7&pid=Api",
+ "datePublished": "2017-06-02T23:00:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/P20170601JB-0149.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600daily", "contentSize": "554495
+ B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/1600daily",
+ "width": 2048, "height": 1365, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_2Us+EQ5d*mid_27C02B7CBE052B093BAFD686D3031ECD76E3A6C9*simid_608000997576411221*thid_OIP.2Us-EQ5d6mP!_y99dXci3iQHaE7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Trump White House Rose Garden", "displayText": "Trump White House Rose Garden",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Trump+White+House+Rose+Garden&id=27C02B7CBE052B093BAFD686D3031ECD76E3A6C9&FORM=IDBQDM"},
+ "pagesIncludingCount": 12, "availableSizesCount": 11}, "imageId": "27C02B7CBE052B093BAFD686D3031ECD76E3A6C9",
+ "accentColor": "445D87"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=C55479EC564DE9BBCA64CE3B53B2A3C205CA233B&simid=608056007496631360",
+ "name": "The Executive Branch | whitehouse.gov", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.VtTAJ3NJvu3YE83YY_yfawHaDo&pid=Api",
+ "datePublished": "2015-04-13T09:17:00.0000000Z", "contentUrl": "http:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/1600\/page_masthead\/1600_executive_branch.jpg",
+ "hostPageUrl": "http:\/\/www.whitehouse.gov\/1600\/executive-branch", "contentSize":
+ "213283 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "www.whitehouse.gov\/1600\/executive-branch",
+ "width": 800, "height": 393, "thumbnail": {"width": 474, "height": 232}, "imageInsightsToken":
+ "ccid_VtTAJ3NJ*mid_C55479EC564DE9BBCA64CE3B53B2A3C205CA233B*simid_608056007496631360*thid_OIP.VtTAJ3NJvu3YE83YY!_yfawHaDo",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Executive Branch", "displayText": "White House Executive Branch",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Executive+Branch&id=C55479EC564DE9BBCA64CE3B53B2A3C205CA233B&FORM=IDBQDM"},
+ "pagesIncludingCount": 42, "availableSizesCount": 22}, "imageId": "C55479EC564DE9BBCA64CE3B53B2A3C205CA233B",
+ "accentColor": "2665A5"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=968290A392BD3D812ECDDCCFFE214A1560CD4131&simid=607996389100555342",
+ "name": "Eisenhower Executive Office Building | whitehouse.gov", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.EOqp8i1H4pOPfksRI1MWYgHaEL&pid=Api",
+ "datePublished": "2017-12-11T02:08:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/1600\/page_masthead\/1600_eeob.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/1600\/eeob", "contentSize":
+ "283600 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/1600\/eeob",
+ "width": 800, "height": 452, "thumbnail": {"width": 474, "height": 267}, "imageInsightsToken":
+ "ccid_EOqp8i1H*mid_968290A392BD3D812ECDDCCFFE214A1560CD4131*simid_607996389100555342*thid_OIP.EOqp8i1H4pOPfksRI1MWYgHaEL",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Eisenhower Executive Office Building", "displayText": "Eisenhower Executive
+ Office Building", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Eisenhower+Executive+Office+Building&id=968290A392BD3D812ECDDCCFFE214A1560CD4131&FORM=IDBQDM"},
+ "pagesIncludingCount": 41, "availableSizesCount": 12}, "imageId": "968290A392BD3D812ECDDCCFFE214A1560CD4131",
+ "accentColor": "6F6B45"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=CBF50BDF775F36773809C1D0478E1E1FFF13640C&simid=608035224184619370",
+ "name": "President Trump Welcomes Foxconn to the White House for a Major Jobs
+ Announcement", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.g11wYu8BWTjRmwaZzsHQ8wHaE8&pid=Api",
+ "datePublished": "2018-07-05T16:55:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2017\/11\/P20170726SC-0585-820x547.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/articles\/president-trump-welcomes-foxconn-white-house-major-jobs-announcement\/",
+ "contentSize": "135227 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.whitehouse.gov\/articles\/president-trump-welcomes...", "width":
+ 820, "height": 547, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_g11wYu8B*mid_CBF50BDF775F36773809C1D0478E1E1FFF13640C*simid_608035224184619370*thid_OIP.g11wYu8BWTjRmwaZzsHQ8wHaE8",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 4, "availableSizesCount":
+ 2}, "imageId": "CBF50BDF775F36773809C1D0478E1E1FFF13640C", "accentColor":
+ "A26B29"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=53513FFBBEDEC47078383EE286B1B6FA20AFD321&simid=608015746545355058",
+ "name": "The White House | whitehouse.gov", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.2Dlfjd8npEs0tH8GAA2vkAHaD5&pid=Api",
+ "datePublished": "2017-01-13T19:42:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/sites\/whitehouse.gov\/files\/images\/fb_share_postcard.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/", "contentSize": "102901 B",
+ "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov",
+ "width": 1020, "height": 536, "thumbnail": {"width": 474, "height": 249},
+ "imageInsightsToken": "ccid_2Dlfjd8n*mid_53513FFBBEDEC47078383EE286B1B6FA20AFD321*simid_608015746545355058*thid_OIP.2Dlfjd8npEs0tH8GAA2vkAHaD5",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Logo", "displayText": "White House Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Logo&id=53513FFBBEDEC47078383EE286B1B6FA20AFD321&FORM=IDBQDM"},
+ "pagesIncludingCount": 22, "availableSizesCount": 7}, "imageId": "53513FFBBEDEC47078383EE286B1B6FA20AFD321",
+ "accentColor": "00244F"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=white+house+(site%3awhitehouse.gov)&id=B1970B8EC525467AFCF96125A4191A2D33A25F65&simid=608011460159539813",
+ "name": "The White House Easter Egg Roll | The White House", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.O59YBe2g__AwfExPQJwG1QHaFC&pid=Api",
+ "datePublished": "2018-02-07T19:15:00.0000000Z", "contentUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/02\/Easter-Egg-Roll-10-HR2.jpg",
+ "hostPageUrl": "https:\/\/www.whitehouse.gov\/eastereggroll\/", "contentSize":
+ "188543 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/www.whitehouse.gov\/eastereggroll",
+ "width": 1040, "height": 708, "thumbnail": {"width": 474, "height": 322},
+ "imageInsightsToken": "ccid_O59YBe2g*mid_B1970B8EC525467AFCF96125A4191A2D33A25F65*simid_608011460159539813*thid_OIP.O59YBe2g!_!_AwfExPQJwG1QHaFC",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "White House Easter Egg Roll", "displayText": "White House Easter Egg Roll",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Easter+Egg+Roll&id=B1970B8EC525467AFCF96125A4191A2D33A25F65&FORM=IDBQDM"},
+ "pagesIncludingCount": 5, "availableSizesCount": 3}, "imageId": "B1970B8EC525467AFCF96125A4191A2D33A25F65",
+ "accentColor": "6A3E35"}], "queryExpansions": [{"text": "White House Roof",
+ "displayText": "Roof", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Roof&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Roof%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Roof&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Roof%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Roof&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Basement", "displayText": "Basement", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Basement&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Basement%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Basement&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Basement%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Basement&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Inside White House", "displayText": "Inside", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Inside+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Inside%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Inside+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Inside%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Inside+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pink White House", "displayText": "Pink", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pink+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Pink+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Pink+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Red White House", "displayText": "Red", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Red+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Red+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Red+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Black White House", "displayText": "Black", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Black+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Black%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Black+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Black%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Black+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Victorian Houses", "displayText": "Victorian", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+Victorian+Houses&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Victorian%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Victorian+Houses&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Victorian%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+Victorian+Houses&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Gingerbread House", "displayText": "Gingerbread", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Gingerbread+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gingerbread%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Gingerbread+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gingerbread%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Gingerbread+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Christmas", "displayText": "Christmas", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Christmas&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Christmas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Christmas&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Christmas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Christmas&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bathrooms", "displayText": "Bathrooms", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bathrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bathrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Bathrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bathrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Bathrooms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Kitchen", "displayText": "Kitchen", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Kitchen&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Kitchen&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kitchen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Kitchen&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bedrooms", "displayText": "Bedrooms", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bedrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bedrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Bedrooms&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bedrooms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Bedrooms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Stucco House", "displayText": "Stucco", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Stucco+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Stucco%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Stucco+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Stucco%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+Stucco+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Brick House", "displayText": "Brick", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Brick+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Brick%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Brick+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Brick%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+Brick+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Exterior", "displayText": "Exterior", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Exterior&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Exterior%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Exterior&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Exterior%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Exterior&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Down", "displayText": "Down", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Down&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Tours", "displayText": "Tours", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Tours&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tours%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Tours&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tours%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Tours&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Old White House", "displayText": "Old", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Old+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Old%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Old+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Old%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Old+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House China", "displayText": "China", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+China&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22China%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+China&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22China%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+China&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Wallpaper", "displayText": "Wallpaper", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Wallpaper&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wallpaper%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Wallpaper&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wallpaper%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Wallpaper&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Floral White House", "displayText": "Floral", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Floral+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Floral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Floral+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Floral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Floral+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Logo", "displayText": "Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Logo&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Logo&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Little White House", "displayText": "Little", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Little+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Little%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Little+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Little%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Little+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "LEGO White House", "displayText": "LEGO", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=LEGO+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22LEGO%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=LEGO+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22LEGO%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=LEGO+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Lawn", "displayText": "Lawn", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Lawn&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lawn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Lawn&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lawn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Lawn&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Driveway", "displayText": "Driveway", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Driveway&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Driveway%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Driveway&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Driveway%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Driveway&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Tennis Court", "displayText": "Tennis Court", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Tennis+Court&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tennis+Court%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Tennis+Court&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tennis+Court%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Tennis+Court&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Map", "displayText": "Map", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Map&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Map&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Map%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Diagram", "displayText": "Diagram", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Diagram&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Diagram%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Diagram&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Diagram%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Diagram&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Outline", "displayText": "Outline", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Outline&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Outline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Outline&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Outline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Outline&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Night", "displayText": "Night", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Night&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Night%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Night&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Night%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Night&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Coloring Page", "displayText": "Coloring Page", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Coloring+Page&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coloring+Page%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Coloring+Page&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Coloring+Page%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Coloring+Page&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bowling Alley", "displayText": "Bowling Alley", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bowling+Alley&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bowling+Alley%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Bowling+Alley&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bowling+Alley%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Bowling+Alley&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Orange White House", "displayText": "Orange", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Orange+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Orange%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Orange+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Orange%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Orange+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Purple House", "displayText": "Purple", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Purple+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Purple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Purple+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Purple%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+Purple+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Rainbow", "displayText": "Rainbow", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Rainbow&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rainbow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Rainbow&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rainbow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Rainbow&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Snow White House", "displayText": "Snow", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Snow+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Snow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Snow+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Snow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Snow+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Storm", "displayText": "Storm", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Storm&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Storm%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Storm&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Storm%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Storm&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Winter White House", "displayText": "Winter", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Winter+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Winter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Winter+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Winter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Winter+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Obama White House", "displayText": "Obama", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Obama+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Obama%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Obama+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Obama%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Obama+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "white house", "suggestions": [{"text": "Washington
+ Monument", "displayText": "Washington Monument", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Washington+Monument&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington+Monument%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Washington+Monument&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington+Monument%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Washington+Monument&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Statue of Liberty", "displayText": "Statue of Liberty", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Statue+of+Liberty&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statue+of+Liberty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Statue+of+Liberty&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statue+of+Liberty%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Statue+of+Liberty&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "West Wing", "displayText": "West Wing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=West+Wing&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22West+Wing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=West+Wing&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22West+Wing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=West+Wing&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Blair House", "displayText": "Blair House", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Blair+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Blair+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Blair+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Blair+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Blair+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "The Pentagon", "displayText": "The Pentagon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=The+Pentagon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22The+Pentagon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=The+Pentagon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22The+Pentagon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=The+Pentagon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jefferson Memorial", "displayText": "Jefferson Memorial", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Jefferson+Memorial&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jefferson+Memorial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Jefferson+Memorial&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jefferson+Memorial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Jefferson+Memorial&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Mall", "displayText": "National Mall", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=National+Mall&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Mall%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=National+Mall&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Mall%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=National+Mall&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Empire State Building", "displayText": "Empire State Building",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Empire+State+Building&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Empire+State+Building%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Empire+State+Building&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Empire+State+Building%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Empire+State+Building&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Buckingham Palace", "displayText": "Buckingham Palace", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Buckingham+Palace&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Buckingham+Palace%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Buckingham+Palace&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Buckingham+Palace%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Buckingham+Palace&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Capitol Hill", "displayText": "Capitol Hill", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Capitol+Hill&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Capitol+Hill%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Capitol+Hill&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Capitol+Hill%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Capitol+Hill&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Eiffel Tower", "displayText": "Eiffel Tower", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Eiffel+Tower&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Eiffel+Tower%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Eiffel+Tower&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Eiffel+Tower%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Eiffel+Tower&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Grand Canyon", "displayText": "Grand Canyon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Grand+Canyon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Grand+Canyon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Grand+Canyon&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Grand+Canyon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Grand+Canyon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Biltmore Estate", "displayText": "Biltmore Estate", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Biltmore+Estate&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Biltmore+Estate%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Biltmore+Estate&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Biltmore+Estate%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Biltmore+Estate&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Library White House", "displayText": "Library White House", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Library+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+White+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Library+White+House&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+White+House%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Library+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Washington, D C", "displayText": "Washington, D C", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Washington%2c+D+C&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington%2c+D+C%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Washington%2c+D+C&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Washington%2c+D+C%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Washington%2c+D+C&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Down", "displayText": "White House Down", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22White+House+Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Down&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22White+House+Down%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Down&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Library of Congress", "displayText": "Library of Congress", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Library+of+Congress&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+of+Congress%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Library+of+Congress&tq=%7b%22pq%22%3a%22white+house+(site%3awhitehouse.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22white+house%22%2c%22pv%22%3a%22white+house%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3awhitehouse.gov)%22%2c%22pv%22%3a%22(site%3awhitehouse.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Library+of+Congress%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Library+of+Congress&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:whitehouse.gov)", "suggestions": []}], "relatedSearches":
+ [{"text": "White House Washington DC", "displayText": "White House Washington
+ DC", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Washington+DC&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Washington+DC",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Washington+DC&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Inside the White House", "displayText": "Inside the White House",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Inside+the+White+House&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Inside+the+White+House",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Inside+the+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Pool", "displayText": "White House Pool", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Pool&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Pool",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Pool&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Cartoon", "displayText": "White House Cartoon", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Cartoon&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Cartoon",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Cartoon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Floor Plan", "displayText": "White House Floor Plan",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Floor+Plan&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Floor+Plan",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Floor+Plan&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House West Wing", "displayText": "White House West Wing",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+West+Wing&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+West+Wing",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+West+Wing&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Oval Office", "displayText": "Oval Office", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Oval+Office&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Oval+Office",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Oval+Office&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "United States Capitol", "displayText": "United States Capitol",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=United+States+Capitol&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=United+States+Capitol",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=United+States+Capitol&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Lincoln Memorial", "displayText": "Lincoln Memorial", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Lincoln+Memorial&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Lincoln+Memorial",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Lincoln+Memorial&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Washington Monument", "displayText": "Washington Monument", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Washington+Monument&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Washington+Monument",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Washington+Monument&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Capitol Building", "displayText": "Capitol Building", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Capitol+Building&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Capitol+Building",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Capitol+Building&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mount Rushmore National Memorial", "displayText": "Mount Rushmore
+ National Memorial", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mount+Rushmore+National+Memorial&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mount+Rushmore+National+Memorial",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mount+Rushmore+National+Memorial&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bedrooms", "displayText": "White House Bedrooms", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Bedrooms&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Bedrooms",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Bedrooms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Rooms", "displayText": "White House Rooms", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Rooms&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Rooms",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Rooms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House 2018", "displayText": "White House 2018", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+2018&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+2018",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+2018&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House 2017", "displayText": "White House 2017", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+2017&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+2017",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+2017&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Clip Art", "displayText": "White House Clip Art", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Clip+Art&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Clip+Art",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Clip+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Drawing", "displayText": "White House Drawing", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Drawing&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Drawing",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Drawing&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Logo", "displayText": "White House Logo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Logo&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Interior", "displayText": "White House Interior", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Interior&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Interior",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Interior&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Christmas", "displayText": "White House Christmas",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Christmas&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Christmas",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Christmas&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Tennis Court", "displayText": "White House Tennis Court",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Tennis+Court&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Tennis+Court",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Tennis+Court&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Bowling Alley", "displayText": "White House Bowling
+ Alley", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Bowling+Alley&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Bowling+Alley",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Bowling+Alley&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Movie Theater", "displayText": "White House Movie Theater",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Movie+Theater&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Movie+Theater",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Movie+Theater&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Aerial View", "displayText": "White House Aerial View",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Aerial+View&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Aerial+View",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Aerial+View&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Map", "displayText": "White House Map", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Map&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Map",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Old White House", "displayText": "Old White House", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Old+White+House&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Old+White+House",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Old+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House at Night", "displayText": "White House at Night", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+at+Night&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+at+Night",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+at+Night&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Front View", "displayText": "White House Front View",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Front+View&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Front+View",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Front+View&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Tours", "displayText": "White House Tours", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Tours&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Tours",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Tours&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mansion", "displayText": "Mansion", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mansion&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mansion",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Mansion&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Supreme Court Building", "displayText": "Supreme Court Building",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Supreme+Court+Building&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Supreme+Court+Building",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Supreme+Court+Building&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Trump White House", "displayText": "Trump White House", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Trump+White+House&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Trump+White+House",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Trump+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Painted Houses", "displayText": "White Painted Houses", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+Painted+Houses&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Painted+Houses",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+Painted+Houses&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Oval Office", "displayText": "White House Oval Office",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Oval+Office&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Oval+Office",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Oval+Office&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Down", "displayText": "White House Down", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Down&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Down",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Down&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Kitchen", "displayText": "White House Kitchen", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=White+House+Kitchen&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Kitchen",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Kitchen&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Pictures Private Residence", "displayText": "White House
+ Pictures Private Residence", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Pictures+Private+Residence&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Pictures+Private+Residence",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Pictures+Private+Residence&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Homes", "displayText": "White Homes", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Homes&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Homes",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+Homes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Black and White", "displayText": "Black and White", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Black+and+White&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Black+and+White",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Black+and+White&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White Houe", "displayText": "White Houe", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+Houe&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+Houe",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+Houe&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Blue Room", "displayText": "White House Blue Room",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Blue+Room&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Blue+Room",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Blue+Room&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House Black and White", "displayText": "White House Black
+ and White", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+Black+and+White&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+Black+and+White",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Black+and+White&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House China Room", "displayText": "White House China Room",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+China+Room&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+China+Room",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+China+Room&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "White House State Dining Room", "displayText": "White House State
+ Dining Room", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=White+House+State+Dining+Room&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=White+House+State+Dining+Room",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+State+Dining+Room&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Washington DC White House Front", "displayText": "Washington DC
+ White House Front", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Washington+DC+White+House+Front&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Washington+DC+White+House+Front",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Washington+DC+White+House+Front&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}'
+ http_version:
+ recorded_at: Mon, 08 Oct 2018 18:25:35 GMT
+recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/English_search_on_a_legacy_site.yml b/features/vcr_cassettes/Searches_using_mobile_device/English_search_on_a_legacy_site.yml
index e7de54c9eb..a96f220fbe 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/English_search_on_a_legacy_site.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/English_search_on_a_legacy_site.yml
@@ -215,4 +215,231 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:24 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=jobs%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3939'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:55 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=20B8D386221E62951DCDDF2A23C9633E; path=/; expires=Sat, 14-Dec-2019 22:41:55
+ GMT; domain=bingapis.com
+ - MUIDB=20B8D386221E62951DCDDF2A23C9633E; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:55 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:55 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=D78CB1B092E14F038BB6D781668D4121&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:55 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:55
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=06DF5B0B76926EB220CE57A777456F89; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:55 GMT; domain=bingapis.com
+ - _SS=SID=06DF5B0B76926EB220CE57A777456F89; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 7855B571A3C74618803A2A0C0819F631
+ X-Msedge-Clientid:
+ - 20B8D386221E62951DCDDF2A23C9633E
+ X-Msapi-Userstate:
+ - d9b0
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 7855B571A3C74618803A2A0C0819F631 Ref B: CO1EDGE0916 Ref C: 2018-11-19T22:41:55Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5103EE40C01D48469A213519F84FBF01&CID=20B8D386221E62951DCDDF2A23C9633E&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5103EE40C01D48469A213519F84FBF01&CID=20B8D386221E62951DCDDF2A23C9633E&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=jobs+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5407.1", "totalEstimatedMatches": 30000000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Virginia Jobs", "url": "http:\/\/jobs.virginia.gov\/", "urlPingSuffix":
+ "DevEx,5059.1", "about": [{"name": "Virginia"}], "displayUrl": "jobs.virginia.gov",
+ "snippet": "The Commonwealth of Virginia is an Equal Opportunity Employer
+ It is the policy of the Commonwealth of Virginia to prohibit discrimination
+ on the basis of race, sex, color, national origin, religion, sexual orientation,
+ gender identity, age, veteran status, political affiliation, genetics, or
+ disability in the recruitment, selection, and hiring ...", "dateLastCrawled":
+ "2018-11-14T21:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Jobs | Topics - Fairfax County Homepage | Fairfax County",
+ "url": "https:\/\/www.fairfaxcounty.gov\/topics\/jobs", "urlPingSuffix": "DevEx,5072.1",
+ "about": [{"name": "Fairfax County"}], "displayUrl": "https:\/\/www.fairfaxcounty.gov\/topics\/jobs",
+ "snippet": "Fairfax County, Virginia - Look and apply for a job with Fairfax
+ Count Government. Serve your community as a public servant in many ways.",
+ "dateLastCrawled": "2018-11-12T04:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "USAJOBS - The Federal Government''s Official Jobs Site", "url":
+ "https:\/\/www.usajobs.gov\/", "urlPingSuffix": "DevEx,5085.1", "about": [{"name":
+ "USAJOBS"}, {"name": "USAJOBS"}], "displayUrl": "https:\/\/www.usajobs.gov",
+ "snippet": "USAJOBS is the Federal Government''s official one-stop source
+ for Federal jobs and employment information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "NC.gov:
+ Jobs", "url": "https:\/\/www.nc.gov\/jobs", "urlPingSuffix": "DevEx,5099.1",
+ "about": [{"name": "North Carolina"}], "displayUrl": "https:\/\/www.nc.gov\/jobs",
+ "snippet": "Careers within the State of North Carolina include public safety,
+ education, transportation, and health care. State employees located in each
+ one of the 100 counties in North Carolina. We also have listings for jobs
+ in the local school system, and jobs in the private sector that are in our
+ Employment Security database.", "dateLastCrawled": "2018-11-15T22:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "jobs.utah.gov
+ - Department of Workforce Services", "url": "https:\/\/jobs.utah.gov\/", "urlPingSuffix":
+ "DevEx,5111.1", "displayUrl": "https:\/\/jobs.utah.gov", "snippet": "The
+ Department of Workforce Services strengthens Utah''s communities by supporting
+ the economic stability and quality of our workforce.", "dateLastCrawled":
+ "2018-11-16T02:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Jobs Home | City of New York", "url": "https:\/\/www1.nyc.gov\/jobs\/index.page",
+ "urlPingSuffix": "DevEx,5123.1", "about": [{"name": "New York"}], "displayUrl":
+ "https:\/\/www1.nyc.gov\/jobs\/index.page", "snippet": "Jobs ; Jobs
+ Home Get Started Explore Careers. Find a job in New York City government:
+ Search Search. Login or Create an Account. City Employee Login. Make a difference.
+ City government is filled with opportunities for talented people who want
+ to improve their communities and make an important difference in the lives
+ of their fellow New Yorkers.", "dateLastCrawled": "2018-11-16T08:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "2020 Census
+ Jobs", "url": "https:\/\/2020census.gov\/jobs", "urlPingSuffix": "DevEx,5136.1",
+ "displayUrl": "https:\/\/2020census.gov\/jobs", "snippet": "We are hiring
+ for a variety of temporary jobs, including census takers, recruiting assistants,
+ office staff, and supervisory staff. To be eligible, you must be at least
+ 18 years old, have a valid Social Security number, and be a U.S. citizen.",
+ "dateLastCrawled": "2018-11-09T15:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Jobs - Federal Aviation Administration", "url": "https:\/\/www.faa.gov\/jobs\/",
+ "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "Federal Aviation Administration"}],
+ "displayUrl": "https:\/\/www.faa.gov\/jobs", "snippet": "Take control
+ of your career. The FAA has many opportunities for you to contribute to our
+ safe and efficient skies. Below is a sample of possible career fields:", "dateLastCrawled":
+ "2018-11-16T09:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "NJDEP-Employment Opportunities", "url": "https:\/\/www.nj.gov\/dep\/jobs\/",
+ "urlPingSuffix": "DevEx,5161.1", "about": [{"name": "New Jersey Department
+ of Environmental Protection"}], "displayUrl": "https:\/\/www.nj.gov\/dep\/jobs",
+ "snippet": "Government Jobs can also be found on the Civil Service Commission
+ Home Page. New Jersey Residency Requirements All employees of State and local
+ government must reside in the State of New Jersey, unless exempted under the
+ law.", "dateLastCrawled": "2018-11-13T21:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "myCase - Home", "url": "https:\/\/jobs.utah.gov\/mycase\/", "urlPingSuffix":
+ "DevEx,5175.1", "displayUrl": "https:\/\/jobs.utah.gov\/mycase", "snippet":
+ "jobs main content Starting November 1, 2018 through December 15, 2018 ...
+ Do I log into myCase with the same ID\/password information that I use when
+ I log in for Unemployment or to search for employment? Yes. Use your UtahID
+ information to login. Will myCase share information with Google, Yahoo,
+ Facebook or any other sites?", "dateLastCrawled": "2018-11-12T16:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Job
+ Search Results", "url": "https:\/\/jobs.ca.gov\/CalHRPublic\/Search\/JobSearchResults.aspx",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/jobs.ca.gov\/CalHRPublic\/Search\/JobSearchResults.aspx",
+ "snippet": "System Updates - CalCareers: CalCareers will be offline for maintenance
+ on Tuesday, November 13th, 2018 between 4:30PM - 9:30PM. The Office Technician
+ exam will be offline from 3:30PM - 9:30PM. Thank you for your cooperation.",
+ "dateLastCrawled": "2018-11-15T12:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "CalCareers", "url": "https:\/\/jobs.ca.gov\/", "urlPingSuffix": "DevEx,5202.1",
+ "about": [{"name": "JobsMoGov"}], "displayUrl": "https:\/\/jobs.ca.gov",
+ "snippet": "The State of California offers a wide variety of careers and
+ jobs, ranging from accounting to zoology. The services our employees provide
+ are truly essential to the people of California. In public service, you
+ will spend every day doing work that is vital to your state and your community.",
+ "dateLastCrawled": "2018-11-16T07:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Careers.ohio.gov", "url": "http:\/\/careers.ohio.gov\/", "urlPingSuffix":
+ "DevEx,5215.1", "about": [{"name": "Ohio"}], "displayUrl": "careers.ohio.gov",
+ "snippet": "The State of Ohio transitioned to a new applicant tracking system
+ to post jobs and receive applications. Job seekers will continue to have
+ access to view their existing profile\/account at governmentjobs.com. This
+ includes application status information and any correspondences sent concerning
+ applications submitted prior to April 6, 2018.", "dateLastCrawled": "2018-11-15T04:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Careers
+ | US EPA", "url": "https:\/\/www.epa.gov\/careers", "urlPingSuffix": "DevEx,5226.1",
+ "displayUrl": "https:\/\/www.epa.gov\/careers", "snippet": "Find out more
+ information on the special hiring authority for Individuals with disabilities,
+ Schedule A, as well as all EPA jobs currently open. Attorneys at EPA work
+ on cutting-edge legal issues. Learn more about our legal offices and law career
+ opportunities , and about opportunities for law school grads .", "dateLastCrawled":
+ "2018-11-05T14:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Jobs | Communications & Public Information | City of ...", "url":
+ "https:\/\/www.alexandriava.gov\/Jobs", "urlPingSuffix": "DevEx,5240.1", "about":
+ [{"name": "Alexandria"}], "displayUrl": "https:\/\/www.alexandriava.gov\/Jobs",
+ "snippet": "Jobs Alexandria offers wide range of job opportunities and services.
+ Work for City government or City Public Schools, find out about an internship
+ opportunity or learn about workforce development and career training options.",
+ "dateLastCrawled": "2018-11-12T15:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5256.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "FBIJOBS", "url": "https:\/\/www.fbijobs.gov\/", "urlPingSuffix":
+ "DevEx,5270.1", "about": [{"name": "Federal Bureau of Investigation"}, {"name":
+ "Federal Bureau of Investigation"}], "displayUrl": "https:\/\/www.fbijobs.gov",
+ "snippet": "FBIJOBS.GOV is an official site of the U.S. Government, U.S.
+ Department of Justice FBI is a partner with the U.S. Intelligence Community
+ Federal Bureau of Investigation.", "dateLastCrawled": "2018-11-16T13:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Jobs
+ & Careers at TPWD - Texas Parks & Wildlife Department", "url": "https:\/\/tpwd.texas.gov\/jobs\/",
+ "urlPingSuffix": "DevEx,5284.1", "about": [{"name": "Texas Parks and Wildlife
+ Department"}], "displayUrl": "https:\/\/tpwd.texas.gov\/jobs", "snippet":
+ "Veteran Hiring at TPWD. Texas state law requires agencies to give veterans,
+ surviving spouses of veterans, and orphans of veterans preference in the selection
+ process when candidates are similarly qualified.", "dateLastCrawled": "2018-11-11T09:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Careers
+ at VA - U.S. Department of Veterans Affairs", "url": "https:\/\/www.va.gov\/jobs\/",
+ "urlPingSuffix": "DevEx,5296.1", "about": [{"name": "United States Department
+ of Veterans Affairs"}], "displayUrl": "https:\/\/www.va.gov\/jobs", "snippet":
+ "The Department of Veterans Affairs is committed to adding and retaining Veterans
+ to our workforce. Whether you are a vet interested at working at VA or you''re
+ a Vet that already works here - VA for Vets will have something for you to
+ find and advance your dream career.", "dateLastCrawled": "2018-11-16T10:24:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "USAJobs",
+ "url": "https:\/\/login.usajobs.gov\/", "urlPingSuffix": "DevEx,5309.1", "about":
+ [{"name": "USAJOBS"}], "displayUrl": "https:\/\/login.usajobs.gov", "snippet":
+ "USAJobs", "dateLastCrawled": "2018-11-15T18:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:55 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Image_search_with_spelling_suggestion.yml b/features/vcr_cassettes/Searches_using_mobile_device/Image_search_with_spelling_suggestion.yml
new file mode 100644
index 0000000000..6d3ce70d42
--- /dev/null
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Image_search_with_spelling_suggestion.yml
@@ -0,0 +1,405 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=20&mkt=en-US&offset=0&q=ebuy%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '68294'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 8023AE354C694E37A7E8D3D265DCF3CD
+ X-Msedge-Clientid:
+ - 389EA41A09346BA4227AA89808786A1E
+ X-Msapi-Userstate:
+ - b387
+ X-Search-Responseinfo:
+ - InternalResponseTime=218,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 8023AE354C694E37A7E8D3D265DCF3CD Ref B: BY3EDGE0414 Ref C: 2018-10-08T18:25:37Z'
+ Apim-Request-Id:
+ - a6ed43cc-e3b5-4feb-8f9b-73f7eefa0d42
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 08 Oct 2018 18:25:37 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"_type": "ResponseInstrumentation"},
+ "readLink": "images\/search?q=ebuy (site:gov OR site:mil)", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=ebuy (site:gov OR site:mil)&FORM=OIIARP",
+ "totalEstimatedMatches": 100, "nextOffset": 21, "value": [{"webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=764085BE6AA85BD08F79EEEACA81DA18FBDE83F7&simid=608022549749305014",
+ "name": "eBuy Mobile Login| A GSA Advantage!® Application", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.JEXGrwt87UUUt7oj_4CJmwAAAA&pid=Api",
+ "datePublished": "2013-03-15T13:57:00.0000000Z", "contentUrl": "https:\/\/www.ebuy.gsa.gov\/mobile\/images\/logo.png",
+ "hostPageUrl": "https:\/\/www.ebuy.gsa.gov\/mobile\/login", "contentSize":
+ "2222 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/www.ebuy.gsa.gov\/mobile\/login",
+ "width": 112, "height": 35, "thumbnail": {"width": 112, "height": 35}, "imageInsightsToken":
+ "ccid_JEXGrwt8*mid_764085BE6AA85BD08F79EEEACA81DA18FBDE83F7*simid_608022549749305014*thid_OIP.JEXGrwt87UUUt7oj!_4CJmwAAAA",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "GSA Advantage Logo", "displayText": "GSA Advantage Logo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=GSA+Advantage+Logo&id=764085BE6AA85BD08F79EEEACA81DA18FBDE83F7&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "764085BE6AA85BD08F79EEEACA81DA18FBDE83F7",
+ "accentColor": "033365"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=FBEBD860827FD0E690A5AFC9DA32F200C1A79D80&simid=608007122209276513",
+ "name": "GSS Scientific Catalog Moving to eBuy Marketplace", "thumbnailUrl":
+ "https:\/\/tse4.mm.bing.net\/th?id=OIP.f-YOnOpkGA1xFcb9jF7eLwAAAA&pid=Api",
+ "datePublished": "2015-11-06T12:00:00.0000000Z", "contentUrl": "http:\/\/2h963i3oa54o1nc84a14ihzo.wpengine.netdna-cdn.com\/wp-content\/uploads\/sites\/3\/2015\/08\/1340eBuy_logo-300x192.jpg",
+ "hostPageUrl": "http:\/\/today.lbl.gov\/2015\/11\/06\/gss-scientific-catalog-moving-to-ebuy-marketplace\/",
+ "contentSize": "15659 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "today.lbl.gov\/2015\/11\/06\/gss-scientific-catalog-moving-to-ebuy...", "width":
+ 300, "height": 192, "thumbnail": {"width": 300, "height": 192}, "imageInsightsToken":
+ "ccid_f+YOnOpk*mid_FBEBD860827FD0E690A5AFC9DA32F200C1A79D80*simid_608007122209276513*thid_OIP.f-YOnOpkGA1xFcb9jF7eLwAAAA",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Berkeley Lab Logo", "displayText": "Berkeley Lab Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Berkeley+Lab+Logo&id=FBEBD860827FD0E690A5AFC9DA32F200C1A79D80&FORM=IDBQDM"},
+ "pagesIncludingCount": 3, "availableSizesCount": 2}, "imageId": "FBEBD860827FD0E690A5AFC9DA32F200C1A79D80",
+ "accentColor": "054363"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=2003248F7DC45158B461CC6D67B07F641A257C03&simid=608029709415416736",
+ "name": "eBuy", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.oNsHaDchex9JKpA7FjOaQAHaBQ&pid=Api",
+ "datePublished": "2013-12-09T09:26:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/09\/log_into_ebuy.png",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/",
+ "contentSize": "9670 B", "encodingFormat": "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 539, "height": 92, "thumbnail": {"width": 474, "height": 80}, "imageInsightsToken":
+ "ccid_oNsHaDch*mid_2003248F7DC45158B461CC6D67B07F641A257C03*simid_608029709415416736*thid_OIP.oNsHaDchex9JKpA7FjOaQAHaBQ",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "2003248F7DC45158B461CC6D67B07F641A257C03", "accentColor": "084363"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=D755F20EC02D69649F525D144B27FFD476316A8F&simid=608028317836707870",
+ "name": "RFQ | Interact", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.qTu4IX4WvIJNrxBBZNWecQHaEh&pid=Api",
+ "datePublished": "2012-12-24T21:12:00.0000000Z", "contentUrl": "https:\/\/interact.gsa.gov\/sites\/default\/files\/img_3.png",
+ "hostPageUrl": "https:\/\/interact.gsa.gov\/tag\/rfq", "contentSize": "101683
+ B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/interact.gsa.gov\/tag\/rfq",
+ "width": 596, "height": 364, "thumbnail": {"width": 474, "height": 289}, "imageInsightsToken":
+ "ccid_qTu4IX4W*mid_D755F20EC02D69649F525D144B27FFD476316A8F*simid_608028317836707870*thid_OIP.qTu4IX4WvIJNrxBBZNWecQHaEh",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "GSA Small Business Set Aside", "displayText": "GSA Small Business Set Aside",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=GSA+Small+Business+Set+Aside&id=D755F20EC02D69649F525D144B27FFD476316A8F&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "D755F20EC02D69649F525D144B27FFD476316A8F",
+ "accentColor": "076497"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=76BE68A253BBCBD8726F09D8CB0E65CEBE87AC95&simid=608004360561954071",
+ "name": "Training for eBuy Users", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.PkE2X6VSTH5CUUnp8lu4PQAAAA&pid=Api",
+ "datePublished": "2014-07-25T16:46:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/09\/ebuy-1.png",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-training-for-ebuy-users\/",
+ "contentSize": "4255 B", "encodingFormat": "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 179, "height": 212, "thumbnail": {"width": 179, "height": 212}, "imageInsightsToken":
+ "ccid_PkE2X6VS*mid_76BE68A253BBCBD8726F09D8CB0E65CEBE87AC95*simid_608004360561954071*thid_OIP.PkE2X6VSTH5CUUnp8lu4PQAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "76BE68A253BBCBD8726F09D8CB0E65CEBE87AC95", "accentColor": "9F722C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=76BE68A253BBCBD8726FB4C2902890AE602E364A&simid=608002586717195277",
+ "name": "Training for eBuy Users", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.SYYvHPbWR80qphe16zOQWwAAAA&pid=Api",
+ "datePublished": "2014-07-25T16:46:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/09\/ebuy-3.png",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-training-for-ebuy-users\/",
+ "contentSize": "5205 B", "encodingFormat": "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 189, "height": 226, "thumbnail": {"width": 189, "height": 226}, "imageInsightsToken":
+ "ccid_SYYvHPbW*mid_76BE68A253BBCBD8726FB4C2902890AE602E364A*simid_608002586717195277*thid_OIP.SYYvHPbWR80qphe16zOQWwAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "76BE68A253BBCBD8726FB4C2902890AE602E364A", "accentColor": "0F3F5E"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=D755F20EC02D69649F52FF258DD1405738A2D8FA&simid=608014007102342145",
+ "name": "RFQ | Interact", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.Ps4k8PA9EhlCpV3nY9L_5wHaCE&pid=Api",
+ "datePublished": "2012-12-24T21:12:00.0000000Z", "contentUrl": "https:\/\/interact.gsa.gov\/sites\/default\/files\/img2.png",
+ "hostPageUrl": "https:\/\/interact.gsa.gov\/tag\/rfq", "contentSize": "6241
+ B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/interact.gsa.gov\/tag\/rfq",
+ "width": 570, "height": 159, "thumbnail": {"width": 474, "height": 132}, "imageInsightsToken":
+ "ccid_Ps4k8PA9*mid_D755F20EC02D69649F52FF258DD1405738A2D8FA*simid_608014007102342145*thid_OIP.Ps4k8PA9EhlCpV3nY9L!_5wHaCE",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 1, "availableSizesCount":
+ 1}, "imageId": "D755F20EC02D69649F52FF258DD1405738A2D8FA", "accentColor":
+ "082068"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=E7877A3E4227D2A3141685D5B684039C3B68A3DA&simid=607989469899917432",
+ "name": "eBuy is “Set-Aside†Ready! | Interact", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.yKRYoAqizoq47u4Be4L_jQHaGV&pid=Api",
+ "datePublished": "2018-07-10T05:43:00.0000000Z", "contentUrl": "https:\/\/interact.gsa.gov\/sites\/default\/files\/img_4.png",
+ "hostPageUrl": "https:\/\/interact.gsa.gov\/blog\/ebuy-%E2%80%9Cset-aside%E2%80%9D-ready",
+ "contentSize": "135049 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "https:\/\/interact.gsa.gov\/blog\/ebuy-“set-aside”-ready", "width": 579,
+ "height": 495, "thumbnail": {"width": 474, "height": 405}, "imageInsightsToken":
+ "ccid_yKRYoAqi*mid_E7877A3E4227D2A3141685D5B684039C3B68A3DA*simid_607989469899917432*thid_OIP.yKRYoAqizoq47u4Be4L!_jQHaGV",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "GSA Small Business Set Aside", "displayText": "GSA Small Business Set Aside",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=GSA+Small+Business+Set+Aside&id=E7877A3E4227D2A3141685D5B684039C3B68A3DA&FORM=IDBQDM"},
+ "pagesIncludingCount": 2, "availableSizesCount": 1}, "imageId": "E7877A3E4227D2A3141685D5B684039C3B68A3DA",
+ "accentColor": "1C3F6A"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=9C01D4DCBCD8585C11D5960F85F27E51563802D4&simid=608019268361978545",
+ "name": "eBuy Returns Center", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.fb3hUJAJm1kPoJ26wd-BfgAAAA&pid=Api",
+ "datePublished": "2018-07-17T20:30:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/10\/returns_step2.png",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-returns\/",
+ "contentSize": "8595 B", "encodingFormat": "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 181, "height": 221, "thumbnail": {"width": 181, "height": 221}, "imageInsightsToken":
+ "ccid_fb3hUJAJ*mid_9C01D4DCBCD8585C11D5960F85F27E51563802D4*simid_608019268361978545*thid_OIP.fb3hUJAJm1kPoJ26wd-BfgAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "9C01D4DCBCD8585C11D5960F85F27E51563802D4", "accentColor": "A22967"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=639D25169E889BC189D8F868FA705DE32EE625BE&simid=607989259458970597",
+ "name": "GSS Scientific Catalog Moved to the eBuy Marketplace", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.ttoWR5Yy-WxjqQd76JV6PAAAAA&pid=Api",
+ "datePublished": "2015-10-22T12:00:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2015\/10\/Screen-Shot-2015-10-19-at-1.25.00-PM.png",
+ "hostPageUrl": "https:\/\/procurement.lbl.gov\/2015\/10\/22\/gss-scientific-catalog-moving-to-the-ebuy-marketplace\/",
+ "contentSize": "75932 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/procurement.lbl.gov\/2015\/10\/22\/gss-scientific-catalog...",
+ "width": 400, "height": 258, "thumbnail": {"width": 400, "height": 258}, "imageInsightsToken":
+ "ccid_ttoWR5Yy*mid_639D25169E889BC189D8F868FA705DE32EE625BE*simid_607989259458970597*thid_OIP.ttoWR5Yy-WxjqQd76JV6PAAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "639D25169E889BC189D8F868FA705DE32EE625BE", "accentColor": "11933A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=D755F20EC02D69649F52DC6CEFADB8B0B60D167C&simid=608019092268256586",
+ "name": "RFQ | Interact", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.lphsa25YDbQQCmxPBjo7VAHaBT&pid=Api",
+ "datePublished": "2012-12-24T21:12:00.0000000Z", "contentUrl": "https:\/\/interact.gsa.gov\/sites\/default\/files\/img1.png",
+ "hostPageUrl": "https:\/\/interact.gsa.gov\/tag\/rfq", "contentSize": "17473
+ B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/interact.gsa.gov\/tag\/rfq",
+ "width": 628, "height": 110, "thumbnail": {"width": 474, "height": 83}, "imageInsightsToken":
+ "ccid_lphsa25Y*mid_D755F20EC02D69649F52DC6CEFADB8B0B60D167C*simid_608019092268256586*thid_OIP.lphsa25YDbQQCmxPBjo7VAHaBT",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "D755F20EC02D69649F52DC6CEFADB8B0B60D167C", "accentColor": "A27A29"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=9C01D4DCBCD8585C11D5A639C0E39F26469F14AA&simid=608002371968307027",
+ "name": "eBuy Returns Center", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.jqo7P9RM2vKnT8-Razu-iwAAAA&pid=Api",
+ "datePublished": "2018-07-17T20:30:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/10\/returns_step4-new.png",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-returns\/",
+ "contentSize": "6966 B", "encodingFormat": "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 179, "height": 217, "thumbnail": {"width": 179, "height": 217}, "imageInsightsToken":
+ "ccid_jqo7P9RM*mid_9C01D4DCBCD8585C11D5A639C0E39F26469F14AA*simid_608002371968307027*thid_OIP.jqo7P9RM2vKnT8-Razu-iwAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "9C01D4DCBCD8585C11D5A639C0E39F26469F14AA", "accentColor": "738249"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=10F2B378490D9DD221154757628E448ED17CC219&simid=608026990694304469",
+ "name": "How to Set a Default Project and Activity Value at Checkout", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.qgx086cg4HVeLVjCCwGFAwHaEw&pid=Api",
+ "datePublished": "2017-07-06T12:00:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2017\/07\/Screen-shot-3.jpg",
+ "hostPageUrl": "https:\/\/procurement.lbl.gov\/2017\/07\/06\/how-to-set-a-default-project-and-activity-id-value-at-checkout\/",
+ "contentSize": "51714 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/procurement.lbl.gov\/2017\/07\/06\/how-to-set-a-default-project...",
+ "width": 880, "height": 566, "thumbnail": {"width": 474, "height": 304}, "imageInsightsToken":
+ "ccid_qgx086cg*mid_10F2B378490D9DD221154757628E448ED17CC219*simid_608026990694304469*thid_OIP.qgx086cg4HVeLVjCCwGFAwHaEw",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "10F2B378490D9DD221154757628E448ED17CC219", "accentColor": "855146"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=01A6B4C8A872AC015A9714B7941CFE5E8C33C9CA&simid=608048482766294789",
+ "name": "Make a Purchase", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.Fe2Q4StFkwayrh9-0G1pUAHaBt&pid=Api",
+ "datePublished": "2018-07-17T20:23:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2015\/10\/pcard_makeapurchase4.jpg",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/",
+ "contentSize": "48189 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase", "width":
+ 682, "height": 157, "thumbnail": {"width": 474, "height": 109}, "imageInsightsToken":
+ "ccid_Fe2Q4StF*mid_01A6B4C8A872AC015A9714B7941CFE5E8C33C9CA*simid_608048482766294789*thid_OIP.Fe2Q4StFkwayrh9-0G1pUAHaBt",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "01A6B4C8A872AC015A9714B7941CFE5E8C33C9CA", "accentColor": "947037"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=9C01D4DCBCD8585C11D545CB95AD0524FD7EA239&simid=608050299521206513",
+ "name": "eBuy Returns Center", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.BtPS-lTGVDJwTXrjoN6OiwAAAA&pid=Api",
+ "datePublished": "2018-07-17T20:30:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2013\/10\/returns_step3-new.png",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase\/ebuy\/ebuy-returns\/",
+ "contentSize": "6508 B", "encodingFormat": "png", "hostPageDisplayUrl": "procurement.lbl.gov\/welcome-to-procurement-property\/make-a-purchase...",
+ "width": 184, "height": 217, "thumbnail": {"width": 184, "height": 217}, "imageInsightsToken":
+ "ccid_BtPS+lTG*mid_9C01D4DCBCD8585C11D545CB95AD0524FD7EA239*simid_608050299521206513*thid_OIP.BtPS-lTGVDJwTXrjoN6OiwAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "9C01D4DCBCD8585C11D545CB95AD0524FD7EA239", "accentColor": "9B7330"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=BBCA9F280F2C28ED68B69AEEE8F5637A492FD839&simid=608008831627887313",
+ "name": "Enhanced Project and Activity Copy Down Feature is Now Available
+ in eBuy", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.o4-mF2HV4nYlAEULLq8HNgHaHb&pid=Api",
+ "datePublished": "2017-03-22T12:00:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2017\/03\/Feedback-Thank-You.jpg",
+ "hostPageUrl": "http:\/\/procurement.lbl.gov\/2017\/03\/22\/enhanced-project-and-activity-copy-down-feature-is-now-available-in-ebuy\/",
+ "contentSize": "55542 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "procurement.lbl.gov\/2017\/03\/22\/enhanced-project-and-activity-copy...",
+ "width": 760, "height": 763, "thumbnail": {"width": 474, "height": 475}, "imageInsightsToken":
+ "ccid_o4+mF2HV*mid_BBCA9F280F2C28ED68B69AEEE8F5637A492FD839*simid_608008831627887313*thid_OIP.o4-mF2HV4nYlAEULLq8HNgHaHb",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Thank You for Your Feedback", "displayText": "Thank You for Your Feedback",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Thank+You+for+Your+Feedback&id=BBCA9F280F2C28ED68B69AEEE8F5637A492FD839&FORM=IDBQDM"},
+ "pagesIncludingCount": 2, "availableSizesCount": 1}, "imageId": "BBCA9F280F2C28ED68B69AEEE8F5637A492FD839",
+ "accentColor": "885A43"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=1366B3DD675423FA0A1D8165CC3484B039618F2F&simid=608054538609951442",
+ "name": "Sources For LOTO Supplies in eBuy - Electrical Safety", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.6JZrPzh5nbIwp1OuSWd1_wHaGq&pid=Api",
+ "datePublished": "2018-07-02T19:29:00.0000000Z", "contentUrl": "http:\/\/electricalsafety.lblops.wpengine.com\/wp-content\/uploads\/sites\/12\/2014\/12\/Do-Not-Operate-Tag-300x270.jpg",
+ "hostPageUrl": "https:\/\/electricalsafety.lbl.gov\/loto\/need-loto-supplies\/",
+ "contentSize": "51817 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/electricalsafety.lbl.gov\/loto\/need-loto-supplies", "width": 300,
+ "height": 270, "thumbnail": {"width": 300, "height": 270}, "imageInsightsToken":
+ "ccid_6JZrPzh5*mid_1366B3DD675423FA0A1D8165CC3484B039618F2F*simid_608054538609951442*thid_OIP.6JZrPzh5nbIwp1OuSWd1!_wHaGq",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Loto Danger Do Not Operate Tags", "displayText": "Loto Danger Do Not Operate
+ Tags", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Loto+Danger+Do+Not+Operate+Tags&id=1366B3DD675423FA0A1D8165CC3484B039618F2F&FORM=IDBQDM"},
+ "pagesIncludingCount": 4, "availableSizesCount": 3}, "imageId": "1366B3DD675423FA0A1D8165CC3484B039618F2F",
+ "accentColor": "B92312"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=0C0B6499128CE53872836689A65CE223B8ABBDEC&simid=608050114848949337",
+ "name": "New – GSS Order Tracking Tool", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.-7grdBk7XavlM3Cn-x_KGwHaD9&pid=Api",
+ "datePublished": "2017-06-05T12:00:00.0000000Z", "contentUrl": "http:\/\/procurement.lbl.gov\/wp-content\/uploads\/sites\/4\/2017\/05\/2017-05-23_10-06-13.jpg",
+ "hostPageUrl": "https:\/\/procurement.lbl.gov\/2017\/06\/05\/2634\/", "contentSize":
+ "59465 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "https:\/\/procurement.lbl.gov\/2017\/06\/05\/2634",
+ "width": 602, "height": 322, "thumbnail": {"width": 474, "height": 253}, "imageInsightsToken":
+ "ccid_+7grdBk7*mid_0C0B6499128CE53872836689A65CE223B8ABBDEC*simid_608050114848949337*thid_OIP.-7grdBk7XavlM3Cn-x!_KGwHaD9",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 2},
+ "imageId": "0C0B6499128CE53872836689A65CE223B8ABBDEC", "accentColor": "B51B16"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=DBD1A46FFF4995C4D3D3AAEF581E8CF7DB7850B1&simid=608030078811701331",
+ "name": "Supplies Inventory", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.EVvtdIgCky7GDHIe83-W3wHaFa&pid=Api",
+ "datePublished": "2018-07-15T08:44:00.0000000Z", "contentUrl": "https:\/\/amps.usps.gov\/Uj9uHu3h9U3H\/Equip_Supplies\/Supplies\/Supplies_Inventory_Report.png",
+ "hostPageUrl": "https:\/\/amps.usps.gov\/Uj9uHu3h9U3H\/Equip_Supplies\/Supplies\/supplies_inventory.htm",
+ "contentSize": "56416 B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/amps.usps.gov\/Uj9uHu3h9U3H\/Equip_Supplies\/Supplies\/supplies...",
+ "width": 835, "height": 610, "thumbnail": {"width": 474, "height": 346}, "imageInsightsToken":
+ "ccid_EVvtdIgC*mid_DBD1A46FFF4995C4D3D3AAEF581E8CF7DB7850B1*simid_608030078811701331*thid_OIP.EVvtdIgCky7GDHIe83-W3wHaFa",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Record Supply PS Form 1586", "displayText": "Record Supply PS Form 1586",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Record+Supply+PS+Form+1586&id=DBD1A46FFF4995C4D3D3AAEF581E8CF7DB7850B1&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "DBD1A46FFF4995C4D3D3AAEF581E8CF7DB7850B1",
+ "accentColor": "2F729C"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=ebuy+(site%3agov+OR+site%3amil)&id=74A199296E1D53E21991DB6FE0E140F774F836CE&simid=607999631792604846",
+ "name": "GSA Vendor Support Center", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.XxgZI8g6mt2ACBAOI3cxEQHaDZ&pid=Api",
+ "datePublished": "2010-02-05T08:34:00.0000000Z", "contentUrl": "https:\/\/vsc.gsa.gov\/images\/slide3-revA.png",
+ "hostPageUrl": "https:\/\/vsc.gsa.gov\/index.cfm", "contentSize": "220959
+ B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/vsc.gsa.gov\/index.cfm",
+ "width": 870, "height": 400, "thumbnail": {"width": 474, "height": 217}, "imageInsightsToken":
+ "ccid_XxgZI8g6*mid_74A199296E1D53E21991DB6FE0E140F774F836CE*simid_607999631792604846*thid_OIP.XxgZI8g6mt2ACBAOI3cxEQHaDZ",
+ "insightsMetadata": {"pagesIncludingCount": 3, "availableSizesCount": 1},
+ "imageId": "74A199296E1D53E21991DB6FE0E140F774F836CE", "accentColor": "354D63"}],
+ "queryExpansions": [{"text": "GSA eBuy", "displayText": "GSA", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=GSA+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22GSA%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=GSA+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22GSA%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=GSA+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ebuys Shoes", "displayText": "Shoes", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ebuys+Shoes&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shoes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ebuys+Shoes&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Shoes%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Ebuys+Shoes&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ebuys Logo", "displayText": "Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ebuys+Logo&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ebuys+Logo&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Logo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Ebuys+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Marlboro Unlimited eBuy", "displayText": "Marlboro Unlimited", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Marlboro+Unlimited+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Marlboro+Unlimited%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Marlboro+Unlimited+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Marlboro+Unlimited%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Marlboro+Unlimited+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy PSU", "displayText": "PSU", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+PSU&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22PSU%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+PSU&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22PSU%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBuy+PSU&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Sample", "displayText": "Sample", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+Sample&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sample%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Sample&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sample%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBuy+Sample&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ariba eBuy", "displayText": "Ariba", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ariba+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ariba%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ariba+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ariba%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Ariba+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Supergum eBuy", "displayText": "Supergum", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Supergum+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Supergum%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Supergum+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Supergum%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Supergum+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy HDMI Cable", "displayText": "HDMI Cable", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+HDMI+Cable&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22HDMI+Cable%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+HDMI+Cable&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22HDMI+Cable%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBuy+HDMI+Cable&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "ACR eBuy", "displayText": "ACR", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=ACR+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22ACR%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=ACR+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22ACR%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=ACR+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy iPhone 7", "displayText": "iPhone 7", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+iPhone+7&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22iPhone+7%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+iPhone+7&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22iPhone+7%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBuy+iPhone+7&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Plastic Bin", "displayText": "Plastic Bin", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+Plastic+Bin&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Plastic+Bin%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Plastic+Bin&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Plastic+Bin%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBuy+Plastic+Bin&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy RFQ Example", "displayText": "RFQ Example", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+RFQ+Example&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22RFQ+Example%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+RFQ+Example&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22RFQ+Example%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBuy+RFQ+Example&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Furniture", "displayText": "Furniture", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+Furniture&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Furniture%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Furniture&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Furniture%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBuy+Furniture&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Joker Volkswagen eBuy", "displayText": "Joker Volkswagen", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Joker+Volkswagen+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Joker+Volkswagen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Joker+Volkswagen+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Joker+Volkswagen%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Joker+Volkswagen+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Lengsfeld Julius", "displayText": "Lengsfeld Julius", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+Lengsfeld+Julius&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lengsfeld+Julius%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Lengsfeld+Julius&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lengsfeld+Julius%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBuy+Lengsfeld+Julius&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ebuys LOL", "displayText": "LOL", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ebuys+LOL&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22LOL%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ebuys+LOL&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22LOL%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Ebuys+LOL&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Michael Masks", "displayText": "Michael Masks", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+Michael+Masks&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Michael+Masks%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Michael+Masks&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Michael+Masks%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBuy+Michael+Masks&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Wigs", "displayText": "Wigs", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+Wigs&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wigs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Wigs&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Wigs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBuy+Wigs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Mus Tag Rocket", "displayText": "Mus Tag Rocket", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+Mus+Tag+Rocket&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Mus+Tag+Rocket%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Mus+Tag+Rocket&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Mus+Tag+Rocket%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBuy+Mus+Tag+Rocket&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "SMC Rodless eBuy", "displayText": "SMC Rodless", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=SMC+Rodless+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22SMC+Rodless%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=SMC+Rodless+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22SMC+Rodless%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=SMC+Rodless+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Store", "displayText": "Store", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBuy+Store&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Store%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Store&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Store%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBuy+Store&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy HK Technoology", "displayText": "HK Technoology", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+HK+Technoology&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22HK+Technoology%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+HK+Technoology&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22HK+Technoology%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBuy+HK+Technoology&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Industrial Electronics eBuy", "displayText": "Industrial Electronics",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Industrial+Electronics+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Industrial+Electronics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Industrial+Electronics+eBuy&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Industrial+Electronics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Industrial+Electronics+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "ebuy", "suggestions": [{"text": "Amazon.com",
+ "displayText": "Amazon.com", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Amazon.com&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazon.com%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Amazon.com&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Amazon.com%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Amazon.com&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "PayPal", "displayText": "PayPal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=PayPal&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22PayPal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=PayPal&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22PayPal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=PayPal&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Webvan", "displayText": "Webvan", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Webvan&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Webvan%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Webvan&tq=%7b%22pq%22%3a%22ebuy+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22ebuy%22%2c%22pv%22%3a%22ebuy%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Webvan%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Webvan&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:gov", "suggestions": []}, {"pivot": "OR", "suggestions":
+ []}, {"pivot": "site:mil)", "suggestions": []}], "relatedSearches": [{"text":
+ "eBay", "displayText": "eBay", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Classifieds", "displayText": "eBay Classifieds", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBay+Classifieds&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay+Classifieds",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=eBay+Classifieds&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy Platform", "displayText": "eBuy Platform", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+Platform&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+Platform",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBuy+Platform&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "GSA eBuy", "displayText": "GSA eBuy", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=GSA+eBuy&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=GSA+eBuy",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=GSA+eBuy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBuy U. S. Bank", "displayText": "eBuy U. S. Bank", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBuy+U.+S.+Bank&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBuy+U.+S.+Bank",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBuy+U.+S.+Bank&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Cars", "displayText": "eBay Cars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Cars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay+Cars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Cars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Motors Collector Cars", "displayText": "eBay Motors Collector
+ Cars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Motors+Collector+Cars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay+Motors+Collector+Cars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=eBay+Motors+Collector+Cars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Logo", "displayText": "eBay Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "My eBay", "displayText": "My eBay", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=My+eBay&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=My+eBay",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=My+eBay&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Craigslist", "displayText": "eBay Craigslist", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=eBay+Craigslist&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay+Craigslist",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=eBay+Craigslist&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "eBay Site", "displayText": "eBay Site", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=eBay+Site&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=eBay+Site",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=eBay+Site&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}'
+ http_version:
+ recorded_at: Mon, 08 Oct 2018 18:25:37 GMT
+recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/SEC_Edgar_sitelinks.yml b/features/vcr_cassettes/Searches_using_mobile_device/SEC_Edgar_sitelinks.yml
index 16ee49e69f..63589e71d7 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/SEC_Edgar_sitelinks.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/SEC_Edgar_sitelinks.yml
@@ -628,4 +628,1449 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:31 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=fannie%20mae%20(site:www.sec.gov/archives/edgar)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4503'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:59 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=132E624728D16B242B716EEB29066ABE; path=/; expires=Sat, 14-Dec-2019 22:41:59
+ GMT; domain=bingapis.com
+ - MUIDB=132E624728D16B242B716EEB29066ABE; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:59 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:59 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=BF73FE9F54434878B63B2A93CEC88A9F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:59 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:59
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=37539F01226063EC26D093AD23B762CC; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:59 GMT; domain=bingapis.com
+ - _SS=SID=37539F01226063EC26D093AD23B762CC; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 99421C679DA944539E78A6E7BB900C06
+ X-Msedge-Clientid:
+ - 132E624728D16B242B716EEB29066ABE
+ X-Msapi-Userstate:
+ - f770
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 99421C679DA944539E78A6E7BB900C06 Ref B: CO1EDGE0411 Ref C: 2018-11-19T22:41:59Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:59 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D56A6709F4AF443490875CC6312E3FC9&CID=132E624728D16B242B716EEB29066ABE&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D56A6709F4AF443490875CC6312E3FC9&CID=132E624728D16B242B716EEB29066ABE&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=fannie+mae+(site%3awww.sec.gov%2farchives%2fedgar)",
+ "webSearchUrlPingSuffix": "DevEx,5403.1", "totalEstimatedMatches": 7820, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Document",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "urlPingSuffix": "DevEx,5058.1", "displayUrl": "https:\/\/www.sec.gov\/...\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) that
+ was chartered by Congress in 1938. We serve an essential role in the functioning
+ of the U.S. housing market and are investing in improvements to the U.S. housing
+ finance system.", "dateLastCrawled": "2018-11-11T15:04:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Document", "url":
+ "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "urlPingSuffix": "DevEx,5068.1", "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "snippet": "Fannie Mae provides a stable source of liquidity to the mortgage
+ market and increases the availability and affordability of housing in the
+ United States. We operate in the secondary mortgage market, primarily working
+ with lenders. We do not originate loans or lend money directly to consumers
+ in the primary mortgage market.", "dateLastCrawled": "2018-11-03T15:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Ex-10.35
+ - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000119312512087297\/d282546dex1035.htm",
+ "urlPingSuffix": "DevEx,5081.1", "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000119312512087297\/d282546dex1035.htm",
+ "snippet": "Exhibit 10.35 . FANNIE MAE . RESTRICTED STOCK UNITS AWARD
+ . Award Document . This grant of units of Restricted Stock from Fannie Mae
+ (the “Award”) is made to you as an Eligible Employee (the “Awardee”) effective
+ as of the date of grant set forth in the grant detail available for you to
+ view on the UBS website.", "dateLastCrawled": "2018-10-26T00:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Document",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000434\/fanniemae8konfhfa2018score.htm",
+ "urlPingSuffix": "DevEx,5094.1", "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae8konfhfa2018score.htm",
+ "snippet": "For loans funded under the Fannie Mae Green Building Certification
+ program or the Freddie Mac Green Certified program, FHFA will exclude 50 percent
+ of the loan amount if at least 20 percent but less than 50 percent of the
+ unit rents are affordable by applying the income limits in . 6.", "dateLastCrawled":
+ "2018-11-15T05:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "def14a - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/w48664def14a.htm",
+ "urlPingSuffix": "DevEx,5107.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/...",
+ "snippet": "You are entitled to vote or direct the voting of your shares of
+ Fannie Mae common stock if you were a shareholder at the close of business
+ on March 21, 2008, which is the record date for the annual meeting (the “Record
+ Date”).", "dateLastCrawled": "2018-10-27T06:51:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.sec.gov\/...\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) chartered
+ by Congress. We serve as a stable source of liquidity for purchases of homes
+ and financing of multifamily rental housing, as well as for refinancing existing
+ mortgages.", "dateLastCrawled": "2018-10-27T07:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "FannieMae2012 10K EX 10.9 Supp Pension Plan of 2003 as ...", "url":
+ "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052213000065\/fanniemae201210kex109suppp.htm",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae201210kex109suppp.htm",
+ "snippet": "1.1. Establishment.Fannie Mae (the “Corporation”) establishes
+ this Fannie Mae Supplemental Pension Plan of 2003 for the benefit of eligible
+ employees of the Corporation and their beneficiaries.", "dateLastCrawled":
+ "2018-10-27T13:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "FannieMae Q3.09.30.2012 EX 4.1 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "urlPingSuffix": "DevEx,5146.1", "displayUrl": "https:\/\/www.sec.gov\/...\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "snippet": "FANNIE MAE . AMENDED AND RESTATED CERTIFICATE OF DESIGNATION
+ OF TERMS OF. VARIABLE LIQUIDATION PREFERENCE SENIOR. PREFERRED STOCK, SERIES
+ 2008-2. The Federal Housing Finance Agency, exercising its authority pursuant
+ to Section 1367(b) of the Federal Housing Enterprises Financial Safety and
+ Soundness Act of 1992 (12 U.", "dateLastCrawled": "2018-11-05T15:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/htm_25985.htm",
+ "urlPingSuffix": "DevEx,5159.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/...",
+ "snippet": "The \"Charter Act\" refers to the Federal National Mortgage Association
+ Charter Act, which sets forth the activities that Fannie Mae may conduct,
+ authorizes Fannie Mae to issue debt and equity securities, and describes
+ Fannie Mae''s general corporate powers.", "dateLastCrawled": "2018-11-13T11:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "FannieMaeCharterActExhibit31",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052215000179\/fanniemaecharteractexhibit.htm",
+ "urlPingSuffix": "DevEx,5173.1", "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemaecharteractexhibit.htm",
+ "snippet": "The Congress declares that the purposes of this title are to establish
+ secondary market facilities for residential mortgages, to provide that the
+ operations thereof shall be financed by private capital to the maximum extent
+ feasible, and to authorize such facilities to—", "dateLastCrawled": "2018-11-06T10:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Fannie
+ Mae As Soon As Pooled Agreement - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/dex1033.htm",
+ "urlPingSuffix": "DevEx,5187.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/...",
+ "snippet": "(b) From time to time the parties hereto may enter into transactions
+ in which Lender agrees to transfer to Fannie Mae Mortgage Loans against
+ the transfer of funds by Fannie Mae (as described herein), with a simultaneous
+ agreement by Fannie Mae to transfer to Lender each such Mortgage Loan on
+ the Repurchase Date related to such Mortgage Loan in accordance with the terms
+ set forth herein ...", "dateLastCrawled": "2018-11-05T01:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Master
+ Custodial Agreement for Custody of Single Family ...", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/dex1026.htm",
+ "urlPingSuffix": "DevEx,5201.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/...",
+ "snippet": "3 RECITALS. This Custodial Agreement is executed by, and delivered
+ to, each of Fannie Mae, Custodian, and Lender, as of the effective date,
+ all as indicated on the cover page hereof.. WHEREAS, Lender is (or will become)
+ the Servicer of certain Mortgage Loans pursuant to a Mortgage Selling and
+ Servicing Contract with Fannie Mae, and may or may not be the Seller with
+ respect to those Mortgage Loans;", "dateLastCrawled": "2018-10-27T06:05:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "exv10w44
+ - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/w77413exv10w44.htm",
+ "urlPingSuffix": "DevEx,5215.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/...",
+ "snippet": "The purpose of this Retainer Letter (“Retainer Letter”) and the
+ attached Fannie Mae Outside Counsel Guidelines (“Guidelines”), incorporated
+ into this Retainer Letter by reference, is to clarify and memorialize the
+ principles under which you provide legal services (“Services”) to Fannie
+ Mae.", "dateLastCrawled": "2018-10-31T08:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "www.sec.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/v406246_ex10-3.htm",
+ "urlPingSuffix": "DevEx,5228.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/...",
+ "snippet": "The Tenants in Common have obtained a loan in the original principal
+ amount of $26,705,000.00 from Walker & Dunlop, LLC, which loan has been assigned
+ to Fannie Mae (“Lender”) for the financing of the Property (\"Loan\") and,
+ in connection therewith, entering into various documents evidencing and securing
+ the Loan (the “Loan Documents ...", "dateLastCrawled": "2018-11-05T13:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/htm_2364.htm",
+ "urlPingSuffix": "DevEx,5241.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/...",
+ "snippet": "The financial information regarding Fannie Mae’s anticipated
+ results of operations for the quarter ended September 30, 2004 that was contained
+ in Fannie Mae’s Form 12b-25 filed on November 15, 2004 and in Fannie Mae’s
+ Form 8-K filed on November 16, 2004 was prepared applying the same policies
+ and practices, and should also not be relied upon.", "dateLastCrawled": "2018-11-13T16:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "e8vk
+ - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013304003576\/w02626e8vk.htm",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013304003576\/...",
+ "snippet": "In May 2004, Fannie Mae (formally, the Federal National Mortgage
+ Association) entered into employment agreements with Franklin D. Raines, the
+ company’s Chairman and Chief Executive Officer, Daniel H. Mudd, the company’s
+ Vice Chairman and Chief Operating Officer and J. Timothy Howard, the company’s
+ Vice Chairman and Chief Financial Officer.", "dateLastCrawled": "2018-11-10T04:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Form
+ 10-K - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/d477952d10k.htm",
+ "urlPingSuffix": "DevEx,5266.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/...",
+ "snippet": "In March 2012, FHFA instituted the 2012 conservatorship scorecard,
+ or the Conservatorship Scorecard, for use by both us and Fannie Mae that
+ established business objectives and performance targets and measures, and
+ provided the implementation roadmap for FHFA’s strategic plan for Freddie
+ Mac and Fannie Mae.", "dateLastCrawled": "2018-11-07T03:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/htm_29249.htm",
+ "urlPingSuffix": "DevEx,5277.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/...",
+ "snippet": "Fannie Mae further disclosed that the Board of Directors no
+ longer had the power or duty to manage, direct or oversee the business and
+ affairs of Fannie Mae. On September 29, 2008, Daniel H. Mudd resigned from
+ the Board of Directors of Fannie Mae, effective immediately.", "dateLastCrawled":
+ "2018-11-13T12:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "exv10w3 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/y04304a1exv10w3.htm",
+ "urlPingSuffix": "DevEx,5291.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/...",
+ "snippet": "Recognizing that Fannie Mae is the owner of the Servicing Rights
+ and Fannie Mae is the owner of the Assets, and subject to the other obligations
+ of Fannie Mae hereunder and under the Servicing Agreement, Subservicer will
+ during the term of this Agreement cooperate fully with the employees, agents
+ and representatives of Fannie Mae and ensure ...", "dateLastCrawled": "2018-11-16T00:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/htm_30584.htm",
+ "urlPingSuffix": "DevEx,5305.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/...",
+ "snippet": "In accordance with new non-management director compensation practices
+ approved by FHFA, each Fannie Mae non-management director other than Mr.
+ Laskawy, the non-executive chairman of Fannie Mae’s Board of Directors,
+ will be paid a cash retainer at a rate of $160,000 per year for serving as
+ a Board member.", "dateLastCrawled": "2018-11-09T02:25:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:59 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=fannie%20mae%20(site:www.sec.gov/news)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4229'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:59 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=28B31859FE7264EB1D6914F5FFA56540; path=/; expires=Sat, 14-Dec-2019 22:42:00
+ GMT; domain=bingapis.com
+ - MUIDB=28B31859FE7264EB1D6914F5FFA56540; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:00 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:59 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7332548A06B141A2B4EB73BBB3F4FF57&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:59 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:59
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3DF8DF4781E968012F05D3EB803E69CF; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:00 GMT; domain=bingapis.com
+ - _SS=SID=3DF8DF4781E968012F05D3EB803E69CF; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 236EBD43816B4C52B70C5BE05FBA6505
+ X-Msedge-Clientid:
+ - 28B31859FE7264EB1D6914F5FFA56540
+ X-Msapi-Userstate:
+ - '2706'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 236EBD43816B4C52B70C5BE05FBA6505 Ref B: CO1EDGE0109 Ref C: 2018-11-19T22:42:00Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:59 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=3548D1E27B7342B5BFE1215B28297E10&CID=28B31859FE7264EB1D6914F5FFA56540&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=3548D1E27B7342B5BFE1215B28297E10&CID=28B31859FE7264EB1D6914F5FFA56540&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=fannie+mae+(site%3awww.sec.gov%2fnews)",
+ "webSearchUrlPingSuffix": "DevEx,5419.1", "totalEstimatedMatches": 7450, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Testimony:
+ Accounting Irregularities at Fannie Mae ...", "url": "https:\/\/www.sec.gov\/news\/testimony\/2006\/ts061506cc.htm",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/2006\/ts061506cc.htm",
+ "snippet": "Fannie Mae''s settlement of accounting fraud charges raises
+ another very significant policy issue, one that has been carefully considered
+ by members of this Committee: whether to require mandatory registration and
+ periodic reporting under the Exchange Act by Fannie Mae, Freddie Mac, and
+ the Federal Home Loan Banks.", "dateLastCrawled": "2018-11-14T16:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "SEC.gov
+ | Bank of America Admits Disclosure Failures to ...", "url": "https:\/\/www.sec.gov\/news\/press-release\/2014-172",
+ "urlPingSuffix": "DevEx,5073.1", "about": [{"name": "Bank of America"}], "displayUrl":
+ "https:\/\/www.sec.gov\/news\/press-release\/2014-172", "snippet": "These
+ uncertainties included whether Fannie Mae, a mortgage loan purchaser from
+ Bank of America, had changed its repurchase claim practices after being
+ put into conservatorship, the future volume of repurchase claims from Fannie
+ Mae and certain monoline insurance companies that provided credit enhancements
+ on certain mortgage loan sales, and ...", "dateLastCrawled": "2018-11-09T23:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "UNITED
+ STATES OF AMERICA SECURITIES AND EXCHANGE ...", "url": "https:\/\/www.sec.gov\/news\/press\/2011\/npa-pr2011-267-fanniemae.pdf",
+ "urlPingSuffix": "DevEx,5085.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2011\/npa-pr2011-267-fanniemae.pdf",
+ "snippet": "(the \"Respondent\" or \"Fannie Mae\") and others that occurred
+ in or about December 2006 through September 6, 2008, arising from, among other
+ things, public statements concerning Fannie Mae''s exposure to SUbprime
+ and Alt-A mortgages (collectively, the \"Investigation\").", "dateLastCrawled":
+ "2018-11-15T16:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "SEC Charges Former Fannie Mae and Freddie Mac Executives ...",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267.htm", "urlPingSuffix":
+ "DevEx,5098.1", "about": [{"name": "Freddie Mac"}], "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267.htm",
+ "snippet": "Fannie Mae''s executives also knew and approved of the decision
+ to underreport Fannie Mae''s Alt-A loan exposure, the SEC alleged. Fannie
+ Mae disclosed that its March 31, 2007 exposure to Alt-A loans was 11 percent
+ of its portfolio of Single Family loans.", "dateLastCrawled": "2018-11-15T02:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "FREDDIE
+ MAC FANNIE MAE Disclosed - SEC.gov", "url": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267-chart-subprime-exposure.pdf",
+ "urlPingSuffix": "DevEx,5110.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267-chart-subprime...",
+ "snippet": "FREDDIE MAC SUBPRIME EXPOSURE: MISLEADING STATEMENTS Data as
+ of 2Q 2008 Source: Securities and Exchange Commission Disclosed $6 Billion
+ Disclosed $8 Billion Actual Estimated Holdings:", "dateLastCrawled": "2018-11-07T00:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "SEC
+ News Digest, December 16, 2011", "url": "https:\/\/www.sec.gov\/news\/digest\/2011\/dig121611.htm",
+ "urlPingSuffix": "DevEx,5123.1", "displayUrl": "https:\/\/www.sec.gov\/news\/digest\/2011\/dig121611.htm",
+ "snippet": "Fannie Mae''s executives also knew and approved of the decision
+ to underreport Fannie Mae''s Alt-A loan exposure, the SEC alleged. Fannie
+ Mae disclosed that its March 31, 2007 exposure to Alt-A loans was 11 percent
+ of its portfolio of Single Family loans.", "dateLastCrawled": "2018-11-03T07:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Enhancing
+ Disclosure in the Mortgage-Backed - SEC", "url": "https:\/\/www.sec.gov\/news\/studies\/mortgagebacked.htm",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/www.sec.gov\/news\/studies\/mortgagebacked.htm",
+ "snippet": "As a result, TBA market participants consider MBS of Fannie Mae,
+ Freddie Mac and Ginnie Mae that meet the Good Delivery Guidelines to be
+ interchangeable or fungible with other such MBS issued or guaranteed by Fannie
+ Mae, Freddie Mac or Ginnie Mae, respectively.", "dateLastCrawled": "2018-11-16T03:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Office
+ of the Chief Accountant Issues Statement on Fannie ...", "url": "https:\/\/www.sec.gov\/news\/press\/2004-172.htm",
+ "urlPingSuffix": "DevEx,5151.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2004-172.htm",
+ "snippet": "At the request of Fannie Mae, the accounting staff at the Commission
+ has been reviewing whether the accounting used by Fannie Mae complied with
+ Statement Nos. 91 and 133.", "dateLastCrawled": "2018-11-06T06:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "SEC
+ Testimony: The Application of Federal Securities Law ...", "url": "https:\/\/www.sec.gov\/news\/testimony\/ts021004alb.htm",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/ts021004alb.htm",
+ "snippet": "Fannie Mae has filed with the Commission its 2002 annual report
+ on Form 10-K including audited financial statements, quarterly reports on
+ Form 10-Q containing unaudited financial statements, its proxy statement relating
+ to its annual meeting of shareholders and numerous current reports on Form
+ 8-K.", "dateLastCrawled": "2018-11-09T23:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Chairman Pitt''s Statement On Fannie Mae\/Freddie Mac ...", "url":
+ "https:\/\/www.sec.gov\/news\/speech\/spch574.htm", "urlPingSuffix": "DevEx,5179.1",
+ "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/spch574.htm", "snippet":
+ "Although Fannie Mae''s and Freddie Mac''s decision to subject themselves
+ to the full panoply of Securities Exchange Act disclosures is voluntary, it
+ is now irrevocable without SEC approval. This addresses the concern that,
+ however complete their disclosures were, it was strictly a matter of choice,
+ not a requirement of law.", "dateLastCrawled": "2018-10-28T17:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "SEC
+ and OFHEO Announce Resolution of Investigation and ...", "url": "https:\/\/www.sec.gov\/news\/press\/2006\/2006-80.htm",
+ "urlPingSuffix": "DevEx,5193.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2006\/2006-80.htm",
+ "snippet": "Fannie Mae had a policy of not recording those amounts that
+ fell within a company-calculated threshold. Such a policy was an improper
+ departure from GAAP and had the effect of reducing earnings volatility.",
+ "dateLastCrawled": "2018-10-18T17:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "SEC Distributes $356 Million to Defrauded Fannie Mae Investors",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-219.htm", "urlPingSuffix":
+ "DevEx,5207.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-219.htm",
+ "snippet": "The Fair Fund for Fannie Mae victims resulted from an enforcement
+ action in May 2006 in which Fannie Mae paid $350 million to settle SEC
+ charges that it issued materially false and misleading financial statements
+ in SEC filings and in various reports disseminated to investors.", "dateLastCrawled":
+ "2018-11-06T11:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Press Release: SEC Enhances Investor Protections Against ...",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2008\/2008-143.htm", "urlPingSuffix":
+ "DevEx,5221.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2008\/2008-143.htm",
+ "snippet": "SEC Enhances Investor Protections Against Naked Short Selling
+ FOR IMMEDIATE RELEASE 2008-143. Washington, D.C., July 15, 2008 - The Securities
+ and Exchange Commission today issued an emergency order to enhance investor
+ protections against \"naked\" short selling in the securities of Fannie Mae,
+ Freddie Mac, and primary dealers at commercial and investment banks.", "dateLastCrawled":
+ "2018-11-09T08:06:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Statement regarding Fannie Mae - SEC.gov", "url": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306lct.htm",
+ "urlPingSuffix": "DevEx,5235.1", "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306lct.htm",
+ "snippet": "Fannie Mae also sought, without any basis in the accounting
+ literature, to fit the vast majority of its transactions into a hedge accounting
+ exception, even though the transactions simply did not qualify for such treatment
+ under GAAP.", "dateLastCrawled": "2018-11-04T09:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "SEC Announces Start of $357 Million Fair Fund Distribution ...",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-81.htm", "urlPingSuffix":
+ "DevEx,5249.1", "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-81.htm",
+ "snippet": "The SEC brought a settled action against Fannie Mae in May
+ 2006 alleging that, between 1998 and 2004, Fannie Mae issued materially
+ false and misleading financial statements in various reports and in filings
+ with the SEC.", "dateLastCrawled": "2018-10-14T10:42:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Remarks at
+ Joint News Conference with OFHEO - SEC", "url": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306cc.htm",
+ "urlPingSuffix": "DevEx,5263.1", "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306cc.htm",
+ "snippet": "Fannie Mae describes itself as \"an instrument of national policy\"
+ and as \"a private company with a public mission.\" For that reason, today''s
+ announcement is especially bitter — because it underscores a breach of trust.",
+ "dateLastCrawled": "2018-11-12T06:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Accounting for Deferred Purchase Price Adjustments and for ...",
+ "url": "https:\/\/www.sec.gov\/news\/testimony\/ts020905dtn.htm", "urlPingSuffix":
+ "DevEx,5277.1", "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/ts020905dtn.htm",
+ "snippet": "Fannie Mae is the largest non-bank financial services company
+ in the world and the nation''s largest source of financing for home mortgages.
+ 2 Fannie Mae''s common stock is listed on the New York Stock Exchange and,
+ after discussions with the Commission staff, on March 31, 2003, Fannie Mae
+ voluntarily registered its common stock with the ...", "dateLastCrawled":
+ "2018-11-09T21:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "SEC Speech: \"Message from the Chairman\" in SEC’s 2008 ...",
+ "url": "https:\/\/www.sec.gov\/news\/speech\/2008\/spch111408cc.htm", "urlPingSuffix":
+ "DevEx,5291.1", "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/2008\/spch111408cc.htm",
+ "snippet": "In addition, the Housing and Economic Recovery Act of 2008 gives
+ the SEC Chairman similar oversight and advisory responsibilities with respect
+ to the conservatorship of Fannie Mae and Freddie Mac supervised by the Federal
+ Housing Finance Agency.", "dateLastCrawled": "2018-11-09T19:51:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Testimony
+ Concerning the Role of Federal Regulators ...", "url": "https:\/\/www.sec.gov\/news\/testimony\/2008\/ts102308cc.htm",
+ "urlPingSuffix": "DevEx,5305.1", "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/2008\/ts102308cc.htm",
+ "snippet": "Fannie Mae and Freddie Mac, which got affordable housing credit
+ for buying subprime securitized loans, became a magnet for the creation of
+ enormous volumes of increasingly complex securities that repackaged these
+ mortgages.", "dateLastCrawled": "2018-11-08T15:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "SEC Testimony: Application of Federal Securities Law ...", "url":
+ "https:\/\/www.sec.gov\/news\/testimony\/ts042105alb.htm", "urlPingSuffix":
+ "DevEx,5319.1", "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/ts042105alb.htm",
+ "snippet": "Fannie Mae has disclosed that the Commission is investigating
+ certain issues associated with Fannie Mae''s accounting and disclosure practices.
+ I and others at the Commission appreciate the Committee''s recognition of
+ the non-public nature of the Commission''s active investigation.", "dateLastCrawled":
+ "2018-10-27T17:35:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:00 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=fannie%20mae%20(site:sec.gov/archives/edgar/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4354'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:00 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0A399B3C970F630A0DB9979096D8624F; path=/; expires=Sat, 14-Dec-2019 22:42:00
+ GMT; domain=bingapis.com
+ - MUIDB=0A399B3C970F630A0DB9979096D8624F; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:00 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:00 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=EAB716E7A3E242689C1E8CDCC207F837&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:42:00 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:00
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0D4FB5D6E39C60353AC2B97AE24B6165; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:00 GMT; domain=bingapis.com
+ - _SS=SID=0D4FB5D6E39C60353AC2B97AE24B6165; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 6263EBC6CA114E638851005A6DBF983B
+ X-Msedge-Clientid:
+ - 0A399B3C970F630A0DB9979096D8624F
+ X-Msapi-Userstate:
+ - fb15
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 6263EBC6CA114E638851005A6DBF983B Ref B: CO1EDGE0917 Ref C: 2018-11-19T22:42:00Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:59 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E171F6E4C8DA45D1A9F676F9E01CE681&CID=0A399B3C970F630A0DB9979096D8624F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E171F6E4C8DA45D1A9F676F9E01CE681&CID=0A399B3C970F630A0DB9979096D8624F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=fannie+mae+(site%3asec.gov%2farchives%2fedgar%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5399.1", "totalEstimatedMatches": 8260, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "sec.gov",
+ "url": "https:\/\/sec.gov\/Archives\/edgar\/data\/310522\/000031052216000453\/fanniemae201510k.htm",
+ "urlPingSuffix": "DevEx,5056.1", "displayUrl": "https:\/\/sec.gov\/...\/310522\/000031052216000453\/fanniemae201510k.htm",
+ "snippet": "sec.gov", "dateLastCrawled": "2018-11-09T01:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Document",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "urlPingSuffix": "DevEx,5068.1", "displayUrl": "https:\/\/www.sec.gov\/...\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) that
+ was chartered by Congress in 1938. We serve an essential role in the functioning
+ of the U.S. housing market and are investing in improvements to the U.S. housing
+ finance system.", "dateLastCrawled": "2018-11-11T15:04:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Ex-10.35 -
+ SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000119312512087297\/d282546dex1035.htm",
+ "urlPingSuffix": "DevEx,5081.1", "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000119312512087297\/d282546dex1035.htm",
+ "snippet": "Exhibit 10.35 . FANNIE MAE . RESTRICTED STOCK UNITS AWARD
+ . Award Document . This grant of units of Restricted Stock from Fannie Mae
+ (the “Award”) is made to you as an Eligible Employee (the “Awardee”) effective
+ as of the date of grant set forth in the grant detail available for you to
+ view on the UBS website.", "dateLastCrawled": "2018-10-26T00:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Document",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "urlPingSuffix": "DevEx,5092.1", "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "snippet": "Fannie Mae provides a stable source of liquidity to the mortgage
+ market and increases the availability and affordability of housing in the
+ United States. We operate in the secondary mortgage market, primarily working
+ with lenders. We do not originate loans or lend money directly to consumers
+ in the primary mortgage market.", "dateLastCrawled": "2018-11-03T15:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "def14a
+ - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/w48664def14a.htm",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/...",
+ "snippet": "You are entitled to vote or direct the voting of your shares of
+ Fannie Mae common stock if you were a shareholder at the close of business
+ on March 21, 2008, which is the record date for the annual meeting (the “Record
+ Date”).", "dateLastCrawled": "2018-10-27T06:51:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "urlPingSuffix": "DevEx,5116.1", "displayUrl": "https:\/\/www.sec.gov\/...\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) chartered
+ by Congress. We serve as a stable source of liquidity for purchases of homes
+ and financing of multifamily rental housing, as well as for refinancing existing
+ mortgages.", "dateLastCrawled": "2018-10-27T07:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000434\/fanniemae8konfhfa2018score.htm",
+ "urlPingSuffix": "DevEx,5128.1", "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae8konfhfa2018score.htm",
+ "snippet": "For loans funded under the Fannie Mae Green Building Certification
+ program or the Freddie Mac Green Certified program, FHFA will exclude 50 percent
+ of the loan amount if at least 20 percent but less than 50 percent of the
+ unit rents are affordable by applying the income limits in . 6.", "dateLastCrawled":
+ "2018-11-15T05:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "FannieMae2012 10K EX 10.9 Supp Pension Plan of 2003 as ...", "url":
+ "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052213000065\/fanniemae201210kex109suppp.htm",
+ "urlPingSuffix": "DevEx,5142.1", "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae201210kex109suppp.htm",
+ "snippet": "1.1. Establishment.Fannie Mae (the “Corporation”) establishes
+ this Fannie Mae Supplemental Pension Plan of 2003 for the benefit of eligible
+ employees of the Corporation and their beneficiaries.", "dateLastCrawled":
+ "2018-10-27T13:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "FannieMae Q3.09.30.2012 EX 4.1 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "urlPingSuffix": "DevEx,5156.1", "displayUrl": "https:\/\/www.sec.gov\/...\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "snippet": "FANNIE MAE . AMENDED AND RESTATED CERTIFICATE OF DESIGNATION
+ OF TERMS OF. VARIABLE LIQUIDATION PREFERENCE SENIOR. PREFERRED STOCK, SERIES
+ 2008-2. The Federal Housing Finance Agency, exercising its authority pursuant
+ to Section 1367(b) of the Federal Housing Enterprises Financial Safety and
+ Soundness Act of 1992 (12 U.", "dateLastCrawled": "2018-11-05T15:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "FannieMaeCharterActExhibit31",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052215000179\/fanniemaecharteractexhibit.htm",
+ "urlPingSuffix": "DevEx,5170.1", "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemaecharteractexhibit.htm",
+ "snippet": "The Congress declares that the purposes of this title are to establish
+ secondary market facilities for residential mortgages, to provide that the
+ operations thereof shall be financed by private capital to the maximum extent
+ feasible, and to authorize such facilities to—", "dateLastCrawled": "2018-11-06T10:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/htm_25985.htm",
+ "urlPingSuffix": "DevEx,5183.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/...",
+ "snippet": "The \"Charter Act\" refers to the Federal National Mortgage Association
+ Charter Act, which sets forth the activities that Fannie Mae may conduct,
+ authorizes Fannie Mae to issue debt and equity securities, and describes
+ Fannie Mae''s general corporate powers.", "dateLastCrawled": "2018-11-13T11:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "www.sec.gov",
+ "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/v406246_ex10-3.htm",
+ "urlPingSuffix": "DevEx,5196.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/...",
+ "snippet": "The Tenants in Common have obtained a loan in the original principal
+ amount of $26,705,000.00 from Walker & Dunlop, LLC, which loan has been assigned
+ to Fannie Mae (“Lender”) for the financing of the Property (\"Loan\") and,
+ in connection therewith, entering into various documents evidencing and securing
+ the Loan (the “Loan Documents ...", "dateLastCrawled": "2018-11-05T13:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Master
+ Custodial Agreement for Custody of Single Family ...", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/dex1026.htm",
+ "urlPingSuffix": "DevEx,5210.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/...",
+ "snippet": "3 RECITALS. This Custodial Agreement is executed by, and delivered
+ to, each of Fannie Mae, Custodian, and Lender, as of the effective date,
+ all as indicated on the cover page hereof.. WHEREAS, Lender is (or will become)
+ the Servicer of certain Mortgage Loans pursuant to a Mortgage Selling and
+ Servicing Contract with Fannie Mae, and may or may not be the Seller with
+ respect to those Mortgage Loans;", "dateLastCrawled": "2018-10-27T06:05:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "exv10w44
+ - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/w77413exv10w44.htm",
+ "urlPingSuffix": "DevEx,5224.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/...",
+ "snippet": "The purpose of this Retainer Letter (“Retainer Letter”) and the
+ attached Fannie Mae Outside Counsel Guidelines (“Guidelines”), incorporated
+ into this Retainer Letter by reference, is to clarify and memorialize the
+ principles under which you provide legal services (“Services”) to Fannie
+ Mae.", "dateLastCrawled": "2018-10-31T08:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Fannie Mae As Soon As Pooled Agreement - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/dex1033.htm",
+ "urlPingSuffix": "DevEx,5238.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/...",
+ "snippet": "(b) From time to time the parties hereto may enter into transactions
+ in which Lender agrees to transfer to Fannie Mae Mortgage Loans against
+ the transfer of funds by Fannie Mae (as described herein), with a simultaneous
+ agreement by Fannie Mae to transfer to Lender each such Mortgage Loan on
+ the Repurchase Date related to such Mortgage Loan in accordance with the terms
+ set forth herein ...", "dateLastCrawled": "2018-11-05T01:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/htm_29249.htm",
+ "urlPingSuffix": "DevEx,5250.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/...",
+ "snippet": "Fannie Mae further disclosed that the Board of Directors no
+ longer had the power or duty to manage, direct or oversee the business and
+ affairs of Fannie Mae. On September 29, 2008, Daniel H. Mudd resigned from
+ the Board of Directors of Fannie Mae, effective immediately.", "dateLastCrawled":
+ "2018-11-13T12:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/htm_2364.htm",
+ "urlPingSuffix": "DevEx,5263.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/...",
+ "snippet": "The financial information regarding Fannie Mae’s anticipated
+ results of operations for the quarter ended September 30, 2004 that was contained
+ in Fannie Mae’s Form 12b-25 filed on November 15, 2004 and in Fannie Mae’s
+ Form 8-K filed on November 16, 2004 was prepared applying the same policies
+ and practices, and should also not be relied upon.", "dateLastCrawled": "2018-11-13T16:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "exv10w3
+ - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/y04304a1exv10w3.htm",
+ "urlPingSuffix": "DevEx,5277.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/...",
+ "snippet": "Recognizing that Fannie Mae is the owner of the Servicing Rights
+ and Fannie Mae is the owner of the Assets, and subject to the other obligations
+ of Fannie Mae hereunder and under the Servicing Agreement, Subservicer will
+ during the term of this Agreement cooperate fully with the employees, agents
+ and representatives of Fannie Mae and ensure ...", "dateLastCrawled": "2018-11-16T00:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Form
+ 10-K - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/d477952d10k.htm",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/...",
+ "snippet": "In March 2012, FHFA instituted the 2012 conservatorship scorecard,
+ or the Conservatorship Scorecard, for use by both us and Fannie Mae that
+ established business objectives and performance targets and measures, and
+ provided the implementation roadmap for FHFA’s strategic plan for Freddie
+ Mac and Fannie Mae.", "dateLastCrawled": "2018-11-07T03:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Federal
+ National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/htm_30584.htm",
+ "urlPingSuffix": "DevEx,5302.1", "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/...",
+ "snippet": "On November 24, 2008, FHFA, as conservator, reconstituted Fannie
+ Mae''s Board of Directors and directed Fannie Mae regarding the function
+ and authorities of the Board of Directors. The directors of Fannie Mae shall
+ serve on behalf of the conservator and shall exercise their authority as directed
+ by the conservator.", "dateLastCrawled": "2018-11-09T02:25:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:00 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=fannie%20mae%20(site:www.sec.gov/archives/edgar)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:10 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 5C17BAE65973475390B5B909755979AD
+ Bingapis-Sessionid:
+ - C295E7AF907C40DDA6FD1ACF5F30EFB4
+ X-Msedge-Clientid:
+ - 2CCD81867F276EAA0B668D2A7E6B6F3C
+ X-Msapi-Userstate:
+ - beb9
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=172,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 5C17BAE65973475390B5B909755979AD Ref B: BY3EDGE0313 Ref C: 2018-11-19T22:43:11Z'
+ Apim-Request-Id:
+ - 1ef8eb55-33d2-4dbf-a39d-e503a262c564
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:10 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "fannie
+ mae (site:www.sec.gov\/archives\/edgar)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=fannie+mae+(site%3awww.sec.gov%2farchives%2fedgar)",
+ "totalEstimatedMatches": 7820, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) that
+ was chartered by Congress in 1938. We serve an essential role in the functioning
+ of the U.S. housing market and are investing in improvements to the U.S. housing
+ finance system.", "dateLastCrawled": "2018-11-11T15:04:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "snippet": "Fannie Mae provides a stable source of liquidity to the mortgage
+ market and increases the availability and affordability of housing in the
+ United States. We operate in the secondary mortgage market, primarily working
+ with lenders. We do not originate loans or lend money directly to consumers
+ in the primary mortgage market.", "dateLastCrawled": "2018-11-03T15:28:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Ex-10.35 - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000119312512087297\/d282546dex1035.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000119312512087297\/d282546dex1035.htm",
+ "snippet": "Exhibit 10.35 . FANNIE MAE . RESTRICTED STOCK UNITS AWARD
+ . Award Document . This grant of units of Restricted Stock from Fannie Mae
+ (the “Award”) is made to you as an Eligible Employee (the “Awardee”) effective
+ as of the date of grant set forth in the grant detail available for you to
+ view on the UBS website.", "dateLastCrawled": "2018-10-26T00:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000434\/fanniemae8konfhfa2018score.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae8konfhfa2018score.htm",
+ "snippet": "For loans funded under the Fannie Mae Green Building Certification
+ program or the Freddie Mac Green Certified program, FHFA will exclude 50 percent
+ of the loan amount if at least 20 percent but less than 50 percent of the
+ unit rents are affordable by applying the income limits in . 6.", "dateLastCrawled":
+ "2018-11-15T05:15:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "def14a - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/w48664def14a.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/...",
+ "snippet": "You are entitled to vote or direct the voting of your shares of
+ Fannie Mae common stock if you were a shareholder at the close of business
+ on March 21, 2008, which is the record date for the annual meeting (the “Record
+ Date”).", "dateLastCrawled": "2018-10-27T06:51:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) chartered
+ by Congress. We serve as a stable source of liquidity for purchases of homes
+ and financing of multifamily rental housing, as well as for refinancing existing
+ mortgages.", "dateLastCrawled": "2018-10-27T07:28:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "FannieMae2012 10K EX 10.9 Supp Pension Plan of 2003 as ...", "url":
+ "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052213000065\/fanniemae201210kex109suppp.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae201210kex109suppp.htm",
+ "snippet": "1.1. Establishment.Fannie Mae (the “Corporation”) establishes
+ this Fannie Mae Supplemental Pension Plan of 2003 for the benefit of eligible
+ employees of the Corporation and their beneficiaries.", "dateLastCrawled":
+ "2018-10-27T13:47:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "FannieMae Q3.09.30.2012 EX 4.1 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "snippet": "FANNIE MAE . AMENDED AND RESTATED CERTIFICATE OF DESIGNATION
+ OF TERMS OF. VARIABLE LIQUIDATION PREFERENCE SENIOR. PREFERRED STOCK, SERIES
+ 2008-2. The Federal Housing Finance Agency, exercising its authority pursuant
+ to Section 1367(b) of the Federal Housing Enterprises Financial Safety and
+ Soundness Act of 1992 (12 U.", "dateLastCrawled": "2018-11-05T15:41:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/htm_25985.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/...",
+ "snippet": "The \"Charter Act\" refers to the Federal National Mortgage Association
+ Charter Act, which sets forth the activities that Fannie Mae may conduct,
+ authorizes Fannie Mae to issue debt and equity securities, and describes
+ Fannie Mae''s general corporate powers.", "dateLastCrawled": "2018-11-13T11:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "FannieMaeCharterActExhibit31", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052215000179\/fanniemaecharteractexhibit.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemaecharteractexhibit.htm",
+ "snippet": "The Congress declares that the purposes of this title are to establish
+ secondary market facilities for residential mortgages, to provide that the
+ operations thereof shall be financed by private capital to the maximum extent
+ feasible, and to authorize such facilities to—", "dateLastCrawled": "2018-11-06T10:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Fannie Mae As Soon As Pooled Agreement - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/dex1033.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/...",
+ "snippet": "(b) From time to time the parties hereto may enter into transactions
+ in which Lender agrees to transfer to Fannie Mae Mortgage Loans against
+ the transfer of funds by Fannie Mae (as described herein), with a simultaneous
+ agreement by Fannie Mae to transfer to Lender each such Mortgage Loan on
+ the Repurchase Date related to such Mortgage Loan in accordance with the terms
+ set forth herein ...", "dateLastCrawled": "2018-11-05T01:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Master Custodial Agreement for Custody of Single Family ...", "url":
+ "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/dex1026.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/...",
+ "snippet": "3 RECITALS. This Custodial Agreement is executed by, and delivered
+ to, each of Fannie Mae, Custodian, and Lender, as of the effective date,
+ all as indicated on the cover page hereof.. WHEREAS, Lender is (or will become)
+ the Servicer of certain Mortgage Loans pursuant to a Mortgage Selling and
+ Servicing Contract with Fannie Mae, and may or may not be the Seller with
+ respect to those Mortgage Loans;", "dateLastCrawled": "2018-10-27T06:05:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "exv10w44 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/w77413exv10w44.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/...",
+ "snippet": "The purpose of this Retainer Letter (“Retainer Letter”) and the
+ attached Fannie Mae Outside Counsel Guidelines (“Guidelines”), incorporated
+ into this Retainer Letter by reference, is to clarify and memorialize the
+ principles under which you provide legal services (“Services”) to Fannie
+ Mae.", "dateLastCrawled": "2018-10-31T08:04:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "www.sec.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/v406246_ex10-3.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/...",
+ "snippet": "The Tenants in Common have obtained a loan in the original principal
+ amount of $26,705,000.00 from Walker & Dunlop, LLC, which loan has been assigned
+ to Fannie Mae (“Lender”) for the financing of the Property (\"Loan\") and,
+ in connection therewith, entering into various documents evidencing and securing
+ the Loan (the “Loan Documents ...", "dateLastCrawled": "2018-11-05T13:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/htm_2364.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/...",
+ "snippet": "The financial information regarding Fannie Mae’s anticipated
+ results of operations for the quarter ended September 30, 2004 that was contained
+ in Fannie Mae’s Form 12b-25 filed on November 15, 2004 and in Fannie Mae’s
+ Form 8-K filed on November 16, 2004 was prepared applying the same policies
+ and practices, and should also not be relied upon.", "dateLastCrawled": "2018-11-13T16:09:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "e8vk - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013304003576\/w02626e8vk.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013304003576\/...",
+ "snippet": "In May 2004, Fannie Mae (formally, the Federal National Mortgage
+ Association) entered into employment agreements with Franklin D. Raines, the
+ company’s Chairman and Chief Executive Officer, Daniel H. Mudd, the company’s
+ Vice Chairman and Chief Operating Officer and J. Timothy Howard, the company’s
+ Vice Chairman and Chief Financial Officer.", "dateLastCrawled": "2018-11-10T04:22:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Form 10-K - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/d477952d10k.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/...",
+ "snippet": "In March 2012, FHFA instituted the 2012 conservatorship scorecard,
+ or the Conservatorship Scorecard, for use by both us and Fannie Mae that
+ established business objectives and performance targets and measures, and
+ provided the implementation roadmap for FHFA’s strategic plan for Freddie
+ Mac and Fannie Mae.", "dateLastCrawled": "2018-11-07T03:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/htm_29249.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/...",
+ "snippet": "Fannie Mae further disclosed that the Board of Directors no
+ longer had the power or duty to manage, direct or oversee the business and
+ affairs of Fannie Mae. On September 29, 2008, Daniel H. Mudd resigned from
+ the Board of Directors of Fannie Mae, effective immediately.", "dateLastCrawled":
+ "2018-11-13T12:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18", "name":
+ "exv10w3 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/y04304a1exv10w3.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/...",
+ "snippet": "Recognizing that Fannie Mae is the owner of the Servicing Rights
+ and Fannie Mae is the owner of the Assets, and subject to the other obligations
+ of Fannie Mae hereunder and under the Servicing Agreement, Subservicer will
+ during the term of this Agreement cooperate fully with the employees, agents
+ and representatives of Fannie Mae and ensure ...", "dateLastCrawled": "2018-11-16T00:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/htm_30584.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/...",
+ "snippet": "In accordance with new non-management director compensation practices
+ approved by FHFA, each Fannie Mae non-management director other than Mr.
+ Laskawy, the non-executive chairman of Fannie Mae’s Board of Directors,
+ will be paid a cash retainer at a rate of $160,000 per year for serving as
+ a Board member.", "dateLastCrawled": "2018-11-09T02:25:00.0000000Z", "language":
+ "en", "isNavigational": false}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:11 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=fannie%20mae%20(site:www.sec.gov/news)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:11 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 292C522A6FF94F83B02929A38AD24B29
+ Bingapis-Sessionid:
+ - C197DD06ABA84CF3AF8F28EEED81820C
+ X-Msedge-Clientid:
+ - 0AF66FD960CE630F0683637561826260
+ X-Msapi-Userstate:
+ - fb5c
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=159,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 292C522A6FF94F83B02929A38AD24B29 Ref B: BY3EDGE0310 Ref C: 2018-11-19T22:43:11Z'
+ Apim-Request-Id:
+ - b68dbf16-fa8a-4e0c-9852-4762681ab960
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:11 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "fannie
+ mae (site:www.sec.gov\/news)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=fannie+mae+(site%3awww.sec.gov%2fnews)",
+ "totalEstimatedMatches": 7450, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Testimony: Accounting Irregularities at Fannie Mae ...", "url":
+ "https:\/\/www.sec.gov\/news\/testimony\/2006\/ts061506cc.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/2006\/ts061506cc.htm",
+ "snippet": "Fannie Mae''s settlement of accounting fraud charges raises
+ another very significant policy issue, one that has been carefully considered
+ by members of this Committee: whether to require mandatory registration and
+ periodic reporting under the Exchange Act by Fannie Mae, Freddie Mac, and
+ the Federal Home Loan Banks.", "dateLastCrawled": "2018-11-14T16:16:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "SEC.gov | Bank of America Admits Disclosure Failures to ...",
+ "url": "https:\/\/www.sec.gov\/news\/press-release\/2014-172", "about": [{"name":
+ "Bank of America"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/press-release\/2014-172",
+ "snippet": "These uncertainties included whether Fannie Mae, a mortgage
+ loan purchaser from Bank of America, had changed its repurchase claim practices
+ after being put into conservatorship, the future volume of repurchase claims
+ from Fannie Mae and certain monoline insurance companies that provided credit
+ enhancements on certain mortgage loan sales, and ...", "dateLastCrawled":
+ "2018-11-09T23:12:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "UNITED STATES OF AMERICA SECURITIES AND EXCHANGE ...", "url": "https:\/\/www.sec.gov\/news\/press\/2011\/npa-pr2011-267-fanniemae.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2011\/npa-pr2011-267-fanniemae.pdf",
+ "snippet": "(the \"Respondent\" or \"Fannie Mae\") and others that occurred
+ in or about December 2006 through September 6, 2008, arising from, among other
+ things, public statements concerning Fannie Mae''s exposure to SUbprime
+ and Alt-A mortgages (collectively, the \"Investigation\").", "dateLastCrawled":
+ "2018-11-15T16:30:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "SEC Charges Former Fannie Mae and Freddie Mac Executives ...", "url":
+ "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267.htm", "about": [{"name":
+ "Freddie Mac"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267.htm",
+ "snippet": "Fannie Mae''s executives also knew and approved of the decision
+ to underreport Fannie Mae''s Alt-A loan exposure, the SEC alleged. Fannie
+ Mae disclosed that its March 31, 2007 exposure to Alt-A loans was 11 percent
+ of its portfolio of Single Family loans.", "dateLastCrawled": "2018-11-15T02:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "FREDDIE MAC FANNIE MAE Disclosed - SEC.gov", "url": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267-chart-subprime-exposure.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2011\/2011-267-chart-subprime...",
+ "snippet": "FREDDIE MAC SUBPRIME EXPOSURE: MISLEADING STATEMENTS Data as
+ of 2Q 2008 Source: Securities and Exchange Commission Disclosed $6 Billion
+ Disclosed $8 Billion Actual Estimated Holdings:", "dateLastCrawled": "2018-11-07T00:22:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "SEC News Digest, December 16, 2011", "url": "https:\/\/www.sec.gov\/news\/digest\/2011\/dig121611.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/digest\/2011\/dig121611.htm",
+ "snippet": "Fannie Mae''s executives also knew and approved of the decision
+ to underreport Fannie Mae''s Alt-A loan exposure, the SEC alleged. Fannie
+ Mae disclosed that its March 31, 2007 exposure to Alt-A loans was 11 percent
+ of its portfolio of Single Family loans.", "dateLastCrawled": "2018-11-03T07:20:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Enhancing Disclosure in the Mortgage-Backed - SEC", "url": "https:\/\/www.sec.gov\/news\/studies\/mortgagebacked.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/studies\/mortgagebacked.htm",
+ "snippet": "As a result, TBA market participants consider MBS of Fannie Mae,
+ Freddie Mac and Ginnie Mae that meet the Good Delivery Guidelines to be
+ interchangeable or fungible with other such MBS issued or guaranteed by Fannie
+ Mae, Freddie Mac or Ginnie Mae, respectively.", "dateLastCrawled": "2018-11-16T03:10:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Office of the Chief Accountant Issues Statement on Fannie ...",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2004-172.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2004-172.htm",
+ "snippet": "At the request of Fannie Mae, the accounting staff at the Commission
+ has been reviewing whether the accounting used by Fannie Mae complied with
+ Statement Nos. 91 and 133.", "dateLastCrawled": "2018-11-06T06:02:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "SEC Testimony: The Application of Federal Securities Law ...",
+ "url": "https:\/\/www.sec.gov\/news\/testimony\/ts021004alb.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/ts021004alb.htm",
+ "snippet": "Fannie Mae has filed with the Commission its 2002 annual report
+ on Form 10-K including audited financial statements, quarterly reports on
+ Form 10-Q containing unaudited financial statements, its proxy statement relating
+ to its annual meeting of shareholders and numerous current reports on Form
+ 8-K.", "dateLastCrawled": "2018-11-09T23:44:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Chairman Pitt''s Statement On Fannie Mae\/Freddie Mac ...", "url":
+ "https:\/\/www.sec.gov\/news\/speech\/spch574.htm", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/spch574.htm", "snippet":
+ "Although Fannie Mae''s and Freddie Mac''s decision to subject themselves
+ to the full panoply of Securities Exchange Act disclosures is voluntary, it
+ is now irrevocable without SEC approval. This addresses the concern that,
+ however complete their disclosures were, it was strictly a matter of choice,
+ not a requirement of law.", "dateLastCrawled": "2018-10-28T17:59:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "SEC and OFHEO Announce Resolution of Investigation and ...",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2006\/2006-80.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2006\/2006-80.htm",
+ "snippet": "Fannie Mae had a policy of not recording those amounts that
+ fell within a company-calculated threshold. Such a policy was an improper
+ departure from GAAP and had the effect of reducing earnings volatility.",
+ "dateLastCrawled": "2018-10-18T17:36:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "SEC Distributes $356 Million to Defrauded Fannie Mae Investors",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-219.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-219.htm",
+ "snippet": "The Fair Fund for Fannie Mae victims resulted from an enforcement
+ action in May 2006 in which Fannie Mae paid $350 million to settle SEC
+ charges that it issued materially false and misleading financial statements
+ in SEC filings and in various reports disseminated to investors.", "dateLastCrawled":
+ "2018-11-06T11:16:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Press Release: SEC Enhances Investor Protections Against ...", "url": "https:\/\/www.sec.gov\/news\/press\/2008\/2008-143.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2008\/2008-143.htm",
+ "snippet": "SEC Enhances Investor Protections Against Naked Short Selling
+ FOR IMMEDIATE RELEASE 2008-143. Washington, D.C., July 15, 2008 - The Securities
+ and Exchange Commission today issued an emergency order to enhance investor
+ protections against \"naked\" short selling in the securities of Fannie Mae,
+ Freddie Mac, and primary dealers at commercial and investment banks.", "dateLastCrawled":
+ "2018-11-09T08:06:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "Statement regarding Fannie Mae - SEC.gov", "url": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306lct.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306lct.htm",
+ "snippet": "Fannie Mae also sought, without any basis in the accounting
+ literature, to fit the vast majority of its transactions into a hedge accounting
+ exception, even though the transactions simply did not qualify for such treatment
+ under GAAP.", "dateLastCrawled": "2018-11-04T09:01:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "SEC Announces Start of $357 Million Fair Fund Distribution ...",
+ "url": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-81.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/press\/2007\/2007-81.htm",
+ "snippet": "The SEC brought a settled action against Fannie Mae in May
+ 2006 alleging that, between 1998 and 2004, Fannie Mae issued materially
+ false and misleading financial statements in various reports and in filings
+ with the SEC.", "dateLastCrawled": "2018-10-14T10:42:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Remarks at Joint News Conference with OFHEO - SEC", "url": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306cc.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/2006\/spch052306cc.htm",
+ "snippet": "Fannie Mae describes itself as \"an instrument of national policy\"
+ and as \"a private company with a public mission.\" For that reason, today''s
+ announcement is especially bitter — because it underscores a breach of trust.",
+ "dateLastCrawled": "2018-11-12T06:58:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Accounting for Deferred Purchase Price Adjustments and for ...",
+ "url": "https:\/\/www.sec.gov\/news\/testimony\/ts020905dtn.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/ts020905dtn.htm",
+ "snippet": "Fannie Mae is the largest non-bank financial services company
+ in the world and the nation''s largest source of financing for home mortgages.
+ 2 Fannie Mae''s common stock is listed on the New York Stock Exchange and,
+ after discussions with the Commission staff, on March 31, 2003, Fannie Mae
+ voluntarily registered its common stock with the ...", "dateLastCrawled":
+ "2018-11-09T21:35:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "SEC Speech: \"Message from the Chairman\" in SEC’s 2008 ...", "url":
+ "https:\/\/www.sec.gov\/news\/speech\/2008\/spch111408cc.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/speech\/2008\/spch111408cc.htm",
+ "snippet": "In addition, the Housing and Economic Recovery Act of 2008 gives
+ the SEC Chairman similar oversight and advisory responsibilities with respect
+ to the conservatorship of Fannie Mae and Freddie Mac supervised by the Federal
+ Housing Finance Agency.", "dateLastCrawled": "2018-11-09T19:51:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Testimony Concerning the Role of Federal Regulators ...", "url":
+ "https:\/\/www.sec.gov\/news\/testimony\/2008\/ts102308cc.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/2008\/ts102308cc.htm",
+ "snippet": "Fannie Mae and Freddie Mac, which got affordable housing credit
+ for buying subprime securitized loans, became a magnet for the creation of
+ enormous volumes of increasingly complex securities that repackaged these
+ mortgages.", "dateLastCrawled": "2018-11-08T15:41:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "SEC Testimony: Application of Federal Securities Law ...", "url":
+ "https:\/\/www.sec.gov\/news\/testimony\/ts042105alb.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/news\/testimony\/ts042105alb.htm",
+ "snippet": "Fannie Mae has disclosed that the Commission is investigating
+ certain issues associated with Fannie Mae''s accounting and disclosure practices.
+ I and others at the Commission appreciate the Committee''s recognition of
+ the non-public nature of the Commission''s active investigation.", "dateLastCrawled":
+ "2018-10-27T17:35:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:12 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=fannie%20mae%20(site:sec.gov/archives/edgar/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:12 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 71E3BED594E8442BA5D9A11531C4C3BA
+ Bingapis-Sessionid:
+ - 73A11D575A254A95BBF2F63EF4D9D66C
+ X-Msedge-Clientid:
+ - 1C1EBDB0B67165DA3A31B11CB73D64B2
+ X-Msapi-Userstate:
+ - 507f
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=371,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 71E3BED594E8442BA5D9A11531C4C3BA Ref B: BY3EDGE0415 Ref C: 2018-11-19T22:43:12Z'
+ Apim-Request-Id:
+ - 75b8526a-5ace-4dda-aeaf-d2ad01ad5afe
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:12 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "fannie
+ mae (site:sec.gov\/archives\/edgar\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=fannie+mae+(site%3asec.gov%2farchives%2fedgar%2f)",
+ "totalEstimatedMatches": 8180, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "sec.gov", "url": "https:\/\/sec.gov\/Archives\/edgar\/data\/310522\/000031052216000453\/fanniemae201510k.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/sec.gov\/...\/310522\/000031052216000453\/fanniemae201510k.htm",
+ "snippet": "sec.gov", "dateLastCrawled": "2018-11-09T01:03:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/000031052216000569\/fanniemaeq20630201610q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) that
+ was chartered by Congress in 1938. We serve an essential role in the functioning
+ of the U.S. housing market and are investing in improvements to the U.S. housing
+ finance system.", "dateLastCrawled": "2018-11-11T15:04:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Ex-10.35 - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000119312512087297\/d282546dex1035.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000119312512087297\/d282546dex1035.htm",
+ "snippet": "Exhibit 10.35 . FANNIE MAE . RESTRICTED STOCK UNITS AWARD
+ . Award Document . This grant of units of Restricted Stock from Fannie Mae
+ (the “Award”) is made to you as an Eligible Employee (the “Awardee”) effective
+ as of the date of grant set forth in the grant detail available for you to
+ view on the UBS website.", "dateLastCrawled": "2018-10-26T00:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/310522\/000031052218000107\/fanniemae201710k.htm",
+ "snippet": "Fannie Mae provides a stable source of liquidity to the mortgage
+ market and increases the availability and affordability of housing in the
+ United States. We operate in the secondary mortgage market, primarily working
+ with lenders. We do not originate loans or lend money directly to consumers
+ in the primary mortgage market.", "dateLastCrawled": "2018-11-03T15:28:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "def14a - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/w48664def14a.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095013308001442\/...",
+ "snippet": "You are entitled to vote or direct the voting of your shares of
+ Fannie Mae common stock if you were a shareholder at the close of business
+ on March 21, 2008, which is the record date for the annual meeting (the “Record
+ Date”).", "dateLastCrawled": "2018-10-27T06:51:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/000031052217000217\/fanniemaeq20630201710q.htm",
+ "snippet": "Fannie Mae is a government-sponsored enterprise (“GSE”) chartered
+ by Congress. We serve as a stable source of liquidity for purchases of homes
+ and financing of multifamily rental housing, as well as for refinancing existing
+ mortgages.", "dateLastCrawled": "2018-10-27T07:28:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Document", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052217000434\/fanniemae8konfhfa2018score.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae8konfhfa2018score.htm",
+ "snippet": "For loans funded under the Fannie Mae Green Building Certification
+ program or the Freddie Mac Green Certified program, FHFA will exclude 50 percent
+ of the loan amount if at least 20 percent but less than 50 percent of the
+ unit rents are affordable by applying the income limits in . 6.", "dateLastCrawled":
+ "2018-11-15T05:15:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "FannieMae2012 10K EX 10.9 Supp Pension Plan of 2003 as ...", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052213000065\/fanniemae201210kex109suppp.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemae201210kex109suppp.htm",
+ "snippet": "1.1. Establishment.Fannie Mae (the “Corporation”) establishes
+ this Fannie Mae Supplemental Pension Plan of 2003 for the benefit of eligible
+ employees of the Corporation and their beneficiaries.", "dateLastCrawled":
+ "2018-10-27T13:47:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "FannieMae Q3.09.30.2012 EX 4.1 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/000031052212000141\/fanniemaeq309302012ex41.htm",
+ "snippet": "FANNIE MAE . AMENDED AND RESTATED CERTIFICATE OF DESIGNATION
+ OF TERMS OF. VARIABLE LIQUIDATION PREFERENCE SENIOR. PREFERRED STOCK, SERIES
+ 2008-2. The Federal Housing Finance Agency, exercising its authority pursuant
+ to Section 1367(b) of the Federal Housing Enterprises Financial Safety and
+ Soundness Act of 1992 (12 U.", "dateLastCrawled": "2018-11-05T15:41:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "FannieMaeCharterActExhibit31", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000031052215000179\/fanniemaecharteractexhibit.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/...\/fanniemaecharteractexhibit.htm",
+ "snippet": "The Congress declares that the purposes of this title are to establish
+ secondary market facilities for residential mortgages, to provide that the
+ operations thereof shall be financed by private capital to the maximum extent
+ feasible, and to authorize such facilities to—", "dateLastCrawled": "2018-11-06T10:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/htm_25985.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308001262\/...",
+ "snippet": "The \"Charter Act\" refers to the Federal National Mortgage Association
+ Charter Act, which sets forth the activities that Fannie Mae may conduct,
+ authorizes Fannie Mae to issue debt and equity securities, and describes
+ Fannie Mae''s general corporate powers.", "dateLastCrawled": "2018-11-13T11:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "www.sec.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/v406246_ex10-3.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1442626\/000114420415020620\/...",
+ "snippet": "The Tenants in Common have obtained a loan in the original principal
+ amount of $26,705,000.00 from Walker & Dunlop, LLC, which loan has been assigned
+ to Fannie Mae (“Lender”) for the financing of the Property (\"Loan\") and,
+ in connection therewith, entering into various documents evidencing and securing
+ the Loan (the “Loan Documents ...", "dateLastCrawled": "2018-11-05T13:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Master Custodial Agreement for Custody of Single Family ...", "url":
+ "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/dex1026.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1518715\/000119312511144488\/...",
+ "snippet": "3 RECITALS. This Custodial Agreement is executed by, and delivered
+ to, each of Fannie Mae, Custodian, and Lender, as of the effective date,
+ all as indicated on the cover page hereof.. WHEREAS, Lender is (or will become)
+ the Servicer of certain Mortgage Loans pursuant to a Mortgage Selling and
+ Servicing Contract with Fannie Mae, and may or may not be the Seller with
+ respect to those Mortgage Loans;", "dateLastCrawled": "2018-10-27T06:05:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "exv10w44 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/w77413exv10w44.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000095012310018235\/...",
+ "snippet": "The purpose of this Retainer Letter (“Retainer Letter”) and the
+ attached Fannie Mae Outside Counsel Guidelines (“Guidelines”), incorporated
+ into this Retainer Letter by reference, is to clarify and memorialize the
+ principles under which you provide legal services (“Services”) to Fannie
+ Mae.", "dateLastCrawled": "2018-10-31T08:04:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Fannie Mae As Soon As Pooled Agreement - SEC.gov", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/dex1033.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1283683\/000119312504045739\/...",
+ "snippet": "(b) From time to time the parties hereto may enter into transactions
+ in which Lender agrees to transfer to Fannie Mae Mortgage Loans against
+ the transfer of funds by Fannie Mae (as described herein), with a simultaneous
+ agreement by Fannie Mae to transfer to Lender each such Mortgage Loan on
+ the Repurchase Date related to such Mortgage Loan in accordance with the terms
+ set forth herein ...", "dateLastCrawled": "2018-11-05T01:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/htm_29249.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308004619\/...",
+ "snippet": "Fannie Mae further disclosed that the Board of Directors no
+ longer had the power or duty to manage, direct or oversee the business and
+ affairs of Fannie Mae. On September 29, 2008, Daniel H. Mudd resigned from
+ the Board of Directors of Fannie Mae, effective immediately.", "dateLastCrawled":
+ "2018-11-13T12:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/htm_2364.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993304002429\/...",
+ "snippet": "The financial information regarding Fannie Mae’s anticipated
+ results of operations for the quarter ended September 30, 2004 that was contained
+ in Fannie Mae’s Form 12b-25 filed on November 15, 2004 and in Fannie Mae’s
+ Form 8-K filed on November 16, 2004 was prepared applying the same policies
+ and practices, and should also not be relied upon.", "dateLastCrawled": "2018-11-13T16:09:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "exv10w3 - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/y04304a1exv10w3.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1507951\/000095012311010492\/...",
+ "snippet": "Recognizing that Fannie Mae is the owner of the Servicing Rights
+ and Fannie Mae is the owner of the Assets, and subject to the other obligations
+ of Fannie Mae hereunder and under the Servicing Agreement, Subservicer will
+ during the term of this Agreement cooperate fully with the employees, agents
+ and representatives of Fannie Mae and ensure ...", "dateLastCrawled": "2018-11-16T00:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Form 10-K - SEC.gov | HOME", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/d477952d10k.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/1026214\/000119312513084154\/...",
+ "snippet": "In March 2012, FHFA instituted the 2012 conservatorship scorecard,
+ or the Conservatorship Scorecard, for use by both us and Fannie Mae that
+ established business objectives and performance targets and measures, and
+ provided the implementation roadmap for FHFA’s strategic plan for Freddie
+ Mac and Fannie Mae.", "dateLastCrawled": "2018-11-07T03:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Federal National Mortgage Association (Form: 8-K)", "url": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/htm_30584.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/Archives\/edgar\/data\/310522\/000129993308006051\/...",
+ "snippet": "On November 24, 2008, FHFA, as conservator, reconstituted Fannie
+ Mae''s Board of Directors and directed Fannie Mae regarding the function
+ and authorities of the Board of Directors. The directors of Fannie Mae shall
+ serve on behalf of the conservator and shall exercise their authority as directed
+ by the conservator.", "dateLastCrawled": "2018-11-09T02:25:00.0000000Z", "language":
+ "en", "isNavigational": false}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:12 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_federal_register_documents.yml b/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_federal_register_documents.yml
index 39c07d4ce5..d23ba295b2 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_federal_register_documents.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_federal_register_documents.yml
@@ -430,4 +430,968 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:22 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=collection%20(site:noaa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4273'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:52 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2479883570706EFA3164849971A76F9F; path=/; expires=Sat, 14-Dec-2019 22:41:52
+ GMT; domain=bingapis.com
+ - MUIDB=2479883570706EFA3164849971A76F9F; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:52 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:52 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=3607F7A128664BEA93A1FD56369ACA04&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:52 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:52
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0E7AB0B3A8136B931CE8BC1FA9C46A4A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:52 GMT; domain=bingapis.com
+ - _SS=SID=0E7AB0B3A8136B931CE8BC1FA9C46A4A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 8616AD20C15740E3A6367251ED31E69C
+ X-Msedge-Clientid:
+ - 2479883570706EFA3164849971A76F9F
+ X-Msapi-Userstate:
+ - 682d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 8616AD20C15740E3A6367251ED31E69C Ref B: CO1EDGE0514 Ref C: 2018-11-19T22:41:52Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:52 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=2885EBBE99AA454EBC64A8AE4353FC2C&CID=2479883570706EFA3164849971A76F9F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=2885EBBE99AA454EBC64A8AE4353FC2C&CID=2479883570706EFA3164849971A76F9F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=collection+(site%3anoaa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5402.1", "totalEstimatedMatches": 507000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Collections | NOAA Central Library", "url": "https:\/\/library.noaa.gov\/Collections",
+ "urlPingSuffix": "DevEx,5058.1", "displayUrl": "https:\/\/library.noaa.gov\/Collections",
+ "snippet": "TIROS & Satellite Meteorology Digital Collection This collection
+ features resources on meteorological satellites and satellite meteorology
+ and was initiall created to mark and the celebration of the 50th Anniversary
+ of the launch of TIROS I, the first meteorological satellite, in April 1,
+ 1960.", "dateLastCrawled": "2018-11-09T06:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "A Collection of Sounds from the Sea - oceanexplorer.noaa.gov",
+ "url": "https:\/\/oceanexplorer.noaa.gov\/explorations\/sound01\/background\/seasounds\/seasounds.html",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/oceanexplorer.noaa.gov\/explorations\/sound01\/background\/sea...",
+ "snippet": "Spectrograms are a means of visualizing the energy and pitch of
+ a particular sound. In this example of a blue whale call, the spectrogram
+ (upper image) plots time (horizontal axis) versus frequency (vertical axis),
+ with warm colors representing high acoustic intensity.", "dateLastCrawled":
+ "2018-11-17T03:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "NOAA 200th: Collections - Survey Towers", "url": "https:\/\/celebrating200years.noaa.gov\/survey_towers\/welcome.html",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/celebrating200years.noaa.gov\/survey_towers\/welcome.html",
+ "snippet": "This collection of photos and drawings of 10 survey towers traces
+ the evolution of the towers used by Coast and Geodetic Survey surveyors from
+ the mid-1800s through the 1970s to obtain the clear lines-of-sight needed
+ to conduct the surveys that are the backbone of our nation''s spatial reference
+ framework.", "dateLastCrawled": "2018-11-14T11:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Water cycle | National Oceanic and Atmospheric Administration", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/water-cycle", "urlPingSuffix":
+ "DevEx,5095.1", "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/water-cycle",
+ "snippet": "The water cycle provides the opportunity to explore the Nature
+ of Science including; the use of models and empirical evidence based explanations
+ as described in the Next Generation Science Standards. offsite link This Collection
+ provides real-time and historic data sources that track and measure the water
+ in different parts of the water cycle ...", "dateLastCrawled": "2018-11-14T17:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "NOAA 200th
+ Collections", "url": "https:\/\/celebrating200years.noaa.gov\/collections.html",
+ "urlPingSuffix": "DevEx,5109.1", "displayUrl": "https:\/\/celebrating200years.noaa.gov\/collections.html",
+ "snippet": "The NOAA 200th anniversary Collections featured here are simple
+ presentations of five to 20 objects that have significance in marine history,
+ research, human\/sea interactions, or human understanding of the sea. Each
+ collection illustrates an underlying theme or principle, such as the evolution
+ of technology, which ties all the objects in the collection together.",
+ "dateLastCrawled": "2018-11-09T09:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Collection - National Weather Service", "url": "http:\/\/www.nws.noaa.gov\/iscs\/collection.html",
+ "urlPingSuffix": "DevEx,5123.1", "displayUrl": "www.nws.noaa.gov\/iscs\/collection.html",
+ "snippet": "Product Collection and Dissemination For Network (RMTN) Systems
+ NWS eMail Data Input System (EDIS) - Operational. The NWS eMail Data Input
+ System (EDIS) is a procedure that allows designated meteorological data providers
+ the capability to input weather bulletins to the National Weather Service
+ Telecommunication Gateway (NWSTG) - also known as ...", "dateLastCrawled":
+ "2018-11-04T01:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "NOAA 200th Collections - Distance Measurement Tools", "url": "https:\/\/celebrating200years.noaa.gov\/distance_tools\/",
+ "urlPingSuffix": "DevEx,5135.1", "displayUrl": "https:\/\/celebrating200years.noaa.gov\/distance_tools",
+ "snippet": "This is a collection of 17 images that illustrate the history
+ and development of the instruments and techniques used to make extremely accurate
+ distance measurements by the U. S. Coast and Geodetic Survey (C&GS), the surveying
+ arm of which was renamed the National Geodetic Survey (NGS) in 1970.", "dateLastCrawled":
+ "2018-11-16T08:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Digital Collections | NOAA Central Library", "url": "https:\/\/library.noaa.gov\/Collections\/Digital-Docs",
+ "urlPingSuffix": "DevEx,5148.1", "displayUrl": "https:\/\/library.noaa.gov\/Collections\/Digital-Docs",
+ "snippet": "This collection provides access to historical daily synoptic
+ weather maps for the northern hemisphere from 1899 to 1971. Monthly Weather
+ Review Free access from 1871 to 1973 in cooperation with the American Meteorological
+ Society.", "dateLastCrawled": "2018-11-04T10:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Tsunamis | National Oceanic and Atmospheric Administration", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/tsunamis", "urlPingSuffix":
+ "DevEx,5160.1", "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/tsunamis",
+ "snippet": "Ocean Today Tsunami Science and Safety collection. Tsunami basics
+ video (7 min.) Tsunami on Science on a Sphere (8 min.) Pacific Tsunami Warning
+ Center animations and short videos. Tsunami data visualizations and short
+ videos (Science on a Sphere) Real world data. U.S. Tsunami Warning System.",
+ "dateLastCrawled": "2018-11-15T20:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Resource collections | National Oceanic and Atmospheric ...", "url":
+ "https:\/\/www.noaa.gov\/education\/education-resource-collections", "urlPingSuffix":
+ "DevEx,5172.1", "displayUrl": "https:\/\/www.noaa.gov\/education\/education-resource-collections",
+ "snippet": "Education resources are distributed across many websites and program
+ offices at NOAA and partner websites. This portal is designed to help you
+ access these resources from one location.", "dateLastCrawled": "2018-11-15T12:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "NOAA
+ 200th: Collections: Theodolites", "url": "https:\/\/celebrating200years.noaa.gov\/theodolites\/welcome.html",
+ "urlPingSuffix": "DevEx,5186.1", "displayUrl": "https:\/\/celebrating200years.noaa.gov\/theodolites\/welcome.html",
+ "snippet": "An Angular Point of View: A Photo Collection Illustrating the
+ History of Theodolites at the National Geodetic Survey. Used to measure
+ horizontal and vertical angles, the theodolite remained the backbone of geodetic
+ surveys from the 1800s until the early 1980s.", "dateLastCrawled": "2018-11-10T08:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "NOAA
+ Photo Library - About the Collection", "url": "https:\/\/www.photolib.noaa.gov\/about.html",
+ "urlPingSuffix": "DevEx,5199.1", "displayUrl": "https:\/\/www.photolib.noaa.gov\/about.html",
+ "snippet": "The NOAA collection spans centuries of time and much of the
+ natural world from the center of the Earth to the surface of the Sun. Because
+ of this broad base of scientific expertise and the geographic range under
+ which NOAA science and observations are conducted, the NOAA collection includes
+ thousands of weather and space images ...", "dateLastCrawled": "2018-11-13T17:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Coral
+ ecosystems | National Oceanic and Atmospheric ...", "url": "https:\/\/www.noaa.gov\/resource-collections\/coral-ecosystems",
+ "urlPingSuffix": "DevEx,5211.1", "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/coral-ecosystems",
+ "snippet": "Educators can use the resources in this Collection to teach
+ their students about the science and beauty of corals. They can use these
+ organisms and ecosystems to teach many scientific concepts including symbiotic
+ relationships, reproduction strategies, food webs, chemistry, biotic and abiotic
+ interactions, human impacts, etc. Additionally ...", "dateLastCrawled": "2018-11-13T07:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "About
+ the education resource collections | National ...", "url": "https:\/\/www.noaa.gov\/about-education-resource-collections",
+ "urlPingSuffix": "DevEx,5223.1", "displayUrl": "https:\/\/www.noaa.gov\/about-education-resource-collections",
+ "snippet": "Each Collection contains 15-25 finely grained resources vetted
+ by the NOAA education team to support teaching in formal and informal settings.
+ The key characteristics of the resources in the Collections are: Provide real
+ world and current science.", "dateLastCrawled": "2018-11-12T22:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Coast
+ Survey''s Historical Map & Chart Collection", "url": "https:\/\/historicalcharts.noaa.gov\/collections.html",
+ "urlPingSuffix": "DevEx,5237.1", "displayUrl": "https:\/\/historicalcharts.noaa.gov\/collections.html",
+ "snippet": "A collection of Coast Survey maps and sketches throughout the
+ Civil War. Nautical Charts Contribute to Economic Growth and National Defense
+ This report contains a collection of historically significant Coast Survey
+ charts and documents.", "dateLastCrawled": "2018-11-09T03:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Digital
+ Coast Data", "url": "https:\/\/coast.noaa.gov\/dataregistry\/search\/collection",
+ "urlPingSuffix": "DevEx,5252.1", "displayUrl": "https:\/\/coast.noaa.gov\/dataregistry\/search\/collection",
+ "snippet": "The Digital Coast was developed to meet the unique needs of
+ the coastal management community. The website provides coastal data, and the
+ tools, training, and information needed to make these data truly useful.",
+ "dateLastCrawled": "2018-11-10T06:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "History - GOES Data Collection System", "url": "https:\/\/www.noaasis.noaa.gov\/DCS\/history.html",
+ "urlPingSuffix": "DevEx,5264.1", "displayUrl": "https:\/\/www.noaasis.noaa.gov\/DCS\/history.html",
+ "snippet": "The GOES Data Collection System (DCS) began operating in the
+ early 1970''s, but it origin''s trace back to the mid\/late 1960s with the
+ Application Technology Satellite (ATS) that will celebrate its 50th anniversary
+ on December 7, 2016. The ATS was the forerunner of the GOES program.", "dateLastCrawled":
+ "2018-11-06T19:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Hawaii Aquarium Collecting Fishery | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/national\/marine-mammal-protection\/hawaii-aquarium-collecting-fishery",
+ "urlPingSuffix": "DevEx,5276.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/national\/marine-mammal-protection\/...",
+ "snippet": "Divers use hand collection methods, sometimes in combination
+ with the placement of short, bottom-set barrier nets. Nets are usually less
+ than 200 ft in length or 10 ft in height, operate in depths less than 100
+ ft, and are actively tended.", "dateLastCrawled": "2018-11-17T10:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "MONITOR
+ NMS -- The MONITOR Collection", "url": "https:\/\/monitor.noaa.gov\/expeditions\/log072603.html",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/monitor.noaa.gov\/expeditions\/log072603.html",
+ "snippet": "After series of training dives and a bout of bad weather offshore,
+ July 26 was the first dive day on the Monitor.Objectives were kept simple.
+ Divers were to obtain some overall video of the site to give us a permanent
+ record of the current conditions of the wreck.", "dateLastCrawled": "2018-11-11T00:23:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "All resource
+ collections | National Oceanic and ...", "url": "https:\/\/www.noaa.gov\/resource-collections\/",
+ "urlPingSuffix": "DevEx,5300.1", "displayUrl": "https:\/\/www.noaa.gov\/resource-collections",
+ "snippet": "2019 Science Olympiad: Glaciers, glaciation, and long-term climate
+ change", "dateLastCrawled": "2018-11-04T08:51:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:53 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=tuna%20(site:noaa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4346'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3B1DC87FB61C65E20637C4D3B7CB6452; path=/; expires=Sat, 14-Dec-2019 22:41:53
+ GMT; domain=bingapis.com
+ - MUIDB=3B1DC87FB61C65E20637C4D3B7CB6452; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:53 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:53 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C2018389F30443E9B88B863026582578&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:53 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:53
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=01135F0FC5FB674E3DBC53A3C42C663D; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:53 GMT; domain=bingapis.com
+ - _SS=SID=01135F0FC5FB674E3DBC53A3C42C663D; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 7326163592DE4DB081F3C0AB861CDA60
+ X-Msedge-Clientid:
+ - 3B1DC87FB61C65E20637C4D3B7CB6452
+ X-Msapi-Userstate:
+ - 48b3
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 7326163592DE4DB081F3C0AB861CDA60 Ref B: CO1EDGE0519 Ref C: 2018-11-19T22:41:53Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=9A9B314738274F2B92C4C74040484E5E&CID=3B1DC87FB61C65E20637C4D3B7CB6452&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=9A9B314738274F2B92C4C74040484E5E&CID=3B1DC87FB61C65E20637C4D3B7CB6452&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=tuna+(site%3anoaa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5407.1", "totalEstimatedMatches": 121000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Tuna - National Oceanic and Atmospheric Administration", "url": "https:\/\/www.st.nmfs.noaa.gov\/observer-home\/regions\/pacificislands\/tuna",
+ "urlPingSuffix": "DevEx,5057.1", "displayUrl": "https:\/\/www.st.nmfs.noaa.gov\/observer-home\/regions\/pacificislands\/tuna",
+ "snippet": "To observe and document all species caught, including sea turtles,
+ seabirds, marine mammals, swordfish, tunas, sharks, and other non-target fishes.",
+ "dateLastCrawled": "2018-10-27T17:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Pacific Bluefin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-bluefin-tuna",
+ "urlPingSuffix": "DevEx,5070.1", "about": [{"name": "Pacific bluefin tuna"}],
+ "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-bluefin-tuna",
+ "snippet": "About the Species. Although Pacific-wide populations are well
+ below target levels, U.S. wild-caught Pacific bluefin tuna is a smart seafood
+ choice because it is sustainably managed under rebuilding measures that limit
+ harvest by U.S. fishermen.", "dateLastCrawled": "2018-11-06T07:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Atlantic
+ Yellowfin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/atlantic-yellowfin-tuna",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/atlantic-yellowfin-tuna",
+ "snippet": "U.S. wild-caught Atlantic yellowfin tuna is a smart seafood
+ choice because it is sustainably managed and responsibly harvested under U.S.
+ regulations. Fishing gears used to harvest yellowfin tuna have almost no
+ impact on habitat because they’re used in the water column and don’t come
+ into ...", "dateLastCrawled": "2018-11-08T21:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "NMFS Permit Shop", "url": "https:\/\/hmspermits.noaa.gov\/default.asp",
+ "urlPingSuffix": "DevEx,5096.1", "about": [{"name": "National Marine Fisheries
+ Service"}], "displayUrl": "https:\/\/hmspermits.noaa.gov\/default.asp",
+ "snippet": "NMFS Permit Shop. Welcome to the National Marine Fisheries Service
+ (NMFS) online Permit Shop, where you can buy and renew federal permits for
+ Atlantic Highly Migratory Species (tunas, billfishes, swordfish, and sharks),
+ update permit information, and report landings of bluefin tuna, blue marlin,
+ white marlin, roundscale spearfish, sailfish, and swordfish.", "dateLastCrawled":
+ "2018-11-15T11:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Pacific Skipjack Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-skipjack-tuna",
+ "urlPingSuffix": "DevEx,5109.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-skipjack-tuna",
+ "snippet": "U.S. wild-caught Pacific skipjack tuna is a smart seafood choice
+ because it is sustainably managed and responsibly harvested under U.S. regulations.
+ Skipjack tuna do not have scales except on the corselet and the lateral
+ line. The corselet is a band of large, thick scales forming a circle around
+ the ...", "dateLastCrawled": "2018-11-05T19:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Tuna - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/textblock.aspx?id=1002&ParentMenuId=189",
+ "urlPingSuffix": "DevEx,5123.1", "displayUrl": "https:\/\/swfsc.noaa.gov\/textblock.aspx?id=1002&ParentMenuId=189",
+ "snippet": "Pacific Tuna Research and Albacore Research include investigations
+ on biology, physiology, ecology and migration as well as distribution and
+ abundance, population genetic structure, and fishery interactions for various
+ species. General information on several of these species are listed below:",
+ "dateLastCrawled": "2018-11-13T23:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "The Tuna-Dolphin Issue - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/textblock.aspx?Division=PRD&ParentMenuId=228&id=1408",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "https:\/\/swfsc.noaa.gov\/textblock.aspx?Division=PRD&ParentMenuId=...",
+ "snippet": "The concept of Dolphin-Safe tuna—tuna caught without setting
+ on dolphins (i.e., in log and school sets)—became popular. The trade actions
+ were important because the United States is a large market for the canned
+ tuna product of the fishery.", "dateLastCrawled": "2018-11-15T01:23:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Pacific
+ Yellowfin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-yellowfin-tuna",
+ "urlPingSuffix": "DevEx,5150.1", "about": [{"name": "Tuna"}], "displayUrl":
+ "https:\/\/www.fisheries.noaa.gov\/species\/pacific-yellowfin-tuna", "snippet":
+ "U.S. wild-caught Pacific yellowfin tuna is a smart seafood choice because
+ it is sustainably managed and responsibly harvested under U.S. regulations.
+ Yellowfin tuna are torpedo-shaped. They are metallic dark blue on the back
+ and upper sides and change from yellow to silver on the belly. True to ...",
+ "dateLastCrawled": "2018-11-08T08:03:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "NMFS Permit Shop News", "url": "https:\/\/hmspermits.noaa.gov\/news",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/hmspermits.noaa.gov\/news",
+ "snippet": "The National Marine Fisheries Service (NMFS) closed the Atlantic
+ bluefin tuna (BFT) Angling category fishery for large medium and giant \"trophy\"
+ BFT (measuring 73\" or greater) in the southern area effective 11:30 p.m.
+ local time, March 17, 2018, and the fishery will remain closed through December
+ 31, 2018.", "dateLastCrawled": "2018-11-15T08:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Pacific bluefin Tuna - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/uploadedFiles\/Divisions\/FRD\/Large_Pelagics\/Tuna\/Bluefin%20tuna%20fact%20sheet%2027Aug15.pdf",
+ "urlPingSuffix": "DevEx,5177.1", "displayUrl": "https:\/\/swfsc.noaa.gov\/uploadedFiles\/Divisions\/FRD\/Large_Pelagics...",
+ "snippet": "west. coast region. Pacific bluefin Tuna. With their streamlined
+ bodies and powerful tails, Pacific bluefin tuna are some of fastest fish
+ in the ocean.", "dateLastCrawled": "2018-11-10T19:31:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Pacific Albacore
+ Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-albacore-tuna",
+ "urlPingSuffix": "DevEx,5188.1", "about": [{"name": "Albacore"}], "displayUrl":
+ "https:\/\/www.fisheries.noaa.gov\/species\/pacific-albacore-tuna", "snippet":
+ "U.S. wild-caught Pacific albacore tuna is a smart seafood choice because
+ it is sustainably managed and responsibly harvested under U.S. regulations.
+ Albacore tuna have torpedo-shaped bodies, smooth skin, and streamlined fins.
+ They are metallic, dark blue on the back with dusky to silvery white ...",
+ "dateLastCrawled": "2018-11-07T09:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "2018 Commercial Landings of Atlantic Bluefin Tuna | NOAA ...",
+ "url": "https:\/\/www.fisheries.noaa.gov\/new-england-mid-atlantic\/commercial-fishing\/2018-commercial-landings-atlantic-bluefin-tuna",
+ "urlPingSuffix": "DevEx,5200.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/new-england-mid-atlantic\/commercial...",
+ "snippet": "2018 Commercial Landings of Atlantic Bluefin Tuna These notices
+ are a courtesy to Atlantic tuna fishery interests to keep you informed about
+ the fishery. Official notice of federal fishery actions is made through a
+ filing with the Office of the Federal Register.", "dateLastCrawled": "2018-11-12T03:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Western
+ Atlantic Bluefin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/western-atlantic-bluefin-tuna",
+ "urlPingSuffix": "DevEx,5213.1", "about": [{"name": "Atlantic bluefin tuna"},
+ {"name": "Tuna"}], "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/western-atlantic-bluefin-tuna",
+ "snippet": "The Gulf of Mexico is the only known spawning area for the western
+ stock of Atlantic bluefin tuna, and protecting these fish during spawning
+ can help the long-term rebuilding of the depleted bluefin tuna population.",
+ "dateLastCrawled": "2018-11-10T04:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "NMFS Help Desk: Renewing An Old Permit", "url": "https:\/\/hmspermits.noaa.gov\/renewOldPermit",
+ "urlPingSuffix": "DevEx,5227.1", "displayUrl": "https:\/\/hmspermits.noaa.gov\/renewOldPermit",
+ "snippet": "Welcome to the National Marine Fisheries Service Permit Shop
+ where you can currently buy initial and renewal permits for Atlantic tunas
+ and Atlantic Highly Migratory Species (HMS), update permit information,
+ and report recreational landings of bluefin tuna, blue marlin, white marlin,
+ sailfish, and swordfish.", "dateLastCrawled": "2018-11-15T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Bluefin
+ Tuna | Ocean Today", "url": "https:\/\/oceantoday.noaa.gov\/bluefintuna\/",
+ "urlPingSuffix": "DevEx,5246.1", "displayUrl": "https:\/\/oceantoday.noaa.gov\/bluefintuna",
+ "snippet": "If fish were cars the bluefin tuna would be the Ferraris. That’s
+ how sleek their lines are…and how quickly they accelerate. And how expensive
+ they can be… especially at fish markets like this one in Japan….where sushi
+ lovers have long coveted the rich red meat of the bluefin. Here, a ...", "dateLastCrawled":
+ "2018-11-05T08:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "TUNA - westcoast.fisheries.noaa.gov", "url": "https:\/\/www.westcoast.fisheries.noaa.gov\/publications\/fishery_management\/iattc_info\/1950tuna-conventions_act.pdf",
+ "urlPingSuffix": "DevEx,5257.1", "displayUrl": "https:\/\/www.westcoast.fisheries.noaa.gov\/publications\/fishery...",
+ "snippet": "Sec. 4 TUNA CONVENTIONS ACT OF 1950 4 1 Fishery management functions
+ of the Secretary of the Interior under this Act were trans- ferred to the
+ Secretary of Commerce by Reorganization Plan No. 4 of 1970 (5 U.S.C. App.).
+ pensation or tort claims liability as provided in chapter 81 of title", "dateLastCrawled":
+ "2018-11-09T02:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Atlantic Bluefin Tuna Angling Category Fishery: Southern ...",
+ "url": "https:\/\/www.fisheries.noaa.gov\/bulletin\/atlantic-bluefin-tuna-angling-category-fishery-southern-area-trophy-fishery-closing",
+ "urlPingSuffix": "DevEx,5268.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/bulletin\/atlantic-bluefin-tuna...",
+ "snippet": "Based on reported landings of 2.1 mt from the NOAA Fisheries Automated
+ Catch Reporting System and the North Carolina Tagging Program as of March
+ 9, 2018, NOAA Fisheries has determined that the codified Angling category
+ southern area trophy bluefin tuna subquota has been reached and exceeded
+ and that the trophy fishery should be closed in that area.", "dateLastCrawled":
+ "2018-11-08T22:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Dolphin-Safe | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/national\/marine-mammal-protection\/dolphin-safe",
+ "urlPingSuffix": "DevEx,5281.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/...\/dolphin-safe",
+ "snippet": "The last tuna super seiner to unload in California. The photo
+ was taken in San Diego Bay in 2000. A dolphin-safe label is intended to
+ show compliance with U.S. laws and regulations of tuna fishing operations.",
+ "dateLastCrawled": "2018-11-15T03:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Pacific Bluefin Tuna Commercial Harvest Status :: NOAA ...", "url":
+ "https:\/\/www.westcoast.fisheries.noaa.gov\/fisheries\/migratory_species\/bluefin_tuna_harvest_status.html",
+ "urlPingSuffix": "DevEx,5294.1", "about": [{"name": "Pacific bluefin tuna"}],
+ "displayUrl": "https:\/\/www.westcoast.fisheries.noaa.gov\/fisheries\/migratory...",
+ "snippet": "Update: On March 28, 2018, NMFS published a final rule revising
+ trip limits for 2018 only (83 FR 13203).Effective April 27, 2018, U.S. commercial
+ vessels are subject to a 1-mt trip limit for Pacific bluefin tuna—except
+ large-mesh drift gillnet vessels, which are subject to a 2-mt trip limit—for
+ the remainder of 2018.", "dateLastCrawled": "2018-11-10T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Harmonized
+ Tariff Schedule for Selected Tuna and Tuna ...", "url": "https:\/\/www.fisheries.noaa.gov\/national\/marine-mammal-protection\/harmonized-tariff-schedule-selected-tuna-and-tuna-products",
+ "urlPingSuffix": "DevEx,5307.1", "displayUrl": "https:\/\/www.fisheries.noaa.gov\/national\/marine-mammal-protection\/...",
+ "snippet": "All tuna and tuna products (other than fresh tuna) imported
+ into the United States must be accompanied by a NOAA Form 370, Fisheries Certificate
+ of Origin (PDF, 2 pages). These include, but are not limited to, those tuna
+ and tuna products imported under the Harmonized Tariff Schedule of the United
+ States numbers listed below. Updated HTS numbers can be identified by referencing
+ the most ...", "dateLastCrawled": "2018-11-10T23:18:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:53 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=collection%20(site:noaa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:06 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 969C02317A224E9AA070F7551E14740C
+ Bingapis-Sessionid:
+ - 90DC2F6D353841B08C667627F92F7F6B
+ X-Msedge-Clientid:
+ - 3A7A56CCABB468F11BA55A60AAF86965
+ X-Msapi-Userstate:
+ - 10e0
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=156,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 969C02317A224E9AA070F7551E14740C Ref B: BY3EDGE0518 Ref C: 2018-11-19T22:43:07Z'
+ Apim-Request-Id:
+ - 2d5686a4-ad4f-47f1-ad7f-d8e6a543b434
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:06 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "collection
+ (site:noaa.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=collection+(site%3anoaa.gov)",
+ "totalEstimatedMatches": 507000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Collections | NOAA Central Library", "url": "https:\/\/library.noaa.gov\/Collections",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/library.noaa.gov\/Collections",
+ "snippet": "TIROS & Satellite Meteorology Digital Collection This collection
+ features resources on meteorological satellites and satellite meteorology
+ and was initiall created to mark and the celebration of the 50th Anniversary
+ of the launch of TIROS I, the first meteorological satellite, in April 1,
+ 1960.", "dateLastCrawled": "2018-11-09T06:45:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "A Collection of Sounds from the Sea - oceanexplorer.noaa.gov",
+ "url": "https:\/\/oceanexplorer.noaa.gov\/explorations\/sound01\/background\/seasounds\/seasounds.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/oceanexplorer.noaa.gov\/explorations\/sound01\/background\/sea...",
+ "snippet": "Spectrograms are a means of visualizing the energy and pitch of
+ a particular sound. In this example of a blue whale call, the spectrogram
+ (upper image) plots time (horizontal axis) versus frequency (vertical axis),
+ with warm colors representing high acoustic intensity.", "dateLastCrawled":
+ "2018-11-17T03:56:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Digital Collections | NOAA Central Library", "url": "https:\/\/library.noaa.gov\/Collections\/Digital-Docs",
+ "about": [{"name": "NOAA Central Library"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/library.noaa.gov\/Collections\/Digital-Docs", "snippet": "This
+ collection provides access to historical daily synoptic weather maps for
+ the northern hemisphere from 1899 to 1971. Monthly Weather Review Free access
+ from 1871 to 1973 in cooperation with the American Meteorological Society.",
+ "dateLastCrawled": "2018-11-04T10:16:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "NOAA 200th: Collections - Survey Towers", "url": "https:\/\/celebrating200years.noaa.gov\/survey_towers\/welcome.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/celebrating200years.noaa.gov\/survey_towers\/welcome.html",
+ "snippet": "This collection of photos and drawings of 10 survey towers traces
+ the evolution of the towers used by Coast and Geodetic Survey surveyors from
+ the mid-1800s through the 1970s to obtain the clear lines-of-sight needed
+ to conduct the surveys that are the backbone of our nation''s spatial reference
+ framework.", "dateLastCrawled": "2018-11-14T11:55:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "NOAA 200th Collections", "url": "https:\/\/celebrating200years.noaa.gov\/collections.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/celebrating200years.noaa.gov\/collections.html",
+ "snippet": "The Collections featured here are simple presentations of five
+ to 20 objects that have significance in marine history, research, human\/sea
+ interactions, or human understanding of the sea. Each collection illustrates
+ an underlying theme or principle, such as the evolution of technology, which
+ ties all the objects in the collection together.", "dateLastCrawled": "2018-11-09T09:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "NOAA 200th Collections - Distance Measurement Tools", "url": "https:\/\/celebrating200years.noaa.gov\/distance_tools\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/celebrating200years.noaa.gov\/distance_tools",
+ "snippet": "This is a collection of 17 images that illustrate the history
+ and development of the instruments and techniques used to make extremely accurate
+ distance measurements by the U. S. Coast and Geodetic Survey (C&GS), the surveying
+ arm of which was renamed the National Geodetic Survey (NGS) in 1970.", "dateLastCrawled":
+ "2018-11-16T08:37:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "Collection - National Weather Service", "url": "http:\/\/www.nws.noaa.gov\/iscs\/collection.html",
+ "isFamilyFriendly": true, "displayUrl": "www.nws.noaa.gov\/iscs\/collection.html",
+ "snippet": "Product Collection and Dissemination For Network (RMTN) Systems
+ NWS eMail Data Input System (EDIS) - Operational. The NWS eMail Data Input
+ System (EDIS) is a procedure that allows designated meteorological data providers
+ the capability to input weather bulletins to the National Weather Service
+ Telecommunication Gateway (NWSTG) - also known as ...", "dateLastCrawled":
+ "2018-11-04T01:33:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "Resource collections | National Oceanic and Atmospheric ...", "url": "https:\/\/www.noaa.gov\/education\/education-resource-collections",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.noaa.gov\/education\/education-resource-collections",
+ "snippet": "Education resources are distributed across many websites and program
+ offices at NOAA and partner websites. This portal is designed to help you
+ access these resources from one location.", "dateLastCrawled": "2018-11-15T12:41:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Water cycle | National Oceanic and Atmospheric Administration", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/water-cycle", "about": [{"name":
+ "Water cycle"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/water-cycle",
+ "snippet": "The water cycle provides the opportunity to explore the Nature
+ of Science including; the use of models and empirical evidence based explanations
+ as described in the Next Generation Science Standards. offsite link This Collection
+ provides real-time and historic data sources that track and measure the water
+ in different parts of the water cycle ...", "dateLastCrawled": "2018-11-14T17:03:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "About the education resource collections | National ...", "url":
+ "https:\/\/www.noaa.gov\/about-education-resource-collections", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.noaa.gov\/about-education-resource-collections",
+ "snippet": "Each Collection contains 15-25 finely grained resources vetted
+ by the NOAA education team to support teaching in formal and informal settings.
+ The key characteristics of the resources in the Collections are: Provide real
+ world and current science.", "dateLastCrawled": "2018-11-12T22:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "NOAA - GOES DCS1 Data Collection System - WCDA", "url": "https:\/\/dcs1.noaa.gov\/Account\/Login",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/dcs1.noaa.gov\/Account\/Login",
+ "snippet": "Notice to Users ** WARNING ** WARNING ** WARNING ** This is
+ a United States NOAA computer system, which may be accessed and used only
+ for official Government business by authorized personnel.", "dateLastCrawled":
+ "2018-11-13T22:30:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Economic Collection - NOAA", "url": "http:\/\/www.wrc.noaa.gov\/wrso\/security_guide\/economic.htm",
+ "isFamilyFriendly": true, "displayUrl": "www.wrc.noaa.gov\/wrso\/security_guide\/economic.htm",
+ "snippet": "Economic Collection And Industrial Espionage. The United States
+ encourages the free exchange of most scientific and technical information.
+ Many Government programs support the exchange of technology to facilitate
+ economic development in a wide variety of foreign countries.", "dateLastCrawled":
+ "2018-11-09T21:30:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Coast Survey''s Historical Map & Chart Collection", "url": "https:\/\/historicalcharts.noaa.gov\/faq.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/historicalcharts.noaa.gov\/faq.html",
+ "snippet": "A: The sizes of the charts and maps in the collection vary.
+ When recorded in our database, we provide the document dimensions in the image
+ preview as well as in a supplemental TXT file that accompanies each image
+ download.", "dateLastCrawled": "2018-11-04T04:12:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Hurricanes | National Oceanic and Atmospheric Administration", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/hurricanes", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/hurricanes",
+ "snippet": "This collection provides educators and students with resources
+ to explore how hurricanes form, their potential effects to humans and ecosystems,
+ ways to prepare for hurricanes, and even a citizen science project to classify
+ hurricanes from satellite imagery.", "dateLastCrawled": "2018-11-12T14:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "NOAA 200th: Collections: Theodolites", "url": "https:\/\/celebrating200years.noaa.gov\/theodolites\/welcome.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/celebrating200years.noaa.gov\/theodolites\/welcome.html",
+ "snippet": "An Angular Point of View: A Photo Collection Illustrating the
+ History of Theodolites at the National Geodetic Survey. Used to measure
+ horizontal and vertical angles, the theodolite remained the backbone of geodetic
+ surveys from the 1800s until the early 1980s.", "dateLastCrawled": "2018-11-10T08:59:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Weather observations | National Oceanic and Atmospheric ...", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/weather-observations", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/weather-observations",
+ "snippet": "The real-time data in this Collection provides relevant and
+ real-world sources of information for math and science educators who are instructing
+ their students in data collection and graphing skills. Looking for patterns
+ in weather observations can help students gain an understanding about the
+ forces of nature at work in the atmosphere around us.", "dateLastCrawled":
+ "2018-11-16T08:55:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "MONITOR NMS -- The MONITOR Collection", "url": "https:\/\/monitor.noaa.gov\/expeditions\/log072603.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/monitor.noaa.gov\/expeditions\/log072603.html",
+ "snippet": "After series of training dives and a bout of bad weather offshore,
+ July 26 was the first dive day on the Monitor.Objectives were kept simple.
+ Divers were to obtain some overall video of the site to give us a permanent
+ record of the current conditions of the wreck.", "dateLastCrawled": "2018-11-11T00:23:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Tsunamis | National Oceanic and Atmospheric Administration", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/tsunamis", "about": [{"name":
+ "Tsunami"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/tsunamis",
+ "snippet": "Ocean Today Tsunami Science and Safety collection. Tsunami basics
+ video (7 min.) Tsunami on Science on a Sphere (8 min.) Pacific Tsunami Warning
+ Center animations and short videos. Tsunami data visualizations and short
+ videos (Science on a Sphere) Real world data. U.S. Tsunami Warning System.",
+ "dateLastCrawled": "2018-11-15T20:54:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Coral ecosystems | National Oceanic and Atmospheric ...", "url":
+ "https:\/\/www.noaa.gov\/resource-collections\/coral-ecosystems", "about":
+ [{"name": "Coral"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.noaa.gov\/resource-collections\/coral-ecosystems",
+ "snippet": "Educators can use the resources in this Collection to teach
+ their students about the science and beauty of corals. They can use these
+ organisms and ecosystems to teach many scientific concepts including symbiotic
+ relationships, reproduction strategies, food webs, chemistry, biotic and abiotic
+ interactions, human impacts, etc. Additionally ...", "dateLastCrawled": "2018-11-13T07:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Fish Otolith Collection Database | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/resource\/data\/fish-otolith-collection-database",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/...\/fish-otolith-collection-database",
+ "snippet": "Fish Otolith Collection Database February 28, 2018 This database
+ is an inventory of fish ageing samples or \"otoliths\" from the Bering Sea,
+ Aleutian Islands, and Gulf of Alaska.", "dateLastCrawled": "2018-11-10T18:29:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:07 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=tuna%20(site:noaa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 23:18:55 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 6971E0ECF23F400D8472D629512E28B6
+ Bingapis-Sessionid:
+ - 0D0D3A83E5744F03AFF188E38DA0BD19
+ X-Msedge-Clientid:
+ - 3641AC50084C6E8E173EA0FC09006FE7
+ X-Msapi-Userstate:
+ - 7aed
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=219,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 6971E0ECF23F400D8472D629512E28B6 Ref B: BY3EDGE0513 Ref C: 2018-11-19T23:19:55Z'
+ Apim-Request-Id:
+ - b38f9004-95d0-4429-b41a-4a7b124e5200
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 23:19:55 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "tuna
+ (site:noaa.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=tuna+(site%3anoaa.gov)",
+ "totalEstimatedMatches": 121000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Tuna - National Oceanic and Atmospheric Administration", "url":
+ "https:\/\/www.st.nmfs.noaa.gov\/observer-home\/regions\/pacificislands\/tuna",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.st.nmfs.noaa.gov\/observer-home\/regions\/pacificislands\/tuna",
+ "snippet": "To observe and document all species caught, including sea turtles,
+ seabirds, marine mammals, swordfish, tunas, sharks, and other non-target fishes.",
+ "dateLastCrawled": "2018-10-27T17:57:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Pacific Bluefin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-bluefin-tuna",
+ "about": [{"name": "Pacific bluefin tuna"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.fisheries.noaa.gov\/species\/pacific-bluefin-tuna", "snippet":
+ "About the Species. Although Pacific-wide populations are well below target
+ levels, U.S. wild-caught Pacific bluefin tuna is a smart seafood choice
+ because it is sustainably managed under rebuilding measures that limit harvest
+ by U.S. fishermen.", "dateLastCrawled": "2018-11-06T07:18:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Atlantic Yellowfin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/atlantic-yellowfin-tuna",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/atlantic-yellowfin-tuna",
+ "snippet": "U.S. wild-caught Atlantic yellowfin tuna is a smart seafood
+ choice because it is sustainably managed and responsibly harvested under U.S.
+ regulations. Fishing gears used to harvest yellowfin tuna have almost no
+ impact on habitat because they’re used in the water column and don’t come
+ into ...", "dateLastCrawled": "2018-11-08T21:41:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "NMFS Permit Shop", "url": "https:\/\/hmspermits.noaa.gov\/default.asp",
+ "about": [{"name": "National Marine Fisheries Service"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/hmspermits.noaa.gov\/default.asp", "snippet":
+ "NMFS Permit Shop. Welcome to the National Marine Fisheries Service (NMFS)
+ online Permit Shop, where you can buy and renew federal permits for Atlantic
+ Highly Migratory Species (tunas, billfishes, swordfish, and sharks), update
+ permit information, and report landings of bluefin tuna, blue marlin, white
+ marlin, roundscale spearfish, sailfish, and swordfish.", "dateLastCrawled":
+ "2018-11-15T11:26:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "Pacific Skipjack Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-skipjack-tuna",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-skipjack-tuna",
+ "snippet": "U.S. wild-caught Pacific skipjack tuna is a smart seafood choice
+ because it is sustainably managed and responsibly harvested under U.S. regulations.
+ Skipjack tuna do not have scales except on the corselet and the lateral
+ line. The corselet is a band of large, thick scales forming a circle around
+ the ...", "dateLastCrawled": "2018-11-05T19:26:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Tuna - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/textblock.aspx?id=1002&ParentMenuId=189",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/swfsc.noaa.gov\/textblock.aspx?id=1002&ParentMenuId=189",
+ "snippet": "Pacific Tuna Research and Albacore Research include investigations
+ on biology, physiology, ecology and migration as well as distribution and
+ abundance, population genetic structure, and fishery interactions for various
+ species. General information on several of these species are listed below:",
+ "dateLastCrawled": "2018-11-13T23:29:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "The Tuna-Dolphin Issue - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/textblock.aspx?Division=PRD&ParentMenuId=228&id=1408",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/swfsc.noaa.gov\/textblock.aspx?Division=PRD&ParentMenuId=...",
+ "snippet": "The concept of Dolphin-Safe tuna—tuna caught without setting
+ on dolphins (i.e., in log and school sets)—became popular. The trade actions
+ were important because the United States is a large market for the canned
+ tuna product of the fishery.", "dateLastCrawled": "2018-11-15T01:23:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Pacific Yellowfin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-yellowfin-tuna",
+ "about": [{"name": "Tuna"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-yellowfin-tuna",
+ "snippet": "U.S. wild-caught Pacific yellowfin tuna is a smart seafood choice
+ because it is sustainably managed and responsibly harvested under U.S. regulations.
+ Yellowfin tuna are torpedo-shaped. They are metallic dark blue on the back
+ and upper sides and change from yellow to silver on the belly. True to ...",
+ "dateLastCrawled": "2018-11-08T08:03:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "NMFS Permit Shop News", "url": "https:\/\/hmspermits.noaa.gov\/news",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/hmspermits.noaa.gov\/news",
+ "snippet": "The National Marine Fisheries Service (NMFS) closed the Atlantic
+ bluefin tuna (BFT) Angling category fishery for large medium and giant \"trophy\"
+ BFT (measuring 73\" or greater) in the southern area effective 11:30 p.m.
+ local time, March 17, 2018, and the fishery will remain closed through December
+ 31, 2018.", "dateLastCrawled": "2018-11-15T08:58:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Pacific bluefin Tuna - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/uploadedFiles\/Divisions\/FRD\/Large_Pelagics\/Tuna\/Bluefin%20tuna%20fact%20sheet%2027Aug15.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/swfsc.noaa.gov\/uploadedFiles\/Divisions\/FRD\/Large_Pelagics...",
+ "snippet": "west. coast region. Pacific bluefin Tuna. With their streamlined
+ bodies and powerful tails, Pacific bluefin tuna are some of fastest fish
+ in the ocean.", "dateLastCrawled": "2018-11-10T19:31:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Pacific Albacore Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-albacore-tuna",
+ "about": [{"name": "Albacore"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/pacific-albacore-tuna",
+ "snippet": "U.S. wild-caught Pacific albacore tuna is a smart seafood choice
+ because it is sustainably managed and responsibly harvested under U.S. regulations.
+ Albacore tuna have torpedo-shaped bodies, smooth skin, and streamlined fins.
+ They are metallic, dark blue on the back with dusky to silvery white ...",
+ "dateLastCrawled": "2018-11-07T09:53:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "2018 Commercial Landings of Atlantic Bluefin Tuna | NOAA ...",
+ "url": "https:\/\/www.fisheries.noaa.gov\/new-england-mid-atlantic\/commercial-fishing\/2018-commercial-landings-atlantic-bluefin-tuna",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/new-england-mid-atlantic\/commercial...",
+ "snippet": "2018 Commercial Landings of Atlantic Bluefin Tuna These notices
+ are a courtesy to Atlantic tuna fishery interests to keep you informed about
+ the fishery. Official notice of federal fishery actions is made through a
+ filing with the Office of the Federal Register.", "dateLastCrawled": "2018-11-12T03:30:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Western Atlantic Bluefin Tuna | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/species\/western-atlantic-bluefin-tuna",
+ "about": [{"name": "Atlantic bluefin tuna"}, {"name": "Tuna"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/species\/western-atlantic-bluefin-tuna",
+ "snippet": "The Gulf of Mexico is the only known spawning area for the western
+ stock of Atlantic bluefin tuna, and protecting these fish during spawning
+ can help the long-term rebuilding of the depleted bluefin tuna population.",
+ "dateLastCrawled": "2018-11-10T04:16:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "NMFS Help Desk: Renewing An Old Permit", "url": "https:\/\/hmspermits.noaa.gov\/renewOldPermit",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/hmspermits.noaa.gov\/renewOldPermit",
+ "snippet": "Welcome to the National Marine Fisheries Service Permit Shop
+ where you can currently buy initial and renewal permits for Atlantic tunas
+ and Atlantic Highly Migratory Species (HMS), update permit information,
+ and report recreational landings of bluefin tuna, blue marlin, white marlin,
+ sailfish, and swordfish.", "dateLastCrawled": "2018-11-15T02:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Bluefin Tuna | Ocean Today", "url": "https:\/\/oceantoday.noaa.gov\/bluefintuna\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/oceantoday.noaa.gov\/bluefintuna",
+ "snippet": "Bluefin that cross oceans now run gauntlets full of fishing boats,
+ ranging from huge trawlers to small fleets that work together to haul whole
+ schools of bluefin to the surface. Then there are the pirate fleets that use
+ illegal spotting planes to find the fish and smaller boats to sneak them into
+ ports.", "dateLastCrawled": "2018-11-05T08:12:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "TUNA - westcoast.fisheries.noaa.gov", "url": "https:\/\/www.westcoast.fisheries.noaa.gov\/publications\/fishery_management\/iattc_info\/1950tuna-conventions_act.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.westcoast.fisheries.noaa.gov\/publications\/fishery...",
+ "snippet": "Sec. 4 TUNA CONVENTIONS ACT OF 1950 4 1 Fishery management functions
+ of the Secretary of the Interior under this Act were trans- ferred to the
+ Secretary of Commerce by Reorganization Plan No. 4 of 1970 (5 U.S.C. App.).
+ pensation or tort claims liability as provided in chapter 81 of title", "dateLastCrawled":
+ "2018-11-09T02:32:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "Atlantic Bluefin Tuna Angling Category Fishery: Southern ...", "url": "https:\/\/www.fisheries.noaa.gov\/bulletin\/atlantic-bluefin-tuna-angling-category-fishery-southern-area-trophy-fishery-closing",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/bulletin\/atlantic-bluefin-tuna...",
+ "snippet": "Based on reported landings of 2.1 mt from the NOAA Fisheries Automated
+ Catch Reporting System and the North Carolina Tagging Program as of March
+ 9, 2018, NOAA Fisheries has determined that the codified Angling category
+ southern area trophy bluefin tuna subquota has been reached and exceeded
+ and that the trophy fishery should be closed in that area.", "dateLastCrawled":
+ "2018-11-08T22:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Dolphin-Safe | NOAA Fisheries", "url": "https:\/\/www.fisheries.noaa.gov\/national\/marine-mammal-protection\/dolphin-safe",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fisheries.noaa.gov\/...\/dolphin-safe",
+ "snippet": "The last tuna super seiner to unload in California. The photo
+ was taken in San Diego Bay in 2000. A dolphin-safe label is intended to
+ show compliance with U.S. laws and regulations of tuna fishing operations.",
+ "dateLastCrawled": "2018-11-15T03:48:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Pacific Bluefin Tuna Commercial Harvest Status :: NOAA ...", "url":
+ "https:\/\/www.westcoast.fisheries.noaa.gov\/fisheries\/migratory_species\/bluefin_tuna_harvest_status.html",
+ "about": [{"name": "Pacific bluefin tuna"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.westcoast.fisheries.noaa.gov\/fisheries\/migratory...", "snippet":
+ "Update: On March 28, 2018, NMFS published a final rule revising trip limits
+ for 2018 only (83 FR 13203).Effective April 27, 2018, U.S. commercial vessels
+ are subject to a 1-mt trip limit for Pacific bluefin tuna—except large-mesh
+ drift gillnet vessels, which are subject to a 2-mt trip limit—for the remainder
+ of 2018.", "dateLastCrawled": "2018-11-10T02:55:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Tuna - SWFSC", "url": "https:\/\/swfsc.noaa.gov\/textblock.aspx?id=1002&ParentMenuId=100",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/swfsc.noaa.gov\/textblock.aspx?id=1002&ParentMenuId=100",
+ "snippet": "Scientists in the Fisheries Research Division at SWFSC conduct
+ studies on several aspects of the lives of tuna in the North Pacific Ocean.
+ Pacific Tuna Research and Albacore Research include investigations on biology,
+ physiology, ecology and migration as well as distribution and abundance, population
+ genetic structure, and fishery interactions for various species.", "dateLastCrawled":
+ "2018-11-13T05:10:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 23:19:56 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_related_sites.yml b/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_related_sites.yml
index 625f05c6d4..f3f97398b8 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_related_sites.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Searching_on_sites_with_related_sites.yml
@@ -428,4 +428,890 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:20 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gobierno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3706'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:50 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1B223C43BA8A648B2B5C30EFBB5D65A5; path=/; expires=Sat, 14-Dec-2019 22:41:50
+ GMT; domain=bingapis.com
+ - MUIDB=1B223C43BA8A648B2B5C30EFBB5D65A5; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:50 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=D2B239A175414496A88DD73E0D9EA87D&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:50 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:50
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3497465F92D362082B724AF3930463DC; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:50 GMT; domain=bingapis.com
+ - _SS=SID=3497465F92D362082B724AF3930463DC; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 9867D67E1B304486BDA9CBE187C4CD69
+ X-Msedge-Clientid:
+ - 1B223C43BA8A648B2B5C30EFBB5D65A5
+ X-Msapi-Userstate:
+ - 831a
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 9867D67E1B304486BDA9CBE187C4CD69 Ref B: CO1EDGE0207 Ref C: 2018-11-19T22:41:50Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F8256C06B03E408AB9958283A44C386C&CID=1B223C43BA8A648B2B5C30EFBB5D65A5&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F8256C06B03E408AB9958283A44C386C&CID=1B223C43BA8A648B2B5C30EFBB5D65A5&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5409.1", "totalEstimatedMatches": 3320000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "PR.gov - Portal Oficial del Estado Libre Asociado de ...", "url": "http:\/\/pr.gov\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "Missouri AT"}, {"name":
+ "Puerto Rico"}], "displayUrl": "pr.gov", "snippet": "Es el medio oficial de
+ avisos de subastas de todas las agencias de la Rama Ejecutiva y las corporaciones
+ públicas del Gobierno del Estado Libre Asociado de Puerto Rico, según la
+ Ley Núm 205-2012.", "dateLastCrawled": "2018-11-12T20:11:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Guía oficial
+ de información y servicios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/",
+ "urlPingSuffix": "DevEx,5070.1", "about": [{"name": "GobiernoUSA.gov"}], "displayUrl":
+ "https:\/\/gobierno.usa.gov", "snippet": "Página principal de GobiernoUSA.gov,
+ el portal oficial del Gobierno de Estados Unidos en español.", "dateLastCrawled":
+ "2018-11-16T08:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/info", "urlPingSuffix": "DevEx,5083.1", "displayUrl":
+ "https:\/\/servicios.pr.gov\/info", "snippet": "Este nuevo servicio se encuentra
+ en un periodo de mejoramiento continuo conocido como beta. Durante este periodo,
+ el servicio será completamente gratuito y todos los certificados emitidos
+ mediante el mismo son oficiales.", "dateLastCrawled": "2018-11-15T04:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "informacion
+ de formularios prgov Solicitud de ...", "url": "http:\/\/www2.pr.gov\/pages\/informaciondeformulariosprgovsolicituddecertificaci%C3%B3ndecumplimientodeasume.aspx",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "www2.pr.gov\/pages...", "snippet":
+ "Para desplegar correctamente los formularios en PR.GOV debe activar el “Compatibility
+ View”, requerido al actualizar a Internet Explorer 8 y 9. Tiene dos opciones:
+ Opción 1: Presionar el botón de Compatibility View. Cuando accede el portal
+ PR.GOV aparecerá a la derecha del navegador.", "dateLastCrawled": "2018-11-15T11:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "search
+ - PR.gov", "url": "http:\/\/www2.pr.gov\/Pages\/search.aspx", "urlPingSuffix":
+ "DevEx,5109.1", "displayUrl": "www2.pr.gov\/Pages\/search.aspx", "snippet":
+ "A través de este servicio usted podrá realiza una pre-cualificación para
+ el Programa Medicaid \/ Plan de Salud del Gobierno. Le indica el número
+ de teléfono a llamar para realizar una cita o recibir orientación. Gratis.
+ N\/A. Buscador de Escuelas.", "dateLastCrawled": "2018-11-13T22:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Convocatorias
+ y Becas Busqueda de Convocatorias y Becas", "url": "http:\/\/www2.pr.gov\/Pages\/empleos.aspx",
+ "urlPingSuffix": "DevEx,5122.1", "displayUrl": "www2.pr.gov\/Pages\/empleos.aspx",
+ "snippet": "Gobierno Federal; Tercer Sector; Directorios. Directorio de
+ Agencias; Directorio de Municipios de Puerto Rico; La Fortaleza; Líneas de
+ Ayuda para Emergencias; Junta Revisora de Propiedead Inmueble; Ventanilla
+ Unica. Ventanilla Única Villalba; Ventanilla Única Vega Baja; Ventanilla Única
+ Toa Alta;", "dateLastCrawled": "2018-11-16T08:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Directorio de Agencias - PR.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "urlPingSuffix": "DevEx,5134.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "snippet": "Gobierno a Gobierno; Convocatorias; Subastas Públicas ‹ ›
+ Directorio de Agencias. Sobre Puerto Rico ...", "dateLastCrawled": "2018-11-14T17:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Servicios
+ e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "urlPingSuffix": "DevEx,5147.1", "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5160.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Department of Commerce", "url": "https:\/\/www.commerce.gov\/", "urlPingSuffix":
+ "DevEx,5172.1", "displayUrl": "https:\/\/www.commerce.gov", "snippet": "The
+ advice I would have to give a new veteran is to keep on studying and keep
+ learning. In order to adequately prepare oneself for the rigors of any career
+ today you always have to be a step or two ahead of our competitors.", "dateLastCrawled":
+ "2018-11-07T18:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Pages\/servicefilter.aspx",
+ "urlPingSuffix": "DevEx,5185.1", "displayUrl": "www2.pr.gov\/Pages\/servicefilter.aspx",
+ "snippet": "Página del Gobierno Federal que se utiliza para la búsqueda
+ de personas desaparecidas. Gratis. Portal de Datos Geográficos Gubernamentales
+ – GIS. Este portal centraliza los datos geográficos digitales producidos por
+ las agencias y corporaciones desde 2001-2012 donde los ciudadanos tendrán
+ acceso a esos datos.", "dateLastCrawled": "2018-11-13T14:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Solicitud
+ de Certificación de Cumplimiento de ASUME", "url": "http:\/\/pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "snippet": "Mediante esta transacción el ciudadano puede solicitar un documento
+ que certifica si tiene o no tiene un caso de pensión alimentaria en ASUME.",
+ "dateLastCrawled": "2018-11-15T17:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Gobierno - Houston", "url": "http:\/\/www.houstontx.gov\/espanol\/gobierno\/",
+ "urlPingSuffix": "DevEx,5213.1", "displayUrl": "www.houstontx.gov\/espanol\/gobierno",
+ "snippet": "Ciudad de Houston Gobierno . Sylvester Turner Alcalde 832.393.1000.
+ sylvester.turner@houstontx.gov www.houstontx.gov\/mayor. Agenda del Concejo;
+ Alcaldía", "dateLastCrawled": "2018-11-12T13:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Directorio Gubernamental", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "urlPingSuffix": "DevEx,5226.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "snippet": "Directorio de Agencias. Aquí accederá al Directorio de Agencias
+ del Estado Libre Asociado de Puerto Rico, con alternativas de búsqueda e información
+ de contacto de todas las entidades de nuestro gobierno.", "dateLastCrawled":
+ "2018-11-12T21:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/", "urlPingSuffix": "DevEx,5239.1", "displayUrl":
+ "https:\/\/servicios.pr.gov", "snippet": "El Gobierno del Estado Libre Asociado
+ de Puerto Rico se compromete a brindar servicios de alta calidad a través
+ del Portal, dentro de las circunstancias particulares del medio cibernético.
+ El Gobierno del Estado Libre Asociado de Puerto Rico se compromete a cumplir
+ con la Política de Privacidad publicada en el Portal.", "dateLastCrawled":
+ "2018-11-13T18:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Departamento de Estado", "url": "https:\/\/estado.pr.gov\/es\/",
+ "urlPingSuffix": "DevEx,5267.1", "about": [{"name": "Puerto Rico Department
+ of State"}], "displayUrl": "https:\/\/estado.pr.gov\/es", "snippet": "Secretario
+ de Estado destaca que Mesa Permanente del Sector Privado continúa sus esfuerzos
+ con el Gobierno para mejorar y maximizar servicios Viernes, 9 de noviembre
+ de 2018 – (San Juan) – El …", "dateLastCrawled": "2018-11-16T10:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Recursos
+ para la educación | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5280.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "urlPingSuffix": "DevEx,5293.1", "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Agencies | The State of New York", "url": "https:\/\/www.ny.gov\/agencies",
+ "urlPingSuffix": "DevEx,5307.1", "about": [{"name": "New York"}], "displayUrl":
+ "https:\/\/www.ny.gov\/agencies", "snippet": "The State of New York does
+ not imply approval of the listed destinations, warrant the accuracy of any
+ information set out in those destinations, or endorse any opinions expressed
+ therein. External web sites operate at the direction of their respective owners
+ who should be contacted directly with questions regarding the content of these
+ sites.", "dateLastCrawled": "2018-11-13T14:19:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:50 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gobierno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3708'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:50 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=34FC80D3D8996FAE06C98C7FD94E6EA7; path=/; expires=Sat, 14-Dec-2019 22:41:50
+ GMT; domain=bingapis.com
+ - MUIDB=34FC80D3D8996FAE06C98C7FD94E6EA7; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:50 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A357A80290F2411DA67656FA3BA68DC8&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:50 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:50
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=30808934AB3E69C6365B8598AAE96831; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:50 GMT; domain=bingapis.com
+ - _SS=SID=30808934AB3E69C6365B8598AAE96831; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BD20F1FD20BF49A1A91BAEC846BB92A9
+ X-Msedge-Clientid:
+ - 34FC80D3D8996FAE06C98C7FD94E6EA7
+ X-Msapi-Userstate:
+ - db2c
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BD20F1FD20BF49A1A91BAEC846BB92A9 Ref B: CO1EDGE0220 Ref C: 2018-11-19T22:41:50Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:50 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=AB2F0A5759BA415E8F6E34BA0AAE1C55&CID=34FC80D3D8996FAE06C98C7FD94E6EA7&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=AB2F0A5759BA415E8F6E34BA0AAE1C55&CID=34FC80D3D8996FAE06C98C7FD94E6EA7&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5409.1", "totalEstimatedMatches": 3360000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "PR.gov - Portal Oficial del Estado Libre Asociado de ...", "url": "http:\/\/pr.gov\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "Missouri AT"}, {"name":
+ "Puerto Rico"}], "displayUrl": "pr.gov", "snippet": "Es el medio oficial de
+ avisos de subastas de todas las agencias de la Rama Ejecutiva y las corporaciones
+ públicas del Gobierno del Estado Libre Asociado de Puerto Rico, según la
+ Ley Núm 205-2012.", "dateLastCrawled": "2018-11-12T20:11:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Guía oficial
+ de información y servicios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/",
+ "urlPingSuffix": "DevEx,5070.1", "about": [{"name": "GobiernoUSA.gov"}], "displayUrl":
+ "https:\/\/gobierno.usa.gov", "snippet": "Página principal de GobiernoUSA.gov,
+ el portal oficial del Gobierno de Estados Unidos en español.", "dateLastCrawled":
+ "2018-11-16T08:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/info", "urlPingSuffix": "DevEx,5083.1", "displayUrl":
+ "https:\/\/servicios.pr.gov\/info", "snippet": "Este nuevo servicio se encuentra
+ en un periodo de mejoramiento continuo conocido como beta. Durante este periodo,
+ el servicio será completamente gratuito y todos los certificados emitidos
+ mediante el mismo son oficiales.", "dateLastCrawled": "2018-11-15T04:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "informacion
+ de formularios prgov Solicitud de ...", "url": "http:\/\/www2.pr.gov\/pages\/informaciondeformulariosprgovsolicituddecertificaci%C3%B3ndecumplimientodeasume.aspx",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "www2.pr.gov\/pages...", "snippet":
+ "Para desplegar correctamente los formularios en PR.GOV debe activar el “Compatibility
+ View”, requerido al actualizar a Internet Explorer 8 y 9. Tiene dos opciones:
+ Opción 1: Presionar el botón de Compatibility View. Cuando accede el portal
+ PR.GOV aparecerá a la derecha del navegador.", "dateLastCrawled": "2018-11-15T11:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "search
+ - PR.gov", "url": "http:\/\/www2.pr.gov\/Pages\/search.aspx", "urlPingSuffix":
+ "DevEx,5109.1", "displayUrl": "www2.pr.gov\/Pages\/search.aspx", "snippet":
+ "A través de este servicio usted podrá realiza una pre-cualificación para
+ el Programa Medicaid \/ Plan de Salud del Gobierno. Le indica el número
+ de teléfono a llamar para realizar una cita o recibir orientación. Gratis.
+ N\/A. Buscador de Escuelas.", "dateLastCrawled": "2018-11-13T22:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Convocatorias
+ y Becas Busqueda de Convocatorias y Becas", "url": "http:\/\/www2.pr.gov\/Pages\/empleos.aspx",
+ "urlPingSuffix": "DevEx,5122.1", "displayUrl": "www2.pr.gov\/Pages\/empleos.aspx",
+ "snippet": "Gobierno Federal; Tercer Sector; Directorios. Directorio de
+ Agencias; Directorio de Municipios de Puerto Rico; La Fortaleza; Líneas de
+ Ayuda para Emergencias; Junta Revisora de Propiedead Inmueble; Ventanilla
+ Unica. Ventanilla Única Villalba; Ventanilla Única Vega Baja; Ventanilla Única
+ Toa Alta;", "dateLastCrawled": "2018-11-16T08:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Directorio de Agencias - PR.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "urlPingSuffix": "DevEx,5134.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "snippet": "Gobierno a Gobierno; Convocatorias; Subastas Públicas ‹ ›
+ Directorio de Agencias. Sobre Puerto Rico ...", "dateLastCrawled": "2018-11-14T17:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Servicios
+ e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "urlPingSuffix": "DevEx,5147.1", "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5160.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Department of Commerce", "url": "https:\/\/www.commerce.gov\/", "urlPingSuffix":
+ "DevEx,5172.1", "displayUrl": "https:\/\/www.commerce.gov", "snippet": "The
+ advice I would have to give a new veteran is to keep on studying and keep
+ learning. In order to adequately prepare oneself for the rigors of any career
+ today you always have to be a step or two ahead of our competitors.", "dateLastCrawled":
+ "2018-11-07T18:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Pages\/servicefilter.aspx",
+ "urlPingSuffix": "DevEx,5185.1", "displayUrl": "www2.pr.gov\/Pages\/servicefilter.aspx",
+ "snippet": "Página del Gobierno Federal que se utiliza para la búsqueda
+ de personas desaparecidas. Gratis. Portal de Datos Geográficos Gubernamentales
+ – GIS. Este portal centraliza los datos geográficos digitales producidos por
+ las agencias y corporaciones desde 2001-2012 donde los ciudadanos tendrán
+ acceso a esos datos.", "dateLastCrawled": "2018-11-13T14:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Solicitud
+ de Certificación de Cumplimiento de ASUME", "url": "http:\/\/pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "snippet": "Mediante esta transacción el ciudadano puede solicitar un documento
+ que certifica si tiene o no tiene un caso de pensión alimentaria en ASUME.",
+ "dateLastCrawled": "2018-11-15T17:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Gobierno - Houston", "url": "http:\/\/www.houstontx.gov\/espanol\/gobierno\/",
+ "urlPingSuffix": "DevEx,5213.1", "displayUrl": "www.houstontx.gov\/espanol\/gobierno",
+ "snippet": "Ciudad de Houston Gobierno . Sylvester Turner Alcalde 832.393.1000.
+ sylvester.turner@houstontx.gov www.houstontx.gov\/mayor. Agenda del Concejo;
+ Alcaldía", "dateLastCrawled": "2018-11-12T13:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Directorio Gubernamental", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "urlPingSuffix": "DevEx,5226.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "snippet": "Directorio de Agencias. Aquí accederá al Directorio de Agencias
+ del Estado Libre Asociado de Puerto Rico, con alternativas de búsqueda e información
+ de contacto de todas las entidades de nuestro gobierno.", "dateLastCrawled":
+ "2018-11-12T21:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/", "urlPingSuffix": "DevEx,5239.1", "displayUrl":
+ "https:\/\/servicios.pr.gov", "snippet": "El Gobierno del Estado Libre Asociado
+ de Puerto Rico se compromete a brindar servicios de alta calidad a través
+ del Portal, dentro de las circunstancias particulares del medio cibernético.
+ El Gobierno del Estado Libre Asociado de Puerto Rico se compromete a cumplir
+ con la Política de Privacidad publicada en el Portal.", "dateLastCrawled":
+ "2018-11-13T18:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Departamento de Estado", "url": "https:\/\/estado.pr.gov\/es\/",
+ "urlPingSuffix": "DevEx,5267.1", "about": [{"name": "Puerto Rico Department
+ of State"}], "displayUrl": "https:\/\/estado.pr.gov\/es", "snippet": "Secretario
+ de Estado destaca que Mesa Permanente del Sector Privado continúa sus esfuerzos
+ con el Gobierno para mejorar y maximizar servicios Viernes, 9 de noviembre
+ de 2018 – (San Juan) – El …", "dateLastCrawled": "2018-11-16T10:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Recursos
+ para la educación | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5280.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "urlPingSuffix": "DevEx,5293.1", "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Agencies | The State of New York", "url": "https:\/\/www.ny.gov\/agencies",
+ "urlPingSuffix": "DevEx,5307.1", "about": [{"name": "New York"}], "displayUrl":
+ "https:\/\/www.ny.gov\/agencies", "snippet": "The State of New York does
+ not imply approval of the listed destinations, warrant the accuracy of any
+ information set out in those destinations, or endorse any opinions expressed
+ therein. External web sites operate at the direction of their respective owners
+ who should be contacted directly with questions regarding the content of these
+ sites.", "dateLastCrawled": "2018-11-13T14:19:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:51 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gobierno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:04 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 25163762FBE54ED885F810E8CF3FA54C
+ Bingapis-Sessionid:
+ - 732A4EB95BF54795B4E249973D6CCD79
+ X-Msedge-Clientid:
+ - 310ACB69987D61A50C8FC7C5993160F7
+ X-Msapi-Userstate:
+ - '0362'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=171,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 25163762FBE54ED885F810E8CF3FA54C Ref B: BY3EDGE0417 Ref C: 2018-11-19T22:43:04Z'
+ Apim-Request-Id:
+ - ce346dcd-6b4f-4903-84ad-ae7f5d5a2a46
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gobierno
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 3320000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "PR.gov - Portal Oficial del Estado Libre Asociado de ...", "url":
+ "http:\/\/pr.gov\/", "about": [{"name": "Missouri AT"}, {"name": "Puerto Rico"}],
+ "isFamilyFriendly": true, "displayUrl": "pr.gov", "snippet": "Es el medio
+ oficial de avisos de subastas de todas las agencias de la Rama Ejecutiva y
+ las corporaciones públicas del Gobierno del Estado Libre Asociado de Puerto
+ Rico, según la Ley Núm 205-2012.", "dateLastCrawled": "2018-11-12T20:11:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov",
+ "url": "https:\/\/gobierno.usa.gov\/", "about": [{"name": "GobiernoUSA.gov"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov", "snippet":
+ "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno de
+ Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/info", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/servicios.pr.gov\/info", "snippet": "Este nuevo servicio se encuentra
+ en un periodo de mejoramiento continuo conocido como beta. Durante este periodo,
+ el servicio será completamente gratuito y todos los certificados emitidos
+ mediante el mismo son oficiales.", "dateLastCrawled": "2018-11-15T04:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "informacion de formularios prgov Solicitud de ...", "url": "http:\/\/www2.pr.gov\/pages\/informaciondeformulariosprgovsolicituddecertificaci%C3%B3ndecumplimientodeasume.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/pages...", "snippet":
+ "Para desplegar correctamente los formularios en PR.GOV debe activar el “Compatibility
+ View”, requerido al actualizar a Internet Explorer 8 y 9. Tiene dos opciones:
+ Opción 1: Presionar el botón de Compatibility View. Cuando accede el portal
+ PR.GOV aparecerá a la derecha del navegador.", "dateLastCrawled": "2018-11-15T11:26:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "search - PR.gov", "url": "http:\/\/www2.pr.gov\/Pages\/search.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Pages\/search.aspx",
+ "snippet": "A través de este servicio usted podrá realiza una pre-cualificación
+ para el Programa Medicaid \/ Plan de Salud del Gobierno. Le indica el número
+ de teléfono a llamar para realizar una cita o recibir orientación. Gratis.
+ N\/A. Buscador de Escuelas.", "dateLastCrawled": "2018-11-13T22:00:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Convocatorias y Becas Busqueda de Convocatorias y Becas", "url":
+ "http:\/\/www2.pr.gov\/Pages\/empleos.aspx", "isFamilyFriendly": true, "displayUrl":
+ "www2.pr.gov\/Pages\/empleos.aspx", "snippet": "Gobierno Federal; Tercer
+ Sector; Directorios. Directorio de Agencias; Directorio de Municipios de Puerto
+ Rico; La Fortaleza; Líneas de Ayuda para Emergencias; Junta Revisora de Propiedead
+ Inmueble; Ventanilla Unica. Ventanilla Única Villalba; Ventanilla Única Vega
+ Baja; Ventanilla Única Toa Alta;", "dateLastCrawled": "2018-11-16T08:39:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Directorio de Agencias - PR.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "snippet": "Gobierno a Gobierno; Convocatorias; Subastas Públicas ‹ ›
+ Directorio de Agencias. Sobre Puerto Rico ...", "dateLastCrawled": "2018-11-14T17:02:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Servicios e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov can help
+ you start your search for government information by topic and agency.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Department of Commerce", "url": "https:\/\/www.commerce.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.commerce.gov", "snippet": "The advice
+ I would have to give a new veteran is to keep on studying and keep learning.
+ In order to adequately prepare oneself for the rigors of any career today
+ you always have to be a step or two ahead of our competitors.", "dateLastCrawled":
+ "2018-11-07T18:02:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Pages\/servicefilter.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Pages\/servicefilter.aspx",
+ "snippet": "Página del Gobierno Federal que se utiliza para la búsqueda
+ de personas desaparecidas. Gratis. Portal de Datos Geográficos Gubernamentales
+ – GIS. Este portal centraliza los datos geográficos digitales producidos por
+ las agencias y corporaciones desde 2001-2012 donde los ciudadanos tendrán
+ acceso a esos datos.", "dateLastCrawled": "2018-11-13T14:35:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Solicitud de Certificación de Cumplimiento de ASUME", "url": "http:\/\/pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "isFamilyFriendly": true, "displayUrl": "pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "snippet": "Mediante esta transacción el ciudadano puede solicitar un documento
+ que certifica si tiene o no tiene un caso de pensión alimentaria en ASUME.",
+ "dateLastCrawled": "2018-11-15T17:17:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Gobierno - Houston", "url": "http:\/\/www.houstontx.gov\/espanol\/gobierno\/",
+ "isFamilyFriendly": true, "displayUrl": "www.houstontx.gov\/espanol\/gobierno",
+ "snippet": "Ciudad de Houston Gobierno . Sylvester Turner Alcalde 832.393.1000.
+ sylvester.turner@houstontx.gov www.houstontx.gov\/mayor. Agenda del Concejo;
+ Alcaldía", "dateLastCrawled": "2018-11-12T13:31:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Directorio Gubernamental", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "snippet": "Directorio de Agencias. Aquí accederá al Directorio de Agencias
+ del Estado Libre Asociado de Puerto Rico, con alternativas de búsqueda e información
+ de contacto de todas las entidades de nuestro gobierno.", "dateLastCrawled":
+ "2018-11-12T21:55:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url": "https:\/\/servicios.pr.gov\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/servicios.pr.gov", "snippet":
+ "El Gobierno del Estado Libre Asociado de Puerto Rico se compromete a brindar
+ servicios de alta calidad a través del Portal, dentro de las circunstancias
+ particulares del medio cibernético. El Gobierno del Estado Libre Asociado
+ de Puerto Rico se compromete a cumplir con la Política de Privacidad publicada
+ en el Portal.", "dateLastCrawled": "2018-11-13T18:28:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Departamento de Estado", "url": "https:\/\/estado.pr.gov\/es\/",
+ "about": [{"name": "Puerto Rico Department of State"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/estado.pr.gov\/es", "snippet": "Secretario
+ de Estado destaca que Mesa Permanente del Sector Privado continúa sus esfuerzos
+ con el Gobierno para mejorar y maximizar servicios Viernes, 9 de noviembre
+ de 2018 – (San Juan) – El …", "dateLastCrawled": "2018-11-16T10:12:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal. Este sitio es seguro. El protocolo https:\/\/ le asegura que se está
+ conectando al sitio web oficial y que cualquier información que usted proporcione
+ está encriptada y será transmitida de forma segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Agencies | The State of New York", "url": "https:\/\/www.ny.gov\/agencies",
+ "about": [{"name": "New York"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ny.gov\/agencies",
+ "snippet": "The State of New York does not imply approval of the listed
+ destinations, warrant the accuracy of any information set out in those destinations,
+ or endorse any opinions expressed therein. External web sites operate at the
+ direction of their respective owners who should be contacted directly with
+ questions regarding the content of these sites.", "dateLastCrawled": "2018-11-13T14:19:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:05 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gobierno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:05 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 2C2365DFE0F44936A7D06467FEE99D79
+ Bingapis-Sessionid:
+ - 0DD69F658D2B4C4285886F989F4FDC2E
+ X-Msedge-Clientid:
+ - 2617B5903B5B6857264CB93C3A17696F
+ X-Msapi-Userstate:
+ - '4621'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=106,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 2C2365DFE0F44936A7D06467FEE99D79 Ref B: BY3EDGE0419 Ref C: 2018-11-19T22:43:05Z'
+ Apim-Request-Id:
+ - 053d461e-5541-4dcf-8d2a-8d6c5baa1b45
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gobierno
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 3320000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "PR.gov - Portal Oficial del Estado Libre Asociado de ...", "url":
+ "http:\/\/pr.gov\/", "about": [{"name": "Missouri AT"}, {"name": "Puerto Rico"}],
+ "isFamilyFriendly": true, "displayUrl": "pr.gov", "snippet": "Es el medio
+ oficial de avisos de subastas de todas las agencias de la Rama Ejecutiva y
+ las corporaciones públicas del Gobierno del Estado Libre Asociado de Puerto
+ Rico, según la Ley Núm 205-2012.", "dateLastCrawled": "2018-11-12T20:11:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov",
+ "url": "https:\/\/gobierno.usa.gov\/", "about": [{"name": "GobiernoUSA.gov"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov", "snippet":
+ "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno de
+ Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/info", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/servicios.pr.gov\/info", "snippet": "Este nuevo servicio se encuentra
+ en un periodo de mejoramiento continuo conocido como beta. Durante este periodo,
+ el servicio será completamente gratuito y todos los certificados emitidos
+ mediante el mismo son oficiales.", "dateLastCrawled": "2018-11-15T04:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "informacion de formularios prgov Solicitud de ...", "url": "http:\/\/www2.pr.gov\/pages\/informaciondeformulariosprgovsolicituddecertificaci%C3%B3ndecumplimientodeasume.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/pages...", "snippet":
+ "Para desplegar correctamente los formularios en PR.GOV debe activar el “Compatibility
+ View”, requerido al actualizar a Internet Explorer 8 y 9. Tiene dos opciones:
+ Opción 1: Presionar el botón de Compatibility View. Cuando accede el portal
+ PR.GOV aparecerá a la derecha del navegador.", "dateLastCrawled": "2018-11-15T11:26:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "search - PR.gov", "url": "http:\/\/www2.pr.gov\/Pages\/search.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Pages\/search.aspx",
+ "snippet": "A través de este servicio usted podrá realiza una pre-cualificación
+ para el Programa Medicaid \/ Plan de Salud del Gobierno. Le indica el número
+ de teléfono a llamar para realizar una cita o recibir orientación. Gratis.
+ N\/A. Buscador de Escuelas.", "dateLastCrawled": "2018-11-13T22:00:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Convocatorias y Becas Busqueda de Convocatorias y Becas", "url":
+ "http:\/\/www2.pr.gov\/Pages\/empleos.aspx", "isFamilyFriendly": true, "displayUrl":
+ "www2.pr.gov\/Pages\/empleos.aspx", "snippet": "Gobierno Federal; Tercer
+ Sector; Directorios. Directorio de Agencias; Directorio de Municipios de Puerto
+ Rico; La Fortaleza; Líneas de Ayuda para Emergencias; Junta Revisora de Propiedead
+ Inmueble; Ventanilla Unica. Ventanilla Única Villalba; Ventanilla Única Vega
+ Baja; Ventanilla Única Toa Alta;", "dateLastCrawled": "2018-11-16T08:39:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Directorio de Agencias - PR.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "snippet": "Gobierno a Gobierno; Convocatorias; Subastas Públicas ‹ ›
+ Directorio de Agencias. Sobre Puerto Rico ...", "dateLastCrawled": "2018-11-14T17:02:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Servicios e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov can help
+ you start your search for government information by topic and agency.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Department of Commerce", "url": "https:\/\/www.commerce.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.commerce.gov", "snippet": "The advice
+ I would have to give a new veteran is to keep on studying and keep learning.
+ In order to adequately prepare oneself for the rigors of any career today
+ you always have to be a step or two ahead of our competitors.", "dateLastCrawled":
+ "2018-11-07T18:02:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Pages\/servicefilter.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Pages\/servicefilter.aspx",
+ "snippet": "Página del Gobierno Federal que se utiliza para la búsqueda
+ de personas desaparecidas. Gratis. Portal de Datos Geográficos Gubernamentales
+ – GIS. Este portal centraliza los datos geográficos digitales producidos por
+ las agencias y corporaciones desde 2001-2012 donde los ciudadanos tendrán
+ acceso a esos datos.", "dateLastCrawled": "2018-11-13T14:35:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Solicitud de Certificación de Cumplimiento de ASUME", "url": "http:\/\/pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "isFamilyFriendly": true, "displayUrl": "pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "snippet": "Mediante esta transacción el ciudadano puede solicitar un documento
+ que certifica si tiene o no tiene un caso de pensión alimentaria en ASUME.",
+ "dateLastCrawled": "2018-11-15T17:17:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Gobierno - Houston", "url": "http:\/\/www.houstontx.gov\/espanol\/gobierno\/",
+ "isFamilyFriendly": true, "displayUrl": "www.houstontx.gov\/espanol\/gobierno",
+ "snippet": "Ciudad de Houston Gobierno . Sylvester Turner Alcalde 832.393.1000.
+ sylvester.turner@houstontx.gov www.houstontx.gov\/mayor. Agenda del Concejo;
+ Alcaldía", "dateLastCrawled": "2018-11-12T13:31:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Directorio Gubernamental", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "snippet": "Directorio de Agencias. Aquí accederá al Directorio de Agencias
+ del Estado Libre Asociado de Puerto Rico, con alternativas de búsqueda e información
+ de contacto de todas las entidades de nuestro gobierno.", "dateLastCrawled":
+ "2018-11-12T21:55:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url": "https:\/\/servicios.pr.gov\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/servicios.pr.gov", "snippet":
+ "El Gobierno del Estado Libre Asociado de Puerto Rico se compromete a brindar
+ servicios de alta calidad a través del Portal, dentro de las circunstancias
+ particulares del medio cibernético. El Gobierno del Estado Libre Asociado
+ de Puerto Rico se compromete a cumplir con la Política de Privacidad publicada
+ en el Portal.", "dateLastCrawled": "2018-11-13T18:28:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Departamento de Estado", "url": "https:\/\/estado.pr.gov\/es\/",
+ "about": [{"name": "Puerto Rico Department of State"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/estado.pr.gov\/es", "snippet": "Secretario
+ de Estado destaca que Mesa Permanente del Sector Privado continúa sus esfuerzos
+ con el Gobierno para mejorar y maximizar servicios Viernes, 9 de noviembre
+ de 2018 – (San Juan) – El …", "dateLastCrawled": "2018-11-16T10:12:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal. Este sitio es seguro. El protocolo https:\/\/ le asegura que se está
+ conectando al sitio web oficial y que cualquier información que usted proporcione
+ está encriptada y será transmitida de forma segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Agencies | The State of New York", "url": "https:\/\/www.ny.gov\/agencies",
+ "about": [{"name": "New York"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ny.gov\/agencies",
+ "snippet": "The State of New York does not imply approval of the listed
+ destinations, warrant the accuracy of any information set out in those destinations,
+ or endorse any opinions expressed therein. External web sites operate at the
+ direction of their respective owners who should be contacted directly with
+ questions regarding the content of these sites.", "dateLastCrawled": "2018-11-13T14:19:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:05 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_med_topic_query.yml b/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_med_topic_query.yml
index e333932f4c..74932a2ac0 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_med_topic_query.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_med_topic_query.yml
@@ -446,4 +446,963 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:08 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=alcohol%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4138'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:40 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=21BFA7AB477C68DD1202AB0746AB6966; path=/; expires=Sat, 14-Dec-2019 22:41:40
+ GMT; domain=bingapis.com
+ - MUIDB=21BFA7AB477C68DD1202AB0746AB6966; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:40 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:40 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=1434F265DCBF446AABB027F504C079D3&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:40 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:40
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1165C35F5B5767B8171ECFF35A8066C3; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:40 GMT; domain=bingapis.com
+ - _SS=SID=1165C35F5B5767B8171ECFF35A8066C3; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 060D76AD165644A4AA962B30A50C08A8
+ X-Msedge-Clientid:
+ - 21BFA7AB477C68DD1202AB0746AB6966
+ X-Msapi-Userstate:
+ - fd9a
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 060D76AD165644A4AA962B30A50C08A8 Ref B: CO1EDGE0908 Ref C: 2018-11-19T22:41:40Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:39 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=05BBA342B8264835A24FB9D61C888934&CID=21BFA7AB477C68DD1202AB0746AB6966&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=05BBA342B8264835A24FB9D61C888934&CID=21BFA7AB477C68DD1202AB0746AB6966&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=alcohol+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5435.1", "totalEstimatedMatches": 20200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Alcohol''s Effects on the Body | National Institute on ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body",
+ "urlPingSuffix": "DevEx,5060.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body",
+ "snippet": "Alcohol interferes with the brain’s communication pathways,
+ and can affect the way the brain looks and works. These disruptions can change
+ mood and behavior, and make it harder to think clearly and move with coordination.
+ ...", "dateLastCrawled": "2018-11-13T04:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Alcohol | National Institute on Drug Abuse (NIDA)", "url": "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol",
+ "urlPingSuffix": "DevEx,5076.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol", "snippet": "Brief
+ Description People drink to socialize, celebrate, and relax. Alcohol often
+ has a strong effect on people—and throughout history, people have struggled
+ to understand and manage alcohol’s power.", "dateLastCrawled": "2018-11-15T11:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "CDC -
+ Fact Sheets-Alcohol Use And Health - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm",
+ "urlPingSuffix": "DevEx,5090.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm", "snippet":
+ "Excessive alcohol use can lead to increased risk of health problems such
+ as injuries, violence, liver diseases, and cancer.The CDC Alcohol Program
+ works to strengthen the scientific foundation for preventing excessive alcohol
+ use.", "dateLastCrawled": "2018-11-13T18:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "CDC - Frequently Asked Questions - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "urlPingSuffix": "DevEx,5102.1", "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "snippet": "What is alcohol? Ethyl alcohol, or ethanol, is an intoxicating
+ ingredient found in beer, wine, and liquor. Alcohol is produced by the fermentation
+ of yeast, sugars, and starches.", "dateLastCrawled": "2018-10-25T11:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Alcohol
+ and Cancer Risk Fact Sheet - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/alcohol-fact-sheet",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/...",
+ "snippet": "Alcohol is the common term for ethanol or ethyl alcohol, a
+ chemical substance found in alcoholic beverages such as beer, hard cider,
+ malt liquor, wines, and distilled spirits (liquor). Alcohol is produced
+ by the fermentation of sugars and starches by yeast.", "dateLastCrawled":
+ "2018-10-30T09:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Alcohol: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcohol.html",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/medlineplus.gov\/alcohol.html", "snippet": "If you are like many
+ Americans, you drink alcohol at least occasionally. For many people, moderate
+ drinking is probably safe. It may even have health benefits, including reducing
+ your risk of certain heart problems.", "dateLastCrawled": "2018-11-13T15:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "CDC -
+ Alcohol and Public Health Home Page - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/index.htm",
+ "urlPingSuffix": "DevEx,5148.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.cdc.gov\/alcohol", "snippet": "Excessive alcohol use,
+ including underage drinking and binge drinking (drinking 5 or more drinks
+ on an occasion for men or 4 or more drinks on an occasion for women), can
+ lead to increased risk of health problems such as injuries, violence, liver
+ diseases, and cancer.", "dateLastCrawled": "2018-11-15T07:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Alcohol
+ | NIDA for Teens", "url": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "urlPingSuffix": "DevEx,5164.1", "displayUrl": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "snippet": "Alcohol is the most commonly used substance of abuse among young
+ people in America, and drinking when you’re underage puts your health and
+ safety at risk. ...", "dateLastCrawled": "2018-11-15T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Alcohol
+ & Your Health | National Institute on Alcohol ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/",
+ "urlPingSuffix": "DevEx,5178.1", "about": [{"name": "National Institute on
+ Alcohol Abuse and Alcoholism"}], "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health",
+ "snippet": "Alcohol’s effects on your brain and body depend on the ways
+ you drink–such as how much and how often–as well as your age, gender, and
+ overall health status. What Is a Standard Drink?You may be drinking more than
+ you realize;", "dateLastCrawled": "2018-11-15T23:12:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Alcohol Use
+ in Pregnancy | FASD | NCBDDD | CDC", "url": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "urlPingSuffix": "DevEx,5192.1", "displayUrl": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "snippet": "There is no known safe amount of alcohol use during pregnancy
+ or while trying to get pregnant. There is also no safe time during pregnancy
+ to drink. All types of alcohol are equally harmful, including all wines
+ and beer. When a pregnant woman drinks alcohol, so does her baby. Women
+ also should not ...", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Alcohol
+ | Breastfeeding | CDC", "url": "https:\/\/www.cdc.gov\/breastfeeding\/breastfeeding-special-circumstances\/vaccinations-medications-drugs\/alcohol.html",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www.cdc.gov\/...\/vaccinations-medications-drugs\/alcohol.html",
+ "snippet": "The alcohol level in breast milk is essentially the same as
+ the alcohol level in a mother’s bloodstream. Expressing or pumping milk
+ after drinking alcohol, and then discarding it (“pumping and dumping”),
+ does NOT reduce the amount of alcohol present in the mother’s milk more
+ quickly.", "dateLastCrawled": "2018-11-06T23:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Alcohol Facts and Statistics | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-facts-and-statistics",
+ "urlPingSuffix": "DevEx,5221.1", "about": [{"name": "Alcoholism"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/...\/alcohol-facts-and-statistics", "snippet":
+ "Definitions. Alcohol Use Disorder (AUD): AUD is a chronic relapsing brain
+ disease characterized by an impaired ability to stop or control alcohol
+ use despite adverse social, occupational, or health consequences.AUD can range
+ from mild to severe, and recovery is possible regardless of severity. The
+ fourth edition of the Diagnostic and Statistical Manual (DSM-IV), published
+ by the American ...", "dateLastCrawled": "2018-11-14T23:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Alcohol
+ Use Disorder | National Institute on Alcohol Abuse ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-use-disorders",
+ "urlPingSuffix": "DevEx,5237.1", "about": [{"name": "Alcoholism"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol...", "snippet":
+ "Alcohol Use Disorder AUD is a chronic relapsing brain disease characterized
+ by compulsive alcohol use, loss of control over alcohol intake, and a
+ negative emotional state when not using. An estimated 16 million people in
+ the United States have AUD.", "dateLastCrawled": "2018-11-13T22:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "TTB |
+ FAQs | Alcohol", "url": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml", "urlPingSuffix":
+ "DevEx,5249.1", "displayUrl": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml",
+ "snippet": "The Alcohol and Tobacco Tax and Trade Bureau does not normally
+ conduct studies or maintain information about alcohol consumption because
+ we do not enforce laws or regulations relating to the effects from consuming
+ alcohol.", "dateLastCrawled": "2018-11-07T07:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "National Institute on Alcohol Abuse and Alcoholism (NIAAA)", "url":
+ "https:\/\/www.niaaa.nih.gov\/", "urlPingSuffix": "DevEx,5263.1", "about":
+ [{"name": "National Institute on Alcohol Abuse and Alcoholism"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov", "snippet": "Alcohol treatment navigator Learn
+ more; Research Training at NIAAA. College Drinking. Rethinking Drinking: Signs.
+ Alcohol treatment navigator. Latest News. News Release. October 25, 2018.
+ NIDA-NIAAA 2018 Mini-Convention: Frontiers in Addiction Research.", "dateLastCrawled":
+ "2018-11-16T00:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Appendix 9. Alcohol - 2015-2020 Dietary Guidelines ...", "url":
+ "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9\/",
+ "urlPingSuffix": "DevEx,5275.1", "displayUrl": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9",
+ "snippet": "Alcohol is not a component of the USDA Food Patterns. Thus,
+ if alcohol is consumed, the calories from alcohol should be accounted
+ for so that the limits on calories for other uses and total calories are not
+ exceeded (see the Other Dietary Components section of Chapter 1.", "dateLastCrawled":
+ "2018-11-16T08:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Alcohol | Iowa Alcoholic Beverages Division", "url": "https:\/\/abd.iowa.gov\/alcohol",
+ "urlPingSuffix": "DevEx,5289.1", "about": [{"name": "Iowa Alcoholic Beverages
+ Division"}], "displayUrl": "https:\/\/abd.iowa.gov\/alcohol", "snippet":
+ "Alcohol Compliance, regulation and enforcement of Iowa’s alcoholic beverages
+ laws depends on their joint efforts. The goal of this site is to provide information
+ to help protect the welfare and safety of Iowans through compliance with laws
+ regarding the manufacturing, distribution and sale of alcoholic beverages.",
+ "dateLastCrawled": "2018-11-16T00:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Alcohol | VitalSigns | CDC", "url": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "urlPingSuffix": "DevEx,5303.1", "displayUrl": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "snippet": "Alcohol poisoning is caused by drinking large quantities of
+ alcohol in a short period of time. Very high levels of alcohol in the
+ body can shutdown critical areas of the brain that control breathing, heart
+ rate, and body temperature, resulting in death.", "dateLastCrawled": "2018-11-13T10:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Overview
+ of Alcohol Consumption | National Institute on ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "urlPingSuffix": "DevEx,5319.1", "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "snippet": "Alcohol’s immediate effects can appear within about 10 minutes.
+ As you drink, you increase your blood alcohol concentration (BAC) level,
+ which is the amount of alcohol present in your bloodstream. The higher your
+ BAC, the more impaired you become by alcohol’s effects.", "dateLastCrawled":
+ "2018-11-12T08:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "CDC - Fact Sheets-Underage Drinking - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/underage-drinking.htm",
+ "urlPingSuffix": "DevEx,5333.1", "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/underage-drinking.htm",
+ "snippet": "Underage Drinking Alcohol is the most commonly used and abused
+ drug among youth in the United States. 1 Excessive drinking is responsible
+ for more than 4,300 deaths among underage youth each year, and cost the U.S.
+ $24 billion in economic costs in 2010. 2,3", "dateLastCrawled": "2018-11-11T11:22:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:40 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=alcohol%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4115'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:41 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0DB381337D2C6CB53FB98D9F7CFB6DBE; path=/; expires=Sat, 14-Dec-2019 22:41:41
+ GMT; domain=bingapis.com
+ - MUIDB=0DB381337D2C6CB53FB98D9F7CFB6DBE; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:41 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:41 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=647C0FB3C8994ADA9CAAEBB2B99E5ED9&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:41 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:41
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2731B0060DA969FF3AC6BCAA0C7E682E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:41 GMT; domain=bingapis.com
+ - _SS=SID=2731B0060DA969FF3AC6BCAA0C7E682E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - '033039D4D5F94339BDB72D89FD96C850'
+ X-Msedge-Clientid:
+ - 0DB381337D2C6CB53FB98D9F7CFB6DBE
+ X-Msapi-Userstate:
+ - '5098'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 033039D4D5F94339BDB72D89FD96C850 Ref B: CO1EDGE0918 Ref C: 2018-11-19T22:41:41Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:40 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=647AB74A148B40CCB7E8A818912C211A&CID=0DB381337D2C6CB53FB98D9F7CFB6DBE&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=647AB74A148B40CCB7E8A818912C211A&CID=0DB381337D2C6CB53FB98D9F7CFB6DBE&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=alcohol+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5438.1", "totalEstimatedMatches": 20200000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Alcohol''s Effects on the Body | National Institute on ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body",
+ "urlPingSuffix": "DevEx,5061.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body",
+ "snippet": "Alcohol interferes with the brain’s communication pathways,
+ and can affect the way the brain looks and works. These disruptions can change
+ mood and behavior, and make it harder to think clearly and move with coordination.
+ ...", "dateLastCrawled": "2018-11-13T04:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Alcohol | National Institute on Drug Abuse (NIDA)", "url": "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol",
+ "urlPingSuffix": "DevEx,5077.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol", "snippet": "Brief
+ Description People drink to socialize, celebrate, and relax. Alcohol often
+ has a strong effect on people—and throughout history, people have struggled
+ to understand and manage alcohol’s power.", "dateLastCrawled": "2018-11-15T11:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "CDC -
+ Fact Sheets-Alcohol Use And Health - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm",
+ "urlPingSuffix": "DevEx,5091.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm", "snippet":
+ "Excessive alcohol use can lead to increased risk of health problems such
+ as injuries, violence, liver diseases, and cancer.The CDC Alcohol Program
+ works to strengthen the scientific foundation for preventing excessive alcohol
+ use.", "dateLastCrawled": "2018-11-13T18:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "CDC - Frequently Asked Questions - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "urlPingSuffix": "DevEx,5103.1", "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "snippet": "What is alcohol? Ethyl alcohol, or ethanol, is an intoxicating
+ ingredient found in beer, wine, and liquor. Alcohol is produced by the fermentation
+ of yeast, sugars, and starches.", "dateLastCrawled": "2018-10-25T11:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Alcohol
+ and Cancer Risk Fact Sheet - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/alcohol-fact-sheet",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/...",
+ "snippet": "Alcohol is the common term for ethanol or ethyl alcohol, a
+ chemical substance found in alcoholic beverages such as beer, hard cider,
+ malt liquor, wines, and distilled spirits (liquor). Alcohol is produced
+ by the fermentation of sugars and starches by yeast.", "dateLastCrawled":
+ "2018-10-30T09:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Alcohol: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcohol.html",
+ "urlPingSuffix": "DevEx,5135.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/medlineplus.gov\/alcohol.html", "snippet": "If you are like many
+ Americans, you drink alcohol at least occasionally. For many people, moderate
+ drinking is probably safe. It may even have health benefits, including reducing
+ your risk of certain heart problems.", "dateLastCrawled": "2018-11-13T15:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "CDC -
+ Alcohol and Public Health Home Page - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/index.htm",
+ "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "Alcohol"}], "displayUrl":
+ "https:\/\/www.cdc.gov\/alcohol", "snippet": "Excessive alcohol use,
+ including underage drinking and binge drinking (drinking 5 or more drinks
+ on an occasion for men or 4 or more drinks on an occasion for women), can
+ lead to increased risk of health problems such as injuries, violence, liver
+ diseases, and cancer.", "dateLastCrawled": "2018-11-15T07:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Alcohol
+ | NIDA for Teens", "url": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "snippet": "Alcohol is the most commonly used substance of abuse among young
+ people in America, and drinking when you’re underage puts your health and
+ safety at risk. ...", "dateLastCrawled": "2018-11-15T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Alcohol
+ & Your Health | National Institute on Alcohol ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/",
+ "urlPingSuffix": "DevEx,5179.1", "about": [{"name": "National Institute on
+ Alcohol Abuse and Alcoholism"}], "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health",
+ "snippet": "Alcohol’s effects on your brain and body depend on the ways
+ you drink–such as how much and how often–as well as your age, gender, and
+ overall health status. What Is a Standard Drink?You may be drinking more than
+ you realize;", "dateLastCrawled": "2018-11-15T23:12:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Alcohol Use
+ in Pregnancy | FASD | NCBDDD | CDC", "url": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "urlPingSuffix": "DevEx,5193.1", "displayUrl": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "snippet": "There is no known safe amount of alcohol use during pregnancy
+ or while trying to get pregnant. There is also no safe time during pregnancy
+ to drink. All types of alcohol are equally harmful, including all wines
+ and beer. When a pregnant woman drinks alcohol, so does her baby. Women
+ also should not ...", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Alcohol
+ | Breastfeeding | CDC", "url": "https:\/\/www.cdc.gov\/breastfeeding\/breastfeeding-special-circumstances\/vaccinations-medications-drugs\/alcohol.html",
+ "urlPingSuffix": "DevEx,5205.1", "displayUrl": "https:\/\/www.cdc.gov\/...\/vaccinations-medications-drugs\/alcohol.html",
+ "snippet": "The alcohol level in breast milk is essentially the same as
+ the alcohol level in a mother’s bloodstream. Expressing or pumping milk
+ after drinking alcohol, and then discarding it (“pumping and dumping”),
+ does NOT reduce the amount of alcohol present in the mother’s milk more
+ quickly.", "dateLastCrawled": "2018-11-06T23:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Alcohol Facts and Statistics | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-facts-and-statistics",
+ "urlPingSuffix": "DevEx,5222.1", "about": [{"name": "Alcoholism"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/...\/alcohol-facts-and-statistics", "snippet":
+ "Definitions. Alcohol Use Disorder (AUD): AUD is a chronic relapsing brain
+ disease characterized by an impaired ability to stop or control alcohol
+ use despite adverse social, occupational, or health consequences.AUD can range
+ from mild to severe, and recovery is possible regardless of severity. The
+ fourth edition of the Diagnostic and Statistical Manual (DSM-IV), published
+ by the American ...", "dateLastCrawled": "2018-11-14T23:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Alcohol
+ Use Disorder | National Institute on Alcohol Abuse ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-use-disorders",
+ "urlPingSuffix": "DevEx,5238.1", "about": [{"name": "Alcoholism"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol...", "snippet":
+ "Alcohol Use Disorder AUD is a chronic relapsing brain disease characterized
+ by compulsive alcohol use, loss of control over alcohol intake, and a
+ negative emotional state when not using. An estimated 16 million people in
+ the United States have AUD.", "dateLastCrawled": "2018-11-13T22:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "TTB |
+ FAQs | Alcohol", "url": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml", "urlPingSuffix":
+ "DevEx,5250.1", "displayUrl": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml",
+ "snippet": "The Alcohol and Tobacco Tax and Trade Bureau does not normally
+ conduct studies or maintain information about alcohol consumption because
+ we do not enforce laws or regulations relating to the effects from consuming
+ alcohol.", "dateLastCrawled": "2018-11-07T07:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "National Institute on Alcohol Abuse and Alcoholism (NIAAA)", "url":
+ "https:\/\/www.niaaa.nih.gov\/", "urlPingSuffix": "DevEx,5264.1", "about":
+ [{"name": "National Institute on Alcohol Abuse and Alcoholism"}], "displayUrl":
+ "https:\/\/www.niaaa.nih.gov", "snippet": "Alcohol treatment navigator Learn
+ more; Research Training at NIAAA. College Drinking. Rethinking Drinking: Signs.
+ Alcohol treatment navigator. Latest News. News Release. October 25, 2018.
+ NIDA-NIAAA 2018 Mini-Convention: Frontiers in Addiction Research.", "dateLastCrawled":
+ "2018-11-16T00:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Alcoholism and Alcohol Abuse: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcoholismandalcoholabuse.html",
+ "urlPingSuffix": "DevEx,5280.1", "about": [{"name": "Alcoholism"}], "displayUrl":
+ "https:\/\/medlineplus.gov\/alcoholismandalcoholabuse.html", "snippet":
+ "For most adults, moderate alcohol use is probably not harmful. However,
+ about 18 million adult Americans have an alcohol use disorder (AUD). This
+ means that their drinking causes distress and harm.", "dateLastCrawled": "2018-11-13T12:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Appendix
+ 9. Alcohol - 2015-2020 Dietary Guidelines ...", "url": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9\/",
+ "urlPingSuffix": "DevEx,5292.1", "displayUrl": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9",
+ "snippet": "Alcohol is not a component of the USDA Food Patterns. Thus,
+ if alcohol is consumed, the calories from alcohol should be accounted
+ for so that the limits on calories for other uses and total calories are not
+ exceeded (see the Other Dietary Components section of Chapter 1.", "dateLastCrawled":
+ "2018-11-16T08:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Alcohol | Iowa Alcoholic Beverages Division", "url": "https:\/\/abd.iowa.gov\/alcohol",
+ "urlPingSuffix": "DevEx,5306.1", "about": [{"name": "Iowa Alcoholic Beverages
+ Division"}], "displayUrl": "https:\/\/abd.iowa.gov\/alcohol", "snippet":
+ "Alcohol Compliance, regulation and enforcement of Iowa’s alcoholic beverages
+ laws depends on their joint efforts. The goal of this site is to provide information
+ to help protect the welfare and safety of Iowans through compliance with laws
+ regarding the manufacturing, distribution and sale of alcoholic beverages.",
+ "dateLastCrawled": "2018-11-16T00:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Alcohol | VitalSigns | CDC", "url": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "urlPingSuffix": "DevEx,5320.1", "displayUrl": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "snippet": "Alcohol poisoning is caused by drinking large quantities of
+ alcohol in a short period of time. Very high levels of alcohol in the
+ body can shutdown critical areas of the brain that control breathing, heart
+ rate, and body temperature, resulting in death.", "dateLastCrawled": "2018-11-13T10:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Overview
+ of Alcohol Consumption | National Institute on ...", "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "urlPingSuffix": "DevEx,5336.1", "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "snippet": "Alcohol’s immediate effects can appear within about 10 minutes.
+ As you drink, you increase your blood alcohol concentration (BAC) level,
+ which is the amount of alcohol present in your bloodstream. The higher your
+ BAC, the more impaired you become by alcohol’s effects.", "dateLastCrawled":
+ "2018-11-12T08:26:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:41 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=alcohol%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 4F523EA5C1D3496A8302D24691174F84
+ Bingapis-Sessionid:
+ - 2309E98F5CE34FC1B142E1A10D820D20
+ X-Msedge-Clientid:
+ - 2C0BC75588C6697B1DC8CBF9898A6804
+ X-Msapi-Userstate:
+ - 92de
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=174,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 4F523EA5C1D3496A8302D24691174F84 Ref B: BY3EDGE0220 Ref C: 2018-11-19T22:42:53Z'
+ Apim-Request-Id:
+ - fc15d838-fbdc-4166-aa82-67adbaad7f6d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "alcohol
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=alcohol+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 20200000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Alcohol''s Effects on the Body | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body", "about":
+ [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body",
+ "snippet": "Alcohol interferes with the brain’s communication pathways,
+ and can affect the way the brain looks and works. These disruptions can change
+ mood and behavior, and make it harder to think clearly and move with coordination.
+ ...", "dateLastCrawled": "2018-11-13T04:37:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Alcohol | National Institute on Drug Abuse (NIDA)", "url": "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol",
+ "snippet": "Brief Description People drink to socialize, celebrate, and relax.
+ Alcohol often has a strong effect on people—and throughout history, people
+ have struggled to understand and manage alcohol’s power.", "dateLastCrawled":
+ "2018-11-15T11:03:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "CDC - Fact Sheets-Alcohol Use And Health - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm",
+ "snippet": "Excessive alcohol use can lead to increased risk of health problems
+ such as injuries, violence, liver diseases, and cancer.The CDC Alcohol Program
+ works to strengthen the scientific foundation for preventing excessive alcohol
+ use.", "dateLastCrawled": "2018-11-13T18:01:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "CDC - Frequently Asked Questions - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "snippet": "What is alcohol? Ethyl alcohol, or ethanol, is an intoxicating
+ ingredient found in beer, wine, and liquor. Alcohol is produced by the fermentation
+ of yeast, sugars, and starches.", "dateLastCrawled": "2018-10-25T11:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Alcohol and Cancer Risk Fact Sheet - National Cancer Institute",
+ "url": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/alcohol-fact-sheet",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/...",
+ "snippet": "Alcohol is the common term for ethanol or ethyl alcohol, a
+ chemical substance found in alcoholic beverages such as beer, hard cider,
+ malt liquor, wines, and distilled spirits (liquor). Alcohol is produced
+ by the fermentation of sugars and starches by yeast.", "dateLastCrawled":
+ "2018-10-30T09:40:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Alcohol: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcohol.html",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/medlineplus.gov\/alcohol.html",
+ "snippet": "If you are like many Americans, you drink alcohol at least occasionally.
+ For many people, moderate drinking is probably safe. It may even have health
+ benefits, including reducing your risk of certain heart problems.", "dateLastCrawled":
+ "2018-11-13T15:01:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "CDC - Alcohol and Public Health Home Page - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/index.htm",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/alcohol",
+ "snippet": "Excessive alcohol use, including underage drinking and binge
+ drinking (drinking 5 or more drinks on an occasion for men or 4 or more drinks
+ on an occasion for women), can lead to increased risk of health problems such
+ as injuries, violence, liver diseases, and cancer.", "dateLastCrawled": "2018-11-15T07:47:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Alcohol | NIDA for Teens", "url": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "snippet": "Alcohol is the most commonly used substance of abuse among young
+ people in America, and drinking when you’re underage puts your health and
+ safety at risk. ...", "dateLastCrawled": "2018-11-15T03:21:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Alcohol & Your Health | National Institute on Alcohol ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/", "about": [{"name": "National
+ Institute on Alcohol Abuse and Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health", "snippet": "Alcohol’s effects
+ on your brain and body depend on the ways you drink–such as how much and how
+ often–as well as your age, gender, and overall health status. What Is a Standard
+ Drink?You may be drinking more than you realize;", "dateLastCrawled": "2018-11-15T23:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Alcohol Use in Pregnancy | FASD | NCBDDD | CDC", "url": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "snippet": "There is no known safe amount of alcohol use during pregnancy
+ or while trying to get pregnant. There is also no safe time during pregnancy
+ to drink. All types of alcohol are equally harmful, including all wines
+ and beer. When a pregnant woman drinks alcohol, so does her baby. Women
+ also should not ...", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Alcohol | Breastfeeding | CDC", "url": "https:\/\/www.cdc.gov\/breastfeeding\/breastfeeding-special-circumstances\/vaccinations-medications-drugs\/alcohol.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/...\/vaccinations-medications-drugs\/alcohol.html",
+ "snippet": "The alcohol level in breast milk is essentially the same as
+ the alcohol level in a mother’s bloodstream. Expressing or pumping milk
+ after drinking alcohol, and then discarding it (“pumping and dumping”),
+ does NOT reduce the amount of alcohol present in the mother’s milk more
+ quickly.", "dateLastCrawled": "2018-11-06T23:25:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Alcohol Facts and Statistics | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-facts-and-statistics",
+ "about": [{"name": "Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/...\/alcohol-facts-and-statistics", "snippet":
+ "Definitions. Alcohol Use Disorder (AUD): AUD is a chronic relapsing brain
+ disease characterized by an impaired ability to stop or control alcohol
+ use despite adverse social, occupational, or health consequences.AUD can range
+ from mild to severe, and recovery is possible regardless of severity. The
+ fourth edition of the Diagnostic and Statistical Manual (DSM-IV), published
+ by the American ...", "dateLastCrawled": "2018-11-14T23:33:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Alcohol Use Disorder | National Institute on Alcohol Abuse ...",
+ "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-use-disorders",
+ "about": [{"name": "Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol...", "snippet":
+ "Alcohol Use Disorder AUD is a chronic relapsing brain disease characterized
+ by compulsive alcohol use, loss of control over alcohol intake, and a
+ negative emotional state when not using. An estimated 16 million people in
+ the United States have AUD.", "dateLastCrawled": "2018-11-13T22:06:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "TTB | FAQs | Alcohol", "url": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml",
+ "snippet": "The Alcohol and Tobacco Tax and Trade Bureau does not normally
+ conduct studies or maintain information about alcohol consumption because
+ we do not enforce laws or regulations relating to the effects from consuming
+ alcohol.", "dateLastCrawled": "2018-11-07T07:38:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "National Institute on Alcohol Abuse and Alcoholism (NIAAA)", "url":
+ "https:\/\/www.niaaa.nih.gov\/", "about": [{"name": "National Institute on
+ Alcohol Abuse and Alcoholism"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niaaa.nih.gov",
+ "snippet": "Alcohol treatment navigator Learn more; Research Training at
+ NIAAA. College Drinking. Rethinking Drinking: Signs. Alcohol treatment navigator.
+ Latest News. News Release. October 25, 2018. NIDA-NIAAA 2018 Mini-Convention:
+ Frontiers in Addiction Research.", "dateLastCrawled": "2018-11-16T00:36:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Alcoholism and Alcohol Abuse: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcoholismandalcoholabuse.html",
+ "about": [{"name": "Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/medlineplus.gov\/alcoholismandalcoholabuse.html", "snippet":
+ "For most adults, moderate alcohol use is probably not harmful. However,
+ about 18 million adult Americans have an alcohol use disorder (AUD). This
+ means that their drinking causes distress and harm.", "dateLastCrawled": "2018-11-13T12:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Appendix 9. Alcohol - 2015-2020 Dietary Guidelines ...", "url":
+ "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9",
+ "snippet": "Alcohol is not a component of the USDA Food Patterns. Thus,
+ if alcohol is consumed, the calories from alcohol should be accounted
+ for so that the limits on calories for other uses and total calories are not
+ exceeded (see the Other Dietary Components section of Chapter 1.", "dateLastCrawled":
+ "2018-11-16T08:26:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Alcohol | Iowa Alcoholic Beverages Division", "url": "https:\/\/abd.iowa.gov\/alcohol",
+ "about": [{"name": "Iowa Alcoholic Beverages Division"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/abd.iowa.gov\/alcohol", "snippet": "Alcohol
+ Compliance, regulation and enforcement of Iowa’s alcoholic beverages laws
+ depends on their joint efforts. The goal of this site is to provide information
+ to help protect the welfare and safety of Iowans through compliance with laws
+ regarding the manufacturing, distribution and sale of alcoholic beverages.",
+ "dateLastCrawled": "2018-11-16T00:20:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Alcohol | VitalSigns | CDC", "url": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "snippet": "Alcohol poisoning is caused by drinking large quantities of
+ alcohol in a short period of time. Very high levels of alcohol in the
+ body can shutdown critical areas of the brain that control breathing, heart
+ rate, and body temperature, resulting in death.", "dateLastCrawled": "2018-11-13T10:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Overview of Alcohol Consumption | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "snippet": "Alcohol’s immediate effects can appear within about 10 minutes.
+ As you drink, you increase your blood alcohol concentration (BAC) level,
+ which is the amount of alcohol present in your bloodstream. The higher your
+ BAC, the more impaired you become by alcohol’s effects.", "dateLastCrawled":
+ "2018-11-12T08:26:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:54 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=alcohol%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:54 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - D918DB6C0ED2447EA4716FC1969A40F5
+ Bingapis-Sessionid:
+ - E7179ABDDE27498EAD6DD683779BEC2D
+ X-Msedge-Clientid:
+ - 228EF8C54882605D09A8F46949CE6116
+ X-Msapi-Userstate:
+ - 2b6e
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=124,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: D918DB6C0ED2447EA4716FC1969A40F5 Ref B: BY3EDGE0108 Ref C: 2018-11-19T22:42:54Z'
+ Apim-Request-Id:
+ - cf3071b4-68bb-4331-a016-f09c7e848440
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "alcohol
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=alcohol+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 20200000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Alcohol''s Effects on the Body | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body", "about":
+ [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/alcohols-effects-body",
+ "snippet": "Alcohol interferes with the brain’s communication pathways,
+ and can affect the way the brain looks and works. These disruptions can change
+ mood and behavior, and make it harder to think clearly and move with coordination.
+ ...", "dateLastCrawled": "2018-11-13T04:37:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Alcohol | National Institute on Drug Abuse (NIDA)", "url": "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.drugabuse.gov\/drugs-abuse\/alcohol",
+ "snippet": "Brief Description People drink to socialize, celebrate, and relax.
+ Alcohol often has a strong effect on people—and throughout history, people
+ have struggled to understand and manage alcohol’s power.", "dateLastCrawled":
+ "2018-11-15T11:03:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "CDC - Fact Sheets-Alcohol Use And Health - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/fact-sheets\/alcohol-use.htm",
+ "snippet": "Excessive alcohol use can lead to increased risk of health problems
+ such as injuries, violence, liver diseases, and cancer.The CDC Alcohol Program
+ works to strengthen the scientific foundation for preventing excessive alcohol
+ use.", "dateLastCrawled": "2018-11-13T18:01:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "CDC - Frequently Asked Questions - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/alcohol\/faqs.htm",
+ "snippet": "What is alcohol? Ethyl alcohol, or ethanol, is an intoxicating
+ ingredient found in beer, wine, and liquor. Alcohol is produced by the fermentation
+ of yeast, sugars, and starches.", "dateLastCrawled": "2018-10-25T11:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Alcohol and Cancer Risk Fact Sheet - National Cancer Institute",
+ "url": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/alcohol-fact-sheet",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cancer.gov\/about-cancer\/causes-prevention\/risk\/alcohol\/...",
+ "snippet": "Alcohol is the common term for ethanol or ethyl alcohol, a
+ chemical substance found in alcoholic beverages such as beer, hard cider,
+ malt liquor, wines, and distilled spirits (liquor). Alcohol is produced
+ by the fermentation of sugars and starches by yeast.", "dateLastCrawled":
+ "2018-10-30T09:40:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Alcohol: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcohol.html",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/medlineplus.gov\/alcohol.html",
+ "snippet": "If you are like many Americans, you drink alcohol at least occasionally.
+ For many people, moderate drinking is probably safe. It may even have health
+ benefits, including reducing your risk of certain heart problems.", "dateLastCrawled":
+ "2018-11-13T15:01:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "CDC - Alcohol and Public Health Home Page - Alcohol", "url": "https:\/\/www.cdc.gov\/alcohol\/index.htm",
+ "about": [{"name": "Alcohol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/alcohol",
+ "snippet": "Excessive alcohol use, including underage drinking and binge
+ drinking (drinking 5 or more drinks on an occasion for men or 4 or more drinks
+ on an occasion for women), can lead to increased risk of health problems such
+ as injuries, violence, liver diseases, and cancer.", "dateLastCrawled": "2018-11-15T07:47:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Alcohol | NIDA for Teens", "url": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/teens.drugabuse.gov\/drug-facts\/alcohol",
+ "snippet": "Alcohol is the most commonly used substance of abuse among young
+ people in America, and drinking when you’re underage puts your health and
+ safety at risk. ...", "dateLastCrawled": "2018-11-15T03:21:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Alcohol & Your Health | National Institute on Alcohol ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/", "about": [{"name": "National
+ Institute on Alcohol Abuse and Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health", "snippet": "Alcohol’s effects
+ on your brain and body depend on the ways you drink–such as how much and how
+ often–as well as your age, gender, and overall health status. What Is a Standard
+ Drink?You may be drinking more than you realize;", "dateLastCrawled": "2018-11-15T23:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Alcohol Use in Pregnancy | FASD | NCBDDD | CDC", "url": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/ncbddd\/fasd\/alcohol-use.html",
+ "snippet": "There is no known safe amount of alcohol use during pregnancy
+ or while trying to get pregnant. There is also no safe time during pregnancy
+ to drink. All types of alcohol are equally harmful, including all wines
+ and beer. When a pregnant woman drinks alcohol, so does her baby. Women
+ also should not ...", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Alcohol | Breastfeeding | CDC", "url": "https:\/\/www.cdc.gov\/breastfeeding\/breastfeeding-special-circumstances\/vaccinations-medications-drugs\/alcohol.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/...\/vaccinations-medications-drugs\/alcohol.html",
+ "snippet": "The alcohol level in breast milk is essentially the same as
+ the alcohol level in a mother’s bloodstream. Expressing or pumping milk
+ after drinking alcohol, and then discarding it (“pumping and dumping”),
+ does NOT reduce the amount of alcohol present in the mother’s milk more
+ quickly.", "dateLastCrawled": "2018-11-06T23:25:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Alcohol Facts and Statistics | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-facts-and-statistics",
+ "about": [{"name": "Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/...\/alcohol-facts-and-statistics", "snippet":
+ "Definitions. Alcohol Use Disorder (AUD): AUD is a chronic relapsing brain
+ disease characterized by an impaired ability to stop or control alcohol
+ use despite adverse social, occupational, or health consequences.AUD can range
+ from mild to severe, and recovery is possible regardless of severity. The
+ fourth edition of the Diagnostic and Statistical Manual (DSM-IV), published
+ by the American ...", "dateLastCrawled": "2018-11-14T23:33:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Alcohol Use Disorder | National Institute on Alcohol Abuse ...",
+ "url": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption\/alcohol-use-disorders",
+ "about": [{"name": "Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol...", "snippet":
+ "Alcohol Use Disorder AUD is a chronic relapsing brain disease characterized
+ by compulsive alcohol use, loss of control over alcohol intake, and a
+ negative emotional state when not using. An estimated 16 million people in
+ the United States have AUD.", "dateLastCrawled": "2018-11-13T22:06:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "TTB | FAQs | Alcohol", "url": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/ttb.gov\/faqs\/alcohol_faqs.shtml",
+ "snippet": "The Alcohol and Tobacco Tax and Trade Bureau does not normally
+ conduct studies or maintain information about alcohol consumption because
+ we do not enforce laws or regulations relating to the effects from consuming
+ alcohol.", "dateLastCrawled": "2018-11-07T07:38:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "National Institute on Alcohol Abuse and Alcoholism (NIAAA)", "url":
+ "https:\/\/www.niaaa.nih.gov\/", "about": [{"name": "National Institute on
+ Alcohol Abuse and Alcoholism"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niaaa.nih.gov",
+ "snippet": "Alcohol treatment navigator Learn more; Research Training at
+ NIAAA. College Drinking. Rethinking Drinking: Signs. Alcohol treatment navigator.
+ Latest News. News Release. October 25, 2018. NIDA-NIAAA 2018 Mini-Convention:
+ Frontiers in Addiction Research.", "dateLastCrawled": "2018-11-16T00:36:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Alcoholism and Alcohol Abuse: MedlinePlus", "url": "https:\/\/medlineplus.gov\/alcoholismandalcoholabuse.html",
+ "about": [{"name": "Alcoholism"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/medlineplus.gov\/alcoholismandalcoholabuse.html", "snippet":
+ "For most adults, moderate alcohol use is probably not harmful. However,
+ about 18 million adult Americans have an alcohol use disorder (AUD). This
+ means that their drinking causes distress and harm.", "dateLastCrawled": "2018-11-13T12:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Appendix 9. Alcohol - 2015-2020 Dietary Guidelines ...", "url":
+ "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/health.gov\/dietaryguidelines\/2015\/guidelines\/appendix-9",
+ "snippet": "Alcohol is not a component of the USDA Food Patterns. Thus,
+ if alcohol is consumed, the calories from alcohol should be accounted
+ for so that the limits on calories for other uses and total calories are not
+ exceeded (see the Other Dietary Components section of Chapter 1.", "dateLastCrawled":
+ "2018-11-16T08:26:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Alcohol | Iowa Alcoholic Beverages Division", "url": "https:\/\/abd.iowa.gov\/alcohol",
+ "about": [{"name": "Iowa Alcoholic Beverages Division"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/abd.iowa.gov\/alcohol", "snippet": "Alcohol
+ Compliance, regulation and enforcement of Iowa’s alcoholic beverages laws
+ depends on their joint efforts. The goal of this site is to provide information
+ to help protect the welfare and safety of Iowans through compliance with laws
+ regarding the manufacturing, distribution and sale of alcoholic beverages.",
+ "dateLastCrawled": "2018-11-16T00:20:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Alcohol | VitalSigns | CDC", "url": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/vitalsigns\/alcohol.html",
+ "snippet": "Alcohol poisoning is caused by drinking large quantities of
+ alcohol in a short period of time. Very high levels of alcohol in the
+ body can shutdown critical areas of the brain that control breathing, heart
+ rate, and body temperature, resulting in death.", "dateLastCrawled": "2018-11-13T10:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Overview of Alcohol Consumption | National Institute on ...", "url":
+ "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niaaa.nih.gov\/alcohol-health\/overview-alcohol-consumption",
+ "snippet": "Alcohol’s immediate effects can appear within about 10 minutes.
+ As you drink, you increase your blood alcohol concentration (BAC) level,
+ which is the amount of alcohol present in your bloodstream. The higher your
+ BAC, the more impaired you become by alcohol’s effects.", "dateLastCrawled":
+ "2018-11-12T08:26:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:55 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_results_on_news_govbox.yml b/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_results_on_news_govbox.yml
index a55aeedbe0..8e684682fb 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_results_on_news_govbox.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_matching_results_on_news_govbox.yml
@@ -410,4 +410,968 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:17 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=first%20item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '5067'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:47 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=062A6D06FFD46BF90DCA61AAFE036AAF; path=/; expires=Sat, 14-Dec-2019 22:41:47
+ GMT; domain=bingapis.com
+ - MUIDB=062A6D06FFD46BF90DCA61AAFE036AAF; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:47 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:47 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=921E554D890C4C9F8DBE0D50A6FAE87D&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:47 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:47
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2B8C6E0E33BD68EB317E62A2326A69F8; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:47 GMT; domain=bingapis.com
+ - _SS=SID=2B8C6E0E33BD68EB317E62A2326A69F8; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - A11CC11FC35447698B2B4925389B1D00
+ X-Msedge-Clientid:
+ - 062A6D06FFD46BF90DCA61AAFE036AAF
+ X-Msapi-Userstate:
+ - 7f73
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: A11CC11FC35447698B2B4925389B1D00 Ref B: CO1EDGE0307 Ref C: 2018-11-19T22:41:47Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:47 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=375E4BBDC0F14D95AE807AE280E9D8CD&CID=062A6D06FFD46BF90DCA61AAFE036AAF&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=375E4BBDC0F14D95AE807AE280E9D8CD&CID=062A6D06FFD46BF90DCA61AAFE036AAF&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=first+item+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5398.1", "totalEstimatedMatches": 427000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "1.WN GO 2. MASK OR RESPIRATOR 3. GOGGLES OR FACE SHIELD", "url": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "urlPingSuffix": "DevEx,5057.1", "displayUrl": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "snippet": "peel off second glove over first glove • Discard gloves in a
+ waste container. 2. GOGGLES OR FACE SHIELD ... • If the item is reusable,
+ place in designated receptacle for reprocessing. Otherwise, discard in a waste
+ container. 3.WN GO • Gown front and sleeves are contaminated!", "dateLastCrawled":
+ "2018-11-14T17:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "First U.S. Patent Issued Today in 1790 | USPTO", "url": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued-today-1790",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued...",
+ "snippet": "On July 31, 1790 Samuel Hopkins was issued the first patent
+ for a process of making potash, an ingredient used in fertilizer. The patent
+ was signed by President George Washington. Hopkins was born in Vermont, but
+ was living in Philadelphia, Pa. when the patent was granted.", "dateLastCrawled":
+ "2018-11-10T14:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Boston.gov", "url": "https:\/\/www.boston.gov\/", "urlPingSuffix":
+ "DevEx,5085.1", "about": [{"name": "Eliot Burying Ground"}, {"name": "Boston
+ City Hall Plaza"}, {"name": "Boston"}], "displayUrl": "https:\/\/www.boston.gov",
+ "snippet": "City releases first-ever inventory of Boston''s income-restricted
+ housing . Neighborhood Development. More City news. BOS:311 service requests
+ BOS:311. ... (wait until three hours after snowfall ends) Request a bulk item
+ pickup. Request to salt or plow a street. Report a pothole. Report a parking
+ violation. Report a missing or damaged street sign.", "dateLastCrawled": "2018-11-15T19:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "First
+ 5 California - State Site", "url": "http:\/\/www.ccfc.ca.gov\/", "urlPingSuffix":
+ "DevEx,5099.1", "displayUrl": "www.ccfc.ca.gov", "snippet": "First 5 California
+ was created by voters under Proposition 10 to recognize that children''s health
+ and education are a top priority, especially in the early years of development.
+ Research shows that critical brain growth and other developmental milestones
+ take place during the earliest years of a child''s life.", "dateLastCrawled":
+ "2018-11-15T22:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "First Course of Treatment", "url": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "urlPingSuffix": "DevEx,5111.1", "displayUrl": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "snippet": "Record the date of this surgical procedure in data item Date
+ of First Course of Treatment (NAACCR Item #1270) and\/or Date of First
+ Surgical Procedure (NAACCR Item #1200) as appropriate. • Codes 0–7 are hierarchical.
+ If only one procedure can be recorded, code the procedure that is numerically",
+ "dateLastCrawled": "2018-11-15T18:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "First Grade Mathematics Item Specifications", "url": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs-0717.pdf",
+ "urlPingSuffix": "DevEx,5122.1", "displayUrl": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs...",
+ "snippet": "One of the documents developed is the item specification document,
+ which includes all Missouri grade level\/course expectations arranged by domains\/strands.",
+ "dateLastCrawled": "2018-11-11T01:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "First Aid List - Occupational Safety and Health Administration",
+ "url": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf", "urlPingSuffix":
+ "DevEx,5133.1", "displayUrl": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf",
+ "snippet": "First Aid List 1904.7 (b)(5)(ii) What is “first aid”? For
+ the purposes of Part 1904, \"first aid\" means the following: (A) Using
+ a nonprescription medication at nonprescription strength (for medications",
+ "dateLastCrawled": "2018-11-16T09:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "List 1 HTSUS Product Description - ustr.gov", "url": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations\/List%201.pdf",
+ "urlPingSuffix": "DevEx,5143.1", "displayUrl": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations...",
+ "snippet": "List 1 . HTSUS Subheading Product Description 2845.90.00 Isotopes
+ not in heading 2844 and their compounds other than heavy water 4011.30.00
+ New pneumatic tires, of rubber, of a kind used on aircraft", "dateLastCrawled":
+ "2018-11-11T16:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "hours per response . ..2395.73 FORM 10-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "urlPingSuffix": "DevEx,5154.1", "about": [{"name": "Form 10-K"}, {"name":
+ "Form 10-K"}], "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "snippet": "(1)The combined report contains full and complete answers to all
+ items required by Form 10-K. When responses to a certain item of required
+ disclosure are separated within the combined report, an appropriate cross-reference
+ should", "dateLastCrawled": "2018-11-14T20:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "A Brief Overview of Depreciation | Internal Revenue Service",
+ "url": "https:\/\/www.irs.gov\/businesses\/small-businesses-self-employed\/a-brief-overview-of-depreciation",
+ "urlPingSuffix": "DevEx,5168.1", "about": [{"name": "Depreciation"}], "displayUrl":
+ "https:\/\/www.irs.gov\/...\/a-brief-overview-of-depreciation", "snippet":
+ "Depreciation is an income tax deduction that allows a taxpayer to recover
+ the cost or other basis of certain property. It is an annual allowance for
+ the wear and tear, deterioration, or obsolescence of the property.", "dateLastCrawled":
+ "2018-11-07T11:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Register to Vote and Check or Change Registration | USAGov", "url":
+ "https:\/\/www.usa.gov\/register-to-vote", "urlPingSuffix": "DevEx,5183.1",
+ "displayUrl": "https:\/\/www.usa.gov\/register-to-vote", "snippet": "But
+ first, you need to register before your state’s deadline. Check with your
+ local election office. You can register there or you may be able to register
+ online, at the Department of Motor Vehicles, or using the National Mail Voter
+ Registration Form.", "dateLastCrawled": "2018-10-21T11:12:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "USPS RETURNS
+ CUSTOMER GUIDE", "url": "https:\/\/ribbs.usps.gov\/shipproductsservices\/documents\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "urlPingSuffix": "DevEx,5195.1", "displayUrl": "https:\/\/ribbs.usps.gov\/...\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "snippet": "USPS RETURNS CUSTOMER GUIDE ... hassle-free customer returns
+ policy helps merchants win the first order and a positive returns ... merchandise,
+ test kits, samples and other items. Merchants are charged only if and when
+ the labels are used. Exhibit 2: MRS label example", "dateLastCrawled": "2018-11-15T17:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Home
+ Inventory Checklist", "url": "http:\/\/www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "urlPingSuffix": "DevEx,5206.1", "displayUrl": "www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "snippet": "HOME INVENTORY CHECKLIST ... Items such as sofas, tables,
+ beds, TVs, refrigerators, and lawn mowers should be included in such a schedule.
+ As you compile your inventory, supplement it with receipts indicating the
+ date of purchase and purchase price and photographs of", "dateLastCrawled":
+ "2018-11-15T05:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "What Can I Bring? | Transportation Security Administration",
+ "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "urlPingSuffix": "DevEx,5222.1", "about": [{"name": "Baggage allowance"},
+ {"name": "Transportation Security Administration"}], "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure
+ that the item will fit in the overhead bin or underneath the seat of the
+ airplane.", "dateLastCrawled": "2018-11-15T09:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Best Practices Guide: Fundamentals of a Workplace First ...", "url":
+ "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf", "urlPingSuffix":
+ "DevEx,5234.1", "displayUrl": "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf",
+ "snippet": "First aid is emergency care provided for injury or sudden illness
+ before emergency medical treatment is available. The first-aid provider
+ in the workplace is someone who is trained in the delivery of initial medical
+ emergency procedures, using a limited amount of", "dateLastCrawled": "2018-11-13T20:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Pennsylvania
+ System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5247.1", "about": [{"name": "Pennsylvania System of
+ School Assessment"}], "displayUrl": "www.education.pa.gov\/K-12\/Assessment
+ and Accountability\/PSSA\/Pages...", "snippet": "The annual Pennsylvania System
+ School Assessment is a standards-based, criterion-referenced assessment
+ which provides students, parents, educators and citizens with an understanding
+ of student and school performance related to the attainment of proficiency
+ of the academic standards.", "dateLastCrawled": "2018-11-07T09:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "ISTEP+
+ Grades 3-8, 10 | IDOE", "url": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8-10",
+ "urlPingSuffix": "DevEx,5264.1", "about": [{"name": "Indiana Statewide Testing
+ for Educational Progress-Plus"}], "displayUrl": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8",
+ "snippet": "The Item Samplers on this website provide information about
+ ISTEP+ for students, parents, educators, and others. The items in each sampler
+ are examples of the types of items found on ISTEP+. These examples can serve
+ as models when teachers are constructing items for classroom assessment.",
+ "dateLastCrawled": "2018-11-16T08:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "U.S. Senate: Constitution of the United States", "url": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "urlPingSuffix": "DevEx,5276.1", "displayUrl": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "snippet": "The Seats of the Senators of the first Class shall be vacated
+ at the Expiration of the second Year, of the second Class at the Expiration
+ of the fourth Year, and of the third Class at the Expiration of the sixth
+ Year, so that one third may be chosen every second Year; and if Vacancies
+ happen by Resignation, or otherwise, during the Recess of ...", "dateLastCrawled":
+ "2018-11-05T00:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Final Rule: Additional Form 8-K Disclosure Requirements ...", "url":
+ "https:\/\/www.sec.gov\/rules\/final\/33-8400.htm", "urlPingSuffix": "DevEx,5291.1",
+ "displayUrl": "https:\/\/www.sec.gov\/rules\/final\/33-8400.htm", "snippet":
+ "Additional Form 8-K Disclosure Requirements and Acceleration of Filing
+ Date. SECURITIES AND EXCHANGE COMMISSION. ... We have added four instructions
+ to this item. Similar to Item 2.03, the first instruction clarifies
+ that disclosure is required if a triggering event occurs in respect of the
+ company''s obligation under an off-balance ...", "dateLastCrawled": "2018-11-12T18:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Build
+ A Kit | Ready.gov", "url": "https:\/\/www.ready.gov\/build-a-kit", "urlPingSuffix":
+ "DevEx,5305.1", "about": [{"name": "Emergency shelter"}, {"name": "Ready"}],
+ "displayUrl": "https:\/\/www.ready.gov\/build-a-kit", "snippet": "Make
+ sure your emergency kit is stocked with the items on the checklist below.
+ Most of the items are inexpensive and easy to find, and any one of them
+ could save your life. Headed to the store? Download a printable version to
+ take with you.", "dateLastCrawled": "2018-11-13T23:37:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:48 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=noticia%20uno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4897'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:48 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=34133BBEC58166942F7C3712C456670F; path=/; expires=Sat, 14-Dec-2019 22:41:48
+ GMT; domain=bingapis.com
+ - MUIDB=34133BBEC58166942F7C3712C456670F; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:48 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=29AE90D9054F49BC8F9EF85C9522195C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:48 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:48
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2F12ABE21A6867C31EE8A74E1BBF66F5; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:48 GMT; domain=bingapis.com
+ - _SS=SID=2F12ABE21A6867C31EE8A74E1BBF66F5; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 20425EA3EE0E4EB59075D88BA6FAE7DE
+ X-Msedge-Clientid:
+ - 34133BBEC58166942F7C3712C456670F
+ X-Msapi-Userstate:
+ - e2f1
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 20425EA3EE0E4EB59075D88BA6FAE7DE Ref B: CO1EDGE0508 Ref C: 2018-11-19T22:41:48Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:48 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=7526237C4E574541B6F89CBB0A74D4BA&CID=34133BBEC58166942F7C3712C456670F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=7526237C4E574541B6F89CBB0A74D4BA&CID=34133BBEC58166942F7C3712C456670F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=noticia+uno+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5434.1", "totalEstimatedMatches": 554000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Preguntas y Respuestas: Se extiende TPS para hondureños ...", "url": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se-extiende-tps-para-hondurenos-por-18-meses-mas",
+ "urlPingSuffix": "DevEx,5060.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se...",
+ "snippet": "Para solicitar un cambio de fecha de su cita en un ASC, envíe
+ la copia original de su cita con el cambio de fecha a la dirección de ASC
+ que figura en el aviso. Asegúrese de hacer una copia de su aviso original
+ y manténgalo en sus archivos.", "dateLastCrawled": "2018-11-16T11:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Información
+ General sobre el ITIN | Internal Revenue Service", "url": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general-itin-information",
+ "urlPingSuffix": "DevEx,5072.1", "displayUrl": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general...",
+ "snippet": "Un extranjero que no es residente y no califica para un SSN,
+ quien tiene un requisito de presentar una declaración federal de impuestos
+ sólo para reclamar un reembolso bajo las provisiones de algún acuerdo con
+ los Estados Unidos, necesita un ITIN.", "dateLastCrawled": "2018-11-07T05:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Tarjeta
+ Verde para Familiares Inmediatos de un Ciudadano ...", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "urlPingSuffix": "DevEx,5089.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "snippet": "Si usted es un familiar inmediato de un ciudadano estadounidense,
+ puede convertirse en residente permanente legal (obtener una Tarjeta Verde)
+ a base de su relación familiar, si cumple con ciertos requisitos de elegibilidad.",
+ "dateLastCrawled": "2018-11-13T21:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Nuevos Inmigrantes Ahora pueden Crear una Cuenta de USCIS ...", "url":
+ "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora-pueden-crear-una-cuenta-de-uscis-en-linea-al-pagar-la-tarifa-de-inmigrante-de-uscis",
+ "urlPingSuffix": "DevEx,5105.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora...",
+ "snippet": "Un mensaje a los nuevos inmigrantes: Ahora usted tiene la opción
+ de crear una cuenta de USCIS en línea al momento de pagar la Tarifa de Inmigrante
+ de USCIS. Una cuenta en línea le permitirá dar seguimiento fácilmente al estatus
+ de su Tarjeta Verde, recibir notificaciones electrónicas y ...", "dateLastCrawled":
+ "2018-11-07T03:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "| Policía de Puerto Rico", "url": "https:\/\/policia.pr.gov\/", "urlPingSuffix":
+ "DevEx,5118.1", "about": [{"name": "Puerto Rico Police"}], "displayUrl": "https:\/\/policia.pr.gov",
+ "snippet": "Dato importante: Con la nueva disposición de ley, si un peatón
+ muere atropellado, el conductor responsable se expone a 8 años de cárcel sin
+ derecho a probatoria si se va a la fuga y abandona la escena.", "dateLastCrawled":
+ "2018-11-13T21:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Trabajadores de Cuidado de Niños : Occupational Outlook ...", "url":
+ "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare-workers.htm",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare...",
+ "snippet": "Se proyecta que el empleo de los trabajadores de cuidado de niños
+ aumentará un 14 por ciento entre el 2012 y el 2022, casi tan rápido como
+ el promedio de todas las ocupaciones. Los padres continuarán necesitando quien
+ cuide de sus hijos mientras ellos trabajan.", "dateLastCrawled": "2018-11-14T13:15:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Preguntas
+ y Respuestas sobre temas relacionados a ...", "url": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas-y-respuestas-sobre-temas-relacionados-residencia-permanente-green-card",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas...",
+ "snippet": "Nota importante: Las siguientes respuestas en el artículo sobre
+ ciudadanía en el Consejero de Inmigración de Univision.com no deben ser interpretadas
+ como un derecho o beneficio sustantivo o procesal de forma legal por cualquier
+ entidad en contra de los Estados Unidos, sus agencias, representantes o cualquier
+ otra persona.", "dateLastCrawled": "2018-11-15T00:38:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Robo de Identidad
+ | Información para consumidores", "url": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "snippet": "Revise cada uno de sus tres informes de crédito por lo menos
+ una vez al año. Para solicitar sus informes gratuitos, visite annualcreditreport.com.
+ Para más recomendaciones preventivas — y para acceder a recursos que puede
+ compartir con otras personas — visite ftc.gov\/robodeidentidad.", "dateLastCrawled":
+ "2018-11-13T04:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Cambios del Seguro Social para el 2015 - ssa.gov", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola-datos.html",
+ "urlPingSuffix": "DevEx,5178.1", "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola...",
+ "snippet": "Bajo estos límites, se retendrá un dólar de los beneficios por
+ cada $3 de salarios que sobrepasen el límite anteriormente mencionado. Una
+ vez que la persona cumple su plena edad de jubilación, los límites de salarios
+ cesan de aplicarse.", "dateLastCrawled": "2018-11-15T23:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Ceremonias
+ de Naturalización | USCIS", "url": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "snippet": "Un pasaporte estadounidense sirve como prueba oficial de ciudadanía
+ adicional a su Certificado de Naturalización. Recibirá una solicitud para
+ un pasaporte estadounidense en el Paquete de Bienvenida de Ciudadano Estadounidense
+ que le entregará en su ceremonia de naturalización.", "dateLastCrawled": "2018-11-15T10:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "¿Cuánto
+ tiempo tarda el trámite de residencia? | USCIS", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos-para-la-tarjeta-verde\/cuanto-tiempo-tarda-el-tramite-de-residencia",
+ "urlPingSuffix": "DevEx,5209.1", "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos...",
+ "snippet": "En la mayoría de los casos, la petición es presentada por un
+ familiar (Formulario I-130, Petición de Familiar Extranjero) o un empleador
+ (Formulario I-140, Petición de Trabajador Extranjero). En algunos casos, usted
+ puede ser elegible para presentar la solicitud a nombre propio.", "dateLastCrawled":
+ "2018-11-16T12:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Información sobre la matrícula y el título de propiedad de ...",
+ "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "urlPingSuffix": "DevEx,5222.1", "displayUrl": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "snippet": "Dicha ley permite a un usuario el obtener un reemplazo o recompra
+ del vehículo cuando el fabricante no es capaz de reparar el vehículo de acuerdo
+ a la garantía expresa después de un número razonable de intentos, mientras
+ el vehículo se encuentra bajo la garantía original del fabricante.", "dateLastCrawled":
+ "2018-11-16T14:08:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Administradores de Servicios Médicos y de Salud ...", "url": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services-managers.htm",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services...",
+ "snippet": "Los administradores de servicios médicos y de salud, también
+ llamados ejecutivos o administradores de atención de la salud, planifican,
+ dirigen y coordinan servicios médicos y de salud. Pueden dirigir un centro
+ de salud completo, especializarse en un área clínica o un departamento
+ específico, o administrar un consultorio para un grupo de médicos.", "dateLastCrawled":
+ "2018-11-12T15:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Cómo solicitar una Visa | Embajada de EE.UU. en Colombia", "url":
+ "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to-apply-es\/",
+ "urlPingSuffix": "DevEx,5251.1", "displayUrl": "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to...",
+ "snippet": "IMPORTANTE: La Embajada de EE. UU. en Bogotá tiene una política
+ específica para aceptar solicitudes de visa de Comerciante (E1) e Inversionista
+ por Tratado (E2) de solicitantes que no demuestren presencia legal y física
+ en Colombia por un mínimo de un año previo a la solicitud de visa E. Tenga
+ en cuenta que la disponibilidad ...", "dateLastCrawled": "2018-11-13T08:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Suicidio
+ y comportamiento suicida: MedlinePlus ...", "url": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "urlPingSuffix": "DevEx,5267.1", "displayUrl": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "snippet": "Es el acto de quitarse deliberadamente la propia vida. El comportamiento
+ suicida es cualquier acción que pudiera llevar a una persona a morir, como
+ tomar una sobredosis de medicamentos o estrellar un automóvil a propósito.",
+ "dateLastCrawled": "2018-11-13T14:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Información para la prensa | Oficina de Prensa ...", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados\/",
+ "urlPingSuffix": "DevEx,5280.1", "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados",
+ "snippet": "Noticias de última hora acerca del fallo de la Corte Suprema
+ referente a la Ley en Defensa del Matrimonio. 31 de mayo del 2013. ... La
+ Administración del Seguro Social propone un proyecto de ley para poner final
+ a las cesantías de los empleados de la oficina estatal de incapacidad a quienes
+ se les paga con fondos federales.", "dateLastCrawled": "2018-11-15T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Embajada
+ de los Estados Unidos en la República Dominicana", "url": "https:\/\/do.usembassy.gov\/es\/",
+ "urlPingSuffix": "DevEx,5293.1", "about": [{"name": "U.S. Embassy Panama"}],
+ "displayUrl": "https:\/\/do.usembassy.gov\/es", "snippet": "Noticias & Eventos.
+ Mensajes de seguridad y emergencia. Restricciones de viajes hacia Haití para
+ el personal del gobierno de EE.UU. ... Información detallada para visitantes
+ sobre cómo solicitar un visado para Estados Unidos. Aprende más. Estoy interesado
+ en servicios a los ciudadanos de E.U.", "dateLastCrawled": "2018-11-15T21:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Noticias
+ - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "urlPingSuffix": "DevEx,5306.1", "displayUrl": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "snippet": "Noticias de programas y estudios patrocinados por el NCI. Noticias.
+ Noticias destacadas Para cáncer de pulmón de células pequeñas, un fármaco
+ de inmunoterapia mejora la supervivencia. Primer estudio en décadas en mostrar
+ que pacientes con este cáncer vivieron más.", "dateLastCrawled": "2018-11-15T09:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "State
+ of New Jersey", "url": "http:\/\/nj.gov\/oag\/news-esp.htm", "urlPingSuffix":
+ "DevEx,5319.1", "displayUrl": "nj.gov\/oag\/news-esp.htm", "snippet": "1\/12
+ - Un Hombre del Condado de Gloucester en Posesión de 76,000 Videos e Imágenes
+ Pornográficas de Menores Condenado a Siete Años de Prision - El acusado fue
+ uno de los 40 hombres arrestados en el operativo “Operación Statewide”",
+ "dateLastCrawled": "2018-11-13T03:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5332.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:48 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=first%20item%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:00 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 277A381CB5BB4F4BBE2C971599471771
+ Bingapis-Sessionid:
+ - 1B011704EE4F44ABA9E4A36C0DBE1F0E
+ X-Msedge-Clientid:
+ - 3DBB34A7CF9463CD39A9380BCED8624F
+ X-Msapi-Userstate:
+ - c8e7
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=223,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 277A381CB5BB4F4BBE2C971599471771 Ref B: BY3EDGE0408 Ref C: 2018-11-19T22:43:00Z'
+ Apim-Request-Id:
+ - 7d5ac6bc-b595-4acc-b3af-5cc7c29c701d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:00 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "first
+ item (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=first+item+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 427000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "1.WN GO 2. MASK OR RESPIRATOR 3. GOGGLES OR FACE SHIELD", "url":
+ "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.cdc.gov\/hai\/pdfs\/ppe\/PPE-Sequence.pdf",
+ "snippet": "peel off second glove over first glove • Discard gloves in a
+ waste container. 2. GOGGLES OR FACE SHIELD ... • If the item is reusable,
+ place in designated receptacle for reprocessing. Otherwise, discard in a waste
+ container. 3.WN GO • Gown front and sleeves are contaminated!", "dateLastCrawled":
+ "2018-11-14T17:37:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1", "name":
+ "First U.S. Patent Issued Today in 1790 | USPTO", "url": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued-today-1790",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.uspto.gov\/about-us\/news-updates\/first-us-patent-issued...",
+ "snippet": "On July 31, 1790 Samuel Hopkins was issued the first patent
+ for a process of making potash, an ingredient used in fertilizer. The patent
+ was signed by President George Washington. Hopkins was born in Vermont, but
+ was living in Philadelphia, Pa. when the patent was granted.", "dateLastCrawled":
+ "2018-11-10T14:28:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Boston.gov", "url": "https:\/\/www.boston.gov\/", "about": [{"name": "Eliot
+ Burying Ground"}, {"name": "Boston City Hall Plaza"}, {"name": "Boston"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.boston.gov", "snippet":
+ "City releases first-ever inventory of Boston''s income-restricted housing
+ . Neighborhood Development. More City news. BOS:311 service requests BOS:311.
+ ... (wait until three hours after snowfall ends) Request a bulk item pickup.
+ Request to salt or plow a street. Report a pothole. Report a parking violation.
+ Report a missing or damaged street sign.", "dateLastCrawled": "2018-11-15T19:33:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "First 5 California - State Site", "url": "http:\/\/www.ccfc.ca.gov\/",
+ "isFamilyFriendly": true, "displayUrl": "www.ccfc.ca.gov", "snippet": "First
+ 5 California was created by voters under Proposition 10 to recognize that
+ children''s health and education are a top priority, especially in the early
+ years of development. Research shows that critical brain growth and other
+ developmental milestones take place during the earliest years of a child''s
+ life.", "dateLastCrawled": "2018-11-15T22:25:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "First Course of Treatment", "url": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/cancer\/npcr\/pdf\/abstracting\/treatment_codes.pdf",
+ "snippet": "Record the date of this surgical procedure in data item Date
+ of First Course of Treatment (NAACCR Item #1270) and\/or Date of First
+ Surgical Procedure (NAACCR Item #1200) as appropriate. • Codes 0–7 are hierarchical.
+ If only one procedure can be recorded, code the procedure that is numerically",
+ "dateLastCrawled": "2018-11-15T18:14:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "First Grade Mathematics Item Specifications", "url": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs-0717.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/dese.mo.gov\/sites\/default\/files\/asmt-math-g1-item-specs...",
+ "snippet": "One of the documents developed is the item specification document,
+ which includes all Missouri grade level\/course expectations arranged by domains\/strands.",
+ "dateLastCrawled": "2018-11-11T01:30:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "First Aid List - Occupational Safety and Health Administration",
+ "url": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.osha.gov\/recordkeeping\/firstaid_list.pdf",
+ "snippet": "First Aid List 1904.7 (b)(5)(ii) What is “first aid”? For
+ the purposes of Part 1904, \"first aid\" means the following: (A) Using
+ a nonprescription medication at nonprescription strength (for medications",
+ "dateLastCrawled": "2018-11-16T09:59:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "List 1 HTSUS Product Description - ustr.gov", "url": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations\/List%201.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/ustr.gov\/sites\/default\/files\/enforcement\/301Investigations...",
+ "snippet": "List 1 . HTSUS Subheading Product Description 2845.90.00 Isotopes
+ not in heading 2844 and their compounds other than heavy water 4011.30.00
+ New pneumatic tires, of rubber, of a kind used on aircraft", "dateLastCrawled":
+ "2018-11-11T16:48:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "hours per response . ..2395.73 FORM 10-K", "url": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "about": [{"name": "Form 10-K"}, {"name": "Form 10-K"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.sec.gov\/about\/forms\/form10-k.pdf",
+ "snippet": "(1)The combined report contains full and complete answers to all
+ items required by Form 10-K. When responses to a certain item of required
+ disclosure are separated within the combined report, an appropriate cross-reference
+ should", "dateLastCrawled": "2018-11-14T20:26:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "A Brief Overview of Depreciation | Internal Revenue Service",
+ "url": "https:\/\/www.irs.gov\/businesses\/small-businesses-self-employed\/a-brief-overview-of-depreciation",
+ "about": [{"name": "Depreciation"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.irs.gov\/...\/a-brief-overview-of-depreciation", "snippet":
+ "Depreciation is an income tax deduction that allows a taxpayer to recover
+ the cost or other basis of certain property. It is an annual allowance for
+ the wear and tear, deterioration, or obsolescence of the property.", "dateLastCrawled":
+ "2018-11-07T11:30:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Register to Vote and Check or Change Registration | USAGov", "url": "https:\/\/www.usa.gov\/register-to-vote",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/register-to-vote",
+ "snippet": "But first, you need to register before your state’s deadline.
+ Check with your local election office. You can register there or you may be
+ able to register online, at the Department of Motor Vehicles, or using the
+ National Mail Voter Registration Form.", "dateLastCrawled": "2018-10-21T11:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "USPS RETURNS CUSTOMER GUIDE", "url": "https:\/\/ribbs.usps.gov\/shipproductsservices\/documents\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/ribbs.usps.gov\/...\/tech_guides\/ReturnsCustomerGuide.pdf",
+ "snippet": "USPS RETURNS CUSTOMER GUIDE ... hassle-free customer returns
+ policy helps merchants win the first order and a positive returns ... merchandise,
+ test kits, samples and other items. Merchants are charged only if and when
+ the labels are used. Exhibit 2: MRS label example", "dateLastCrawled": "2018-11-15T17:22:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Home Inventory Checklist", "url": "http:\/\/www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "isFamilyFriendly": true, "displayUrl": "www.dfs.ny.gov\/consumer\/homeown\/home_invchklst.pdf",
+ "snippet": "HOME INVENTORY CHECKLIST ... Items such as sofas, tables,
+ beds, TVs, refrigerators, and lawn mowers should be included in such a schedule.
+ As you compile your inventory, supplement it with receipts indicating the
+ date of purchase and purchase price and photographs of", "dateLastCrawled":
+ "2018-11-15T05:36:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "What Can I Bring? | Transportation Security Administration", "url": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring\/all",
+ "about": [{"name": "Baggage allowance"}, {"name": "Transportation Security
+ Administration"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.tsa.gov\/travel\/security-screening\/whatcanibring",
+ "snippet": "You may transport this item in carry-on or checked bags. For
+ items you wish to carry on, you should check with the airline to ensure
+ that the item will fit in the overhead bin or underneath the seat of the
+ airplane.", "dateLastCrawled": "2018-11-15T09:07:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Best Practices Guide: Fundamentals of a Workplace First ...", "url":
+ "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.osha.gov\/Publications\/OSHA3317first-aid.pdf",
+ "snippet": "First aid is emergency care provided for injury or sudden illness
+ before emergency medical treatment is available. The first-aid provider
+ in the workplace is someone who is trained in the delivery of initial medical
+ emergency procedures, using a limited amount of", "dateLastCrawled": "2018-11-13T20:32:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Pennsylvania System of School Assessment (PSSA)", "url": "http:\/\/www.education.pa.gov\/K-12\/Assessment%20and%20Accountability\/PSSA\/Pages\/default.aspx",
+ "about": [{"name": "Pennsylvania System of School Assessment"}], "isFamilyFriendly":
+ true, "displayUrl": "www.education.pa.gov\/K-12\/Assessment and Accountability\/PSSA\/Pages...",
+ "snippet": "The annual Pennsylvania System School Assessment is a standards-based,
+ criterion-referenced assessment which provides students, parents, educators
+ and citizens with an understanding of student and school performance related
+ to the attainment of proficiency of the academic standards.", "dateLastCrawled":
+ "2018-11-07T09:11:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "ISTEP+ Grades 3-8, 10 | IDOE", "url": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8-10",
+ "about": [{"name": "Indiana Statewide Testing for Educational Progress-Plus"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.doe.in.gov\/assessment\/istep-grades-3-8",
+ "snippet": "The Item Samplers on this website provide information about
+ ISTEP+ for students, parents, educators, and others. The items in each sampler
+ are examples of the types of items found on ISTEP+. These examples can serve
+ as models when teachers are constructing items for classroom assessment.",
+ "dateLastCrawled": "2018-11-16T08:22:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "U.S. Senate: Constitution of the United States", "url": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.senate.gov\/civics\/constitution_item\/constitution.htm",
+ "snippet": "The Seats of the Senators of the first Class shall be vacated
+ at the Expiration of the second Year, of the second Class at the Expiration
+ of the fourth Year, and of the third Class at the Expiration of the sixth
+ Year, so that one third may be chosen every second Year; and if Vacancies
+ happen by Resignation, or otherwise, during the Recess of ...", "dateLastCrawled":
+ "2018-11-05T00:39:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18", "name":
+ "Final Rule: Additional Form 8-K Disclosure Requirements ...", "url": "https:\/\/www.sec.gov\/rules\/final\/33-8400.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sec.gov\/rules\/final\/33-8400.htm",
+ "snippet": "ADDITIONAL FORM 8-K DISCLOSURE REQUIREMENTS AND ACCELERATION
+ OF FILING DATE. AGENCY: Securities and ... We have added four instructions
+ to this item. Similar to Item 2.03, the first instruction clarifies
+ that disclosure is required if a triggering event occurs in respect of the
+ company''s obligation under an off-balance sheet arrangement and ...", "dateLastCrawled":
+ "2018-11-12T18:33:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "Build A Kit | Ready.gov", "url": "https:\/\/www.ready.gov\/build-a-kit",
+ "about": [{"name": "Emergency shelter"}, {"name": "Ready"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.ready.gov\/build-a-kit", "snippet":
+ "Make sure your emergency kit is stocked with the items on the checklist
+ below. Most of the items are inexpensive and easy to find, and any one of
+ them could save your life. Headed to the store? Download a printable version
+ to take with you.", "dateLastCrawled": "2018-11-13T23:37:00.0000000Z", "language":
+ "en", "isNavigational": false}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:01 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=noticia%20uno%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:01 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 5DFF359887F044A39D7416A3AA12BB12
+ Bingapis-Sessionid:
+ - 8812E765A5CA4FB4B58860A6DA645048
+ X-Msedge-Clientid:
+ - 1DFBB9E986F6660E19B8B54587BA67F9
+ X-Msapi-Userstate:
+ - 6c73
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=186,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 5DFF359887F044A39D7416A3AA12BB12 Ref B: BY3EDGE0107 Ref C: 2018-11-19T22:43:02Z'
+ Apim-Request-Id:
+ - f025ad29-16c8-48cf-ad41-3c4438e05067
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:01 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "noticia
+ uno (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=noticia+uno+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 554000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Preguntas y Respuestas: Se extiende TPS para hondureños ...", "url":
+ "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se-extiende-tps-para-hondurenos-por-18-meses-mas",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.uscis.gov\/es\/archivo\/preguntas-y-respuestas-se...",
+ "snippet": "Para solicitar un cambio de fecha de su cita en un ASC, envíe
+ la copia original de su cita con el cambio de fecha a la dirección de ASC
+ que figura en el aviso. Asegúrese de hacer una copia de su aviso original
+ y manténgalo en sus archivos.", "dateLastCrawled": "2018-11-16T11:49:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Información General sobre el ITIN | Internal Revenue Service", "url":
+ "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general-itin-information",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.irs.gov\/es\/individuals\/international-taxpayers\/general...",
+ "snippet": "Un extranjero que no es residente y no califica para un SSN,
+ quien tiene un requisito de presentar una declaración federal de impuestos
+ sólo para reclamar un reembolso bajo las provisiones de algún acuerdo con
+ los Estados Unidos, necesita un ITIN.", "dateLastCrawled": "2018-11-07T05:31:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Tarjeta Verde para Familiares Inmediatos de un Ciudadano ...",
+ "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/familiar-inmediato",
+ "snippet": "Si usted es un familiar inmediato de un ciudadano estadounidense,
+ puede convertirse en residente permanente legal (obtener una Tarjeta Verde)
+ a base de su relación familiar, si cumple con ciertos requisitos de elegibilidad.",
+ "dateLastCrawled": "2018-11-13T21:33:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Nuevos Inmigrantes Ahora pueden Crear una Cuenta de USCIS ...", "url":
+ "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora-pueden-crear-una-cuenta-de-uscis-en-linea-al-pagar-la-tarifa-de-inmigrante-de-uscis",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/alertas\/nuevos-inmigrantes-ahora...",
+ "snippet": "Un mensaje a los nuevos inmigrantes: Ahora usted tiene la opción
+ de crear una cuenta de USCIS en línea al momento de pagar la Tarifa de Inmigrante
+ de USCIS. Una cuenta en línea le permitirá dar seguimiento fácilmente al estatus
+ de su Tarjeta Verde, recibir notificaciones electrónicas y ...", "dateLastCrawled":
+ "2018-11-07T03:29:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "| Policía de Puerto Rico", "url": "https:\/\/policia.pr.gov\/", "about":
+ [{"name": "Puerto Rico Police"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/policia.pr.gov", "snippet": "Dato importante: Con la nueva disposición
+ de ley, si un peatón muere atropellado, el conductor responsable se expone
+ a 8 años de cárcel sin derecho a probatoria si se va a la fuga y abandona
+ la escena.", "dateLastCrawled": "2018-11-13T21:52:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Trabajadores de Cuidado de Niños : Occupational Outlook ...", "url":
+ "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare-workers.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/personal-care-and-service\/childcare...",
+ "snippet": "Se proyecta que el empleo de los trabajadores de cuidado de niños
+ aumentará un 14 por ciento entre el 2012 y el 2022, casi tan rápido como
+ el promedio de todas las ocupaciones. Los padres continuarán necesitando quien
+ cuide de sus hijos mientras ellos trabajan.", "dateLastCrawled": "2018-11-14T13:15:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Preguntas y Respuestas sobre temas relacionados a ...", "url": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas-y-respuestas-sobre-temas-relacionados-residencia-permanente-green-card",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.uscis.gov\/es\/noticias\/preguntas-y-respuestas\/preguntas...",
+ "snippet": "Nota importante: Las siguientes respuestas en el artículo sobre
+ ciudadanía en el Consejero de Inmigración de Univision.com no deben ser interpretadas
+ como un derecho o beneficio sustantivo o procesal de forma legal por cualquier
+ entidad en contra de los Estados Unidos, sus agencias, representantes o cualquier
+ otra persona.", "dateLastCrawled": "2018-11-15T00:38:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Robo de Identidad | Información para consumidores", "url": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.consumidor.ftc.gov\/articulos\/s0005-robo-de-identidad",
+ "snippet": "Revise cada uno de sus tres informes de crédito por lo menos
+ una vez al año. Para solicitar sus informes gratuitos, visite annualcreditreport.com.
+ Para más recomendaciones preventivas — y para acceder a recursos que puede
+ compartir con otras personas — visite ftc.gov\/robodeidentidad.", "dateLastCrawled":
+ "2018-11-13T04:43:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "Cambios del Seguro Social para el 2015 - ssa.gov", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola-datos.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/hojadedatos\/2015cola...",
+ "snippet": "Bajo estos límites, se retendrá un dólar de los beneficios por
+ cada $3 de salarios que sobrepasen el límite anteriormente mencionado. Una
+ vez que la persona cumple su plena edad de jubilación, los límites de salarios
+ cesan de aplicarse.", "dateLastCrawled": "2018-11-15T23:03:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Ceremonias de Naturalización | USCIS", "url": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.uscis.gov\/es\/ciudadania\/ceremonias-de-naturalizacion",
+ "snippet": "Un pasaporte estadounidense sirve como prueba oficial de ciudadanía
+ adicional a su Certificado de Naturalización. Recibirá una solicitud para
+ un pasaporte estadounidense en el Paquete de Bienvenida de Ciudadano Estadounidense
+ que le entregará en su ceremonia de naturalización.", "dateLastCrawled": "2018-11-15T10:26:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "¿Cuánto tiempo tarda el trámite de residencia? | USCIS", "url": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos-para-la-tarjeta-verde\/cuanto-tiempo-tarda-el-tramite-de-residencia",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.uscis.gov\/es\/tarjeta-verde\/tramite-y-procedimientos...",
+ "snippet": "En la mayoría de los casos, la petición es presentada por un
+ familiar (Formulario I-130, Petición de Familiar Extranjero) o un empleador
+ (Formulario I-140, Petición de Trabajador Extranjero). En algunos casos, usted
+ puede ser elegible para presentar la solicitud a nombre propio.", "dateLastCrawled":
+ "2018-11-16T12:44:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Información sobre la matrícula y el título de propiedad de ...", "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dmv.ca.gov\/portal\/dmv\/detail\/vr\/vr_info?lang=es",
+ "snippet": "Dicha ley permite a un usuario el obtener un reemplazo o recompra
+ del vehículo cuando el fabricante no es capaz de reparar el vehículo de acuerdo
+ a la garantía expresa después de un número razonable de intentos, mientras
+ el vehículo se encuentra bajo la garantía original del fabricante.", "dateLastCrawled":
+ "2018-11-16T14:08:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Administradores de Servicios Médicos y de Salud ...", "url": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services-managers.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bls.gov\/es\/ooh\/management\/medical-and-health-services...",
+ "snippet": "Los administradores de servicios médicos y de salud, también
+ llamados ejecutivos o administradores de atención de la salud, planifican,
+ dirigen y coordinan servicios médicos y de salud. Pueden dirigir un centro
+ de salud completo, especializarse en un área clínica o un departamento
+ específico, o administrar un consultorio para un grupo de médicos.", "dateLastCrawled":
+ "2018-11-12T15:15:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "Cómo solicitar una Visa | Embajada de EE.UU. en Colombia", "url": "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to-apply-es\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/co.usembassy.gov\/es\/visas-es\/nonimmigrant-visas-es\/how-to...",
+ "snippet": "IMPORTANTE: La Embajada de EE. UU. en Bogotá tiene una política
+ específica para aceptar solicitudes de visa de Comerciante (E1) e Inversionista
+ por Tratado (E2) de solicitantes que no demuestren presencia legal y física
+ en Colombia por un mínimo de un año previo a la solicitud de visa E. Tenga
+ en cuenta que la disponibilidad ...", "dateLastCrawled": "2018-11-13T08:16:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Suicidio y comportamiento suicida: MedlinePlus ...", "url": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/medlineplus.gov\/spanish\/ency\/article\/001554.htm",
+ "snippet": "Es el acto de quitarse deliberadamente la propia vida. El comportamiento
+ suicida es cualquier acción que pudiera llevar a una persona a morir, como
+ tomar una sobredosis de medicamentos o estrellar un automóvil a propósito.",
+ "dateLastCrawled": "2018-11-13T14:22:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Información para la prensa | Oficina de Prensa ...", "url": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ssa.gov\/espanol\/noticias\/prensa\/comunicados",
+ "snippet": "Noticias de última hora acerca del fallo de la Corte Suprema
+ referente a la Ley en Defensa del Matrimonio. 31 de mayo del 2013. ... La
+ Administración del Seguro Social propone un proyecto de ley para poner final
+ a las cesantías de los empleados de la oficina estatal de incapacidad a quienes
+ se les paga con fondos federales.", "dateLastCrawled": "2018-11-15T18:35:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Embajada de los Estados Unidos en la República Dominicana", "url":
+ "https:\/\/do.usembassy.gov\/es\/", "about": [{"name": "U.S. Embassy Panama"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/do.usembassy.gov\/es",
+ "snippet": "Noticias & Eventos. Mensajes de seguridad y emergencia. Restricciones
+ de viajes hacia Haití para el personal del gobierno de EE.UU. ... Información
+ detallada para visitantes sobre cómo solicitar un visado para Estados Unidos.
+ Aprende más. Estoy interesado en servicios a los ciudadanos de E.U.", "dateLastCrawled":
+ "2018-11-15T21:03:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Noticias - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cancer.gov\/espanol\/noticias",
+ "snippet": "Noticias de programas y estudios patrocinados por el NCI. Noticias.
+ Noticias destacadas Para cáncer de pulmón de células pequeñas, un fármaco
+ de inmunoterapia mejora la supervivencia. Primer estudio en décadas en mostrar
+ que pacientes con este cáncer vivieron más.", "dateLastCrawled": "2018-11-15T09:34:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "State of New Jersey", "url": "http:\/\/nj.gov\/oag\/news-esp.htm",
+ "isFamilyFriendly": true, "displayUrl": "nj.gov\/oag\/news-esp.htm", "snippet":
+ "1\/12 - Un Hombre del Condado de Gloucester en Posesión de 76,000 Videos
+ e Imágenes Pornográficas de Menores Condenado a Siete Años de Prision - El
+ acusado fue uno de los 40 hombres arrestados en el operativo “Operación
+ Statewide”", "dateLastCrawled": "2018-11-13T03:05:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "about": [{"name": "GobiernoUSA.gov"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov", "snippet": "El dominio .gov
+ significa que es oficial. Los sitios del Gobierno federal frecuentemente terminan
+ en dominios .gov o .mil. Antes de compartir información confidencial, asegúrese
+ de que está en un sitio del Gobierno federal.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z",
+ "language": "es", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:02 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_sitelimit.yml b/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_sitelimit.yml
index f97a52c12e..93898df21b 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_sitelimit.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Searching_with_sitelimit.yml
@@ -848,4 +848,1814 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:23:03 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gov%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2077'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:43 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=00BDA0348A1269B51C60AC988BC56860; path=/; expires=Sat, 14-Dec-2019 22:41:43
+ GMT; domain=bingapis.com
+ - MUIDB=00BDA0348A1269B51C60AC988BC56860; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:43 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:43 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=DFC7D47B494E4C0AB3F13CC5D6ACB9BF&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:43 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:43
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3378EA19AF0069E60111E6B5AED7683E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:43 GMT; domain=bingapis.com
+ - _SS=SID=3378EA19AF0069E60111E6B5AED7683E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - DE8A82BFCDF84DC6B851FE0B87016D24
+ X-Msedge-Clientid:
+ - 00BDA0348A1269B51C60AC988BC56860
+ X-Msapi-Userstate:
+ - d859
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: DE8A82BFCDF84DC6B851FE0B87016D24 Ref B: CO1EDGE0410 Ref C: 2018-11-19T22:41:43Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:42 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=25D1F8798C9F400DABB002E0DA127219&CID=00BDA0348A1269B51C60AC988BC56860&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=25D1F8798C9F400DABB002E0DA127219&CID=00BDA0348A1269B51C60AC988BC56860&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5444.1", "totalEstimatedMatches": 134000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "USA - Official Guide to Government Information and Services", "url": "https:\/\/www.usa.gov\/",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "United States"}], "displayUrl":
+ "https:\/\/www.usa.gov", "snippet": "The .gov means it''s official. Federal
+ government websites often end in .gov or .mil. Before sharing sensitive
+ information, make sure you''re on a federal government site.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "urlPingSuffix": "DevEx,5075.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The
+ .gov means it''s official. Federal government websites often end in .gov
+ or .mil. Before sharing sensitive information, make sure you''re on a federal
+ government site. This site is secure. The https:\/\/ ensures that you are
+ connecting to the official website and that any information you provide is
+ ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "urlPingSuffix": "DevEx,5088.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Unclaimed Money
+ from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "U.S. Government
+ Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Getting or Renewing
+ a U.S. Passport | USAGov", "url": "https:\/\/www.usa.gov\/passport", "urlPingSuffix":
+ "DevEx,5148.1", "displayUrl": "https:\/\/www.usa.gov\/passport", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-13T22:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5164.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Government
+ Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "urlPingSuffix": "DevEx,5178.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Find a
+ Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal
+ jobs and employment information. There, you can: You must create a USAJOBS
+ profile to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Contact Us
+ | USAGov", "url": "https:\/\/www.usa.gov\/contact", "urlPingSuffix": "DevEx,5208.1",
+ "displayUrl": "https:\/\/www.usa.gov\/contact", "snippet": "USA.gov’s
+ information specialists can help you find information on federal agencies,
+ programs, benefits, services, and more. Chat with USA.gov USA.gov’s live
+ chat service can help you find information on federal agencies, programs,
+ benefits, services, and more.", "dateLastCrawled": "2018-11-13T05:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Branches
+ of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5224.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "I | Government
+ Forms | USAGov", "url": "https:\/\/www.usa.gov\/forms\/i", "urlPingSuffix":
+ "DevEx,5240.1", "displayUrl": "https:\/\/www.usa.gov\/forms\/i", "snippet":
+ "The .gov means it''s official. Federal government websites often end
+ in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-15T21:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "About
+ USA.gov | USAGov", "url": "https:\/\/www.usa.gov\/about", "urlPingSuffix":
+ "DevEx,5254.1", "about": [{"name": "USA.gov"}], "displayUrl": "https:\/\/www.usa.gov\/about",
+ "snippet": "About USA.gov. Our mission is to create and organize timely,
+ needed government information and services and make them accessible anytime,
+ anywhere, via your channel of choice. About Us. Learn more about the history
+ and mission of USA.gov. Contact USA.gov.", "dateLastCrawled": "2018-11-13T17:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Travel
+ and Immigration | USAGov", "url": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "urlPingSuffix": "DevEx,5268.1", "displayUrl": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T04:38:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Money and
+ Credit | USAGov", "url": "https:\/\/www.usa.gov\/money", "urlPingSuffix":
+ "DevEx,5282.1", "displayUrl": "https:\/\/www.usa.gov\/money", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-16T08:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Features
+ | USAGov", "url": "https:\/\/www.usa.gov\/features", "urlPingSuffix": "DevEx,5298.1",
+ "displayUrl": "https:\/\/www.usa.gov\/features", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-15T20:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Government Grants and Loans | USAGov", "url": "https:\/\/www.usa.gov\/grants",
+ "urlPingSuffix": "DevEx,5314.1", "displayUrl": "https:\/\/www.usa.gov\/grants",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-12T14:24:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5328.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-14T16:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Small Business | USAGov", "url": "https:\/\/www.usa.gov\/business",
+ "urlPingSuffix": "DevEx,5342.1", "displayUrl": "https:\/\/www.usa.gov\/business",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-11T18:13:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:43 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gov%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3280'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:44 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1179D345AE2566EA1A27DFE9AFF26755; path=/; expires=Sat, 14-Dec-2019 22:41:44
+ GMT; domain=bingapis.com
+ - MUIDB=1179D345AE2566EA1A27DFE9AFF26755; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:44 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:44 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=0DFFE6A8115A4A23B7AF8D3558921F81&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:44 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:44
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=32853AE21C5969070295364E1D8E688E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:44 GMT; domain=bingapis.com
+ - _SS=SID=32853AE21C5969070295364E1D8E688E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 57BF25C726094B00A015CC73065E3815
+ X-Msedge-Clientid:
+ - 1179D345AE2566EA1A27DFE9AFF26755
+ X-Msapi-Userstate:
+ - '2600'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 57BF25C726094B00A015CC73065E3815 Ref B: CO1EDGE0422 Ref C: 2018-11-19T22:41:44Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:44 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=9405107BFD7D48809C36C9561D7C3AD2&CID=1179D345AE2566EA1A27DFE9AFF26755&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=9405107BFD7D48809C36C9561D7C3AD2&CID=1179D345AE2566EA1A27DFE9AFF26755&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5426.1", "totalEstimatedMatches": 52400000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "USA - Official Guide to Government Information and Services", "url": "https:\/\/www.usa.gov\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "United States"}], "displayUrl":
+ "https:\/\/www.usa.gov", "snippet": "The .gov means it''s official. Federal
+ government websites often end in .gov or .mil. Before sharing sensitive
+ information, make sure you''re on a federal government site.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Internal Revenue Service | An official website of the ...", "url":
+ "https:\/\/www.irs.gov\/", "urlPingSuffix": "DevEx,5071.1", "about": [{"name":
+ "Internal Revenue Service"}], "displayUrl": "https:\/\/www.irs.gov", "snippet":
+ "The Internal Revenue Service is the nation''s tax collection agency and
+ administers the Internal Revenue Code enacted by Congress.", "dateLastCrawled":
+ "2018-11-15T23:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "The United States Social Security Administration", "url": "http:\/\/www.ssa.gov\/",
+ "urlPingSuffix": "DevEx,5085.1", "about": [{"name": "Social Security Administration"}],
+ "displayUrl": "www.ssa.gov", "snippet": "Official website of the U.S. Social
+ Security Administration. When I made the decision to enlist in the Army,
+ I knew it was a lifetime commitment, whether I was in uniform or not.", "dateLastCrawled":
+ "2018-11-16T10:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "urlPingSuffix": "DevEx,5101.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The
+ .gov means it''s official. Federal government websites often end in .gov
+ or .mil. Before sharing sensitive information, make sure you''re on a federal
+ government site. This site is secure. The https:\/\/ ensures that you are
+ connecting to the official website and that any information you provide is
+ ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Medicare.gov: the official U.S. government site for Medicare",
+ "url": "https:\/\/www.medicare.gov\/", "urlPingSuffix": "DevEx,5115.1", "about":
+ [{"name": "Medicare"}], "displayUrl": "https:\/\/www.medicare.gov", "snippet":
+ "If you share our content on Facebook, Twitter, or other social media accounts,
+ we may track what Medicare.gov content you share. This helps us improve
+ our social media outreach. Selecting OFF will block this tracking.", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "IN.gov | The Official Website of the State of Indiana", "url":
+ "https:\/\/www.in.gov\/", "urlPingSuffix": "DevEx,5129.1", "about": [{"name":
+ "Indiana"}, {"name": "Tennessee State Capitol"}], "displayUrl": "https:\/\/www.in.gov",
+ "snippet": "IN.gov is the official website of the State of Indiana and
+ your place to find information, services, news and events related to Indiana
+ government. AMBER ALERT But when you''re done reading it, click the close
+ button in the corner to dismiss this alert.", "dateLastCrawled": "2018-11-13T08:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "HealthCare.gov
+ - Get 2019 health coverage. Health ...", "url": "https:\/\/www.healthcare.gov\/",
+ "urlPingSuffix": "DevEx,5142.1", "about": [{"name": "HealthCare.gov"}], "displayUrl":
+ "https:\/\/www.healthcare.gov", "snippet": "Official site of Affordable
+ Care Act. Enroll now for 2019 coverage. See health coverage choices, ways
+ to save today, how law affects you.", "dateLastCrawled": "2018-11-13T18:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "USAJOBS
+ - The Federal Government''s Official Jobs Site", "url": "https:\/\/www.usajobs.gov\/",
+ "urlPingSuffix": "DevEx,5155.1", "about": [{"name": "USAJOBS"}, {"name": "USAJOBS"}],
+ "displayUrl": "https:\/\/www.usajobs.gov", "snippet": "USAJOBS is the
+ Federal Government''s official one-stop source for Federal jobs and employment
+ information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "U.S. Government
+ Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "National Weather
+ Service", "url": "https:\/\/www.weather.gov\/", "urlPingSuffix": "DevEx,5183.1",
+ "about": [{"name": "National Weather Service"}, {"name": "National Weather
+ Service"}], "displayUrl": "https:\/\/www.weather.gov", "snippet": "NOAA
+ National Weather Service National Weather Service. Fire Weather Threat Waning
+ in Southern California; Early Season Winter Storm Impacting the Ohio\/Mississippi
+ Valleys and the East Coast States", "dateLastCrawled": "2018-11-16T09:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Welcome
+ to the California State Web Portal", "url": "http:\/\/www.ca.gov\/", "urlPingSuffix":
+ "DevEx,5197.1", "about": [{"name": "Missouri AT"}, {"name": "California"}],
+ "displayUrl": "www.ca.gov", "snippet": "California has been hit with devastating
+ wildfires and other natural disasters in both the northern and southern parts
+ of the state. If you need more information about recovery or resources, go
+ to www.caloes.ca.gov", "dateLastCrawled": "2018-11-16T06:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Tennessee
+ State Government - TN.gov", "url": "http:\/\/www.tn.gov\/", "urlPingSuffix":
+ "DevEx,5211.1", "about": [{"name": "Tennessee State Capitol"}, {"name": "Tennessee"},
+ {"name": "Tennessee State Capitol"}], "displayUrl": "www.tn.gov", "snippet":
+ "Tennessee Gov. Bill Haslam and Department of Economic and Community Development
+ Commissioner Bob Rolfe announced today that Amazon will invest more than $230
+ million to establish a new Operations Center of Excellence in downtown Nashville.",
+ "dateLastCrawled": "2018-11-15T20:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "CalCareers - State of California", "url": "https:\/\/jobs.ca.gov\/",
+ "urlPingSuffix": "DevEx,5225.1", "about": [{"name": "JobsMoGov"}], "displayUrl":
+ "https:\/\/jobs.ca.gov", "snippet": "The State of California offers its
+ employees generous benefits that include retirement and savings plans, health
+ and dental insurance, and access to long-term disability and long-term care
+ insurance.", "dateLastCrawled": "2018-11-16T07:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "U.S. Department of State | Home Page", "url": "https:\/\/www.state.gov\/",
+ "urlPingSuffix": "DevEx,5239.1", "about": [{"name": "United States Department
+ of State"}], "displayUrl": "https:\/\/www.state.gov", "snippet": "State
+ Department honors those who have served in the United States’ armed forces
+ on Veterans Day, and each and every day, by providing education, fellowship,
+ and job exposure to veterans and transitioning military to become the diplomats
+ of tomorrow.", "dateLastCrawled": "2018-11-14T19:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "PA.GOV | The
+ Official Website for the Commonwealth of ...", "url": "https:\/\/www.pa.gov\/",
+ "urlPingSuffix": "DevEx,5253.1", "about": [{"name": "Pennsylvania"}, {"name":
+ "Commonwealth Gov .Sch."}, {"name": "Pennsylvania"}], "displayUrl": "https:\/\/www.pa.gov",
+ "snippet": "PA.GOV | The Official Website for the Commonwealth of Pennsylvania.
+ The official website of the Commonwealth of Pennsylvania. Find information
+ and services from Pennsylvania state government agencies.", "dateLastCrawled":
+ "2018-11-14T00:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "urlPingSuffix": "DevEx,5266.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Home [www.dmv.ca.gov]",
+ "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv", "urlPingSuffix": "DevEx,5280.1",
+ "about": [{"name": "California Department of Motor Vehicles"}], "displayUrl":
+ "https:\/\/www.dmv.ca.gov", "snippet": "California DMV Home Page is available
+ for customers to check out publications, download forms, brochures, FAQs,
+ Vehicle Information, Boats, Vessel, and Field Offices.", "dateLastCrawled":
+ "2018-11-16T11:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Home | DotGov", "url": "https:\/\/www.dotgov.gov\/", "urlPingSuffix":
+ "DevEx,5294.1", "about": [{"name": "gov"}], "displayUrl": "https:\/\/www.dotgov.gov",
+ "snippet": "The .gov means it’s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-15T02:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Unclaimed
+ Money from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "urlPingSuffix": "DevEx,5310.1", "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Texas.gov
+ | The Official Website of the State of Texas", "url": "https:\/\/texas.gov\/",
+ "urlPingSuffix": "DevEx,5324.1", "about": [{"name": "Texas"}], "displayUrl":
+ "https:\/\/texas.gov", "snippet": "Texas.gov does not sell and does
+ not generally release (other than as provided in this policy) personally identifiable
+ information to third parties; however, information provided to any governmental
+ body may be subject to disclosure pursuant to the Texas Public Information
+ Act and applicable federal and state legislation.", "dateLastCrawled": "2018-11-13T13:43:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:44 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gobierno%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2737'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:44 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=09ECF1997AAB6C241370FD357B7C6D5F; path=/; expires=Sat, 14-Dec-2019 22:41:44
+ GMT; domain=bingapis.com
+ - MUIDB=09ECF1997AAB6C241370FD357B7C6D5F; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:44 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:44 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F57358C541F24927975058B14F7990D6&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:44 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:44
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0849083CEFF96ECF09690490EE2E6FA3; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:44 GMT; domain=bingapis.com
+ - _SS=SID=0849083CEFF96ECF09690490EE2E6FA3; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 83F5CF13ABCC4902A2F2D9E3507EF11C
+ X-Msedge-Clientid:
+ - '09ECF1997AAB6C241370FD357B7C6D5F'
+ X-Msapi-Userstate:
+ - '3583'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 83F5CF13ABCC4902A2F2D9E3507EF11C Ref B: CO1EDGE0209 Ref C: 2018-11-19T22:41:44Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:44 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E07A4D9EB3B14A13A40B0B8EC677E405&CID=09ECF1997AAB6C241370FD357B7C6D5F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E07A4D9EB3B14A13A40B0B8EC677E405&CID=09ECF1997AAB6C241370FD357B7C6D5F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5422.1", "totalEstimatedMatches": 108000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5057.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Servicios
+ e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "urlPingSuffix": "DevEx,5085.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "urlPingSuffix": "DevEx,5111.1",
+ "displayUrl": "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes
+ de compartir información confidencial, asegúrese de que está en un sitio del
+ Gobierno federal. Este sitio es seguro. El protocolo https:\/\/ le asegura
+ que se está conectando al sitio web oficial y que cualquier información que
+ usted proporcione está encriptada y será transmitida de forma segura.", "dateLastCrawled":
+ "2018-11-13T04:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Novedades | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/novedades",
+ "urlPingSuffix": "DevEx,5126.1", "displayUrl": "https:\/\/gobierno.usa.gov\/novedades",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T18:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Directorios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/directorios",
+ "urlPingSuffix": "DevEx,5139.1", "displayUrl": "https:\/\/gobierno.usa.gov\/directorios",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-11T10:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Cómo obtener o renovar el pasaporte | USAGov", "url": "https:\/\/gobierno.usa.gov\/pasaportes-documentos-de-viaje",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/gobierno.usa.gov\/pasaportes-documentos-de-viaje",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T15:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Programas sociales | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "urlPingSuffix": "DevEx,5168.1", "displayUrl": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "snippet": "Beneficios sociales y ayuda financiera del Gobierno para familias
+ o personas con ingresos limitados para cubrir sus necesidades básicas.", "dateLastCrawled":
+ "2018-11-13T10:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5181.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Trabajo y desempleo | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/trabajo-y-desempleo",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/gobierno.usa.gov\/trabajo-y-desempleo",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-09T22:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Explorar USAGov en español | GobiernoUSA.gov", "url": "https:\/\/gobierno.usa.gov\/explorar\/",
+ "urlPingSuffix": "DevEx,5207.1", "displayUrl": "https:\/\/gobierno.usa.gov\/explorar",
+ "snippet": "USAGov es un programa federal que lo conecta a la información
+ y los servicios de las agencias, los departamentos y programas del Gobierno.
+ En USAGov encontrará respuestas a sus preguntas en español y en inglés—por
+ Internet, teléfono, chat o en nuestra Guía del Consumidor.", "dateLastCrawled":
+ "2018-11-10T04:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "urlPingSuffix": "DevEx,5220.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Centro de atención
+ al cliente | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/contactenos",
+ "urlPingSuffix": "DevEx,5235.1", "displayUrl": "https:\/\/gobierno.usa.gov\/contactenos",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-06T12:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Subastas y ventas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "urlPingSuffix": "DevEx,5250.1", "displayUrl": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "snippet": "Cuando el Gobierno tiene equipo adicional, bienes confiscados
+ o propiedades embargadas, los bienes se venden al público. Usted encontrará
+ una variedad de bienes en venta como autos, camiones, propiedades, casas,
+ edificios, terrenos, computadoras, mobiliario y herramientas de trabajo.",
+ "dateLastCrawled": "2018-11-10T06:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Ciudadanía, inmigración y viajes | USAGov - gobierno.usa.gov",
+ "url": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes", "urlPingSuffix":
+ "DevEx,5263.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T17:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Ramas Legislativas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/ramas-del-gobierno",
+ "urlPingSuffix": "DevEx,5278.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ramas-del-gobierno",
+ "snippet": "El Gobierno federal funciona bajo un sistema cuyo objetivo principal
+ es proteger los intereses de sus ciudadanos. La rama legislativa. El Congreso
+ representa la rama del poder legislativo y está conformado por la Cámara de
+ Representantes y el Senado.", "dateLastCrawled": "2018-11-07T07:23:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Dinero
+ y crédito | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/dinero",
+ "urlPingSuffix": "DevEx,5290.1", "displayUrl": "https:\/\/gobierno.usa.gov\/dinero",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-11T20:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Empleo y capacitación laboral | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral", "urlPingSuffix":
+ "DevEx,5305.1", "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-07T14:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Quienes Somos | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/quienes-somos",
+ "urlPingSuffix": "DevEx,5320.1", "displayUrl": "https:\/\/gobierno.usa.gov\/quienes-somos",
+ "snippet": "Quiénes somos Nuestra misión. Crear y organizar información y
+ servicios del Gobierno oportunos y necesarios para que el público los pueda
+ acceder en cualquier momento, desde cualquier lugar y con cualquier dispositivo
+ electrónico.", "dateLastCrawled": "2018-11-13T11:42:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:45 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gobierno%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3655'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:45 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1C7FD14C87636A63234CDDE086B46B11; path=/; expires=Sat, 14-Dec-2019 22:41:45
+ GMT; domain=bingapis.com
+ - MUIDB=1C7FD14C87636A63234CDDE086B46B11; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:45 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:45 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=69FE89145C8E47F1B48C4D95465ED989&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:45 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:45
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=12F62B4AF9176B16358227E6F8C06A2C; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:45 GMT; domain=bingapis.com
+ - _SS=SID=12F62B4AF9176B16358227E6F8C06A2C; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 73970263CAA34AB98473D5EF500D9453
+ X-Msedge-Clientid:
+ - 1C7FD14C87636A63234CDDE086B46B11
+ X-Msapi-Userstate:
+ - '2828'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 73970263CAA34AB98473D5EF500D9453 Ref B: CO1EDGE0211 Ref C: 2018-11-19T22:41:45Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:44 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8D3A20ADD43B4E2E8DA975751A8517DE&CID=1C7FD14C87636A63234CDDE086B46B11&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8D3A20ADD43B4E2E8DA975751A8517DE&CID=1C7FD14C87636A63234CDDE086B46B11&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5406.1", "totalEstimatedMatches": 3440000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "PR.gov - Portal Oficial del Estado Libre Asociado de ...", "url": "http:\/\/pr.gov\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "Missouri AT"}, {"name":
+ "Puerto Rico"}], "displayUrl": "pr.gov", "snippet": "Es el medio oficial
+ de avisos de subastas de todas las agencias de la Rama Ejecutiva y las corporaciones
+ públicas del Gobierno del Estado Libre Asociado de Puerto Rico, según la
+ Ley Núm 205-2012.", "dateLastCrawled": "2018-11-12T20:11:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Guía oficial
+ de información y servicios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/",
+ "urlPingSuffix": "DevEx,5070.1", "about": [{"name": "GobiernoUSA.gov"}], "displayUrl":
+ "https:\/\/gobierno.usa.gov", "snippet": "Página principal de GobiernoUSA.gov,
+ el portal oficial del Gobierno de Estados Unidos en español.", "dateLastCrawled":
+ "2018-11-16T08:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "informacion de formularios prgov Solicitud de ...", "url": "http:\/\/www2.pr.gov\/pages\/informaciondeformulariosprgovsolicituddecertificaci%C3%B3ndecumplimientodeasume.aspx",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "www2.pr.gov\/pages...",
+ "snippet": "Para desplegar correctamente los formularios en PR.GOV debe activar
+ el “Compatibility View”, requerido al actualizar a Internet Explorer 8 y 9.
+ Tiene dos opciones: Opción 1: Presionar el botón de Compatibility View. Cuando
+ accede el portal PR.GOV aparecerá a la derecha del navegador.", "dateLastCrawled":
+ "2018-11-15T11:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Convocatorias y Becas Busqueda de Convocatorias y Becas", "url":
+ "http:\/\/www2.pr.gov\/Pages\/empleos.aspx", "urlPingSuffix": "DevEx,5096.1",
+ "displayUrl": "www2.pr.gov\/Pages\/empleos.aspx", "snippet": "Gobierno
+ Federal; Tercer Sector; Directorios. Directorio de Agencias; Directorio de
+ Municipios de Puerto Rico; La Fortaleza; Líneas de Ayuda para Emergencias;
+ Junta Revisora de Propiedead Inmueble; Ventanilla Unica. Ventanilla Única
+ Villalba; Ventanilla Única Vega Baja; Ventanilla Única Toa Alta;", "dateLastCrawled":
+ "2018-11-16T08:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Directorio de Agencias - PR.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "urlPingSuffix": "DevEx,5108.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "snippet": "Gobierno a Gobierno; Convocatorias; Subastas Públicas ‹ ›
+ Directorio de Agencias. Sobre Puerto Rico ...", "dateLastCrawled": "2018-11-14T17:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Servicios
+ e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "urlPingSuffix": "DevEx,5121.1", "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Pages\/servicefilter.aspx?searchTerm=desempleo",
+ "urlPingSuffix": "DevEx,5134.1", "displayUrl": "www2.pr.gov\/Pages\/servicefilter.aspx?searchTerm=desempleo",
+ "snippet": "Página del Gobierno Federal que se utiliza para la búsqueda
+ de personas desaparecidas. Gratis. Portal de Datos Geográficos Gubernamentales
+ – GIS. Este portal centraliza los datos geográficos digitales producidos por
+ las agencias y corporaciones desde 2001-2012 donde los ciudadanos tendrán
+ acceso a esos datos.", "dateLastCrawled": "2018-11-15T09:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Directorio
+ Gubernamental", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "urlPingSuffix": "DevEx,5147.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "snippet": "Directorio de Agencias. Aquí accederá al Directorio de Agencias
+ del Estado Libre Asociado de Puerto Rico, con alternativas de búsqueda e información
+ de contacto de todas las entidades de nuestro gobierno.", "dateLastCrawled":
+ "2018-11-12T21:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/info", "urlPingSuffix": "DevEx,5160.1", "displayUrl":
+ "https:\/\/servicios.pr.gov\/info", "snippet": "Este nuevo servicio se encuentra
+ en un periodo de mejoramiento continuo conocido como beta. Durante este periodo,
+ el servicio será completamente gratuito y todos los certificados emitidos
+ mediante el mismo son oficiales.", "dateLastCrawled": "2018-11-15T04:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "search
+ - PR.gov", "url": "http:\/\/www2.pr.gov\/Pages\/search.aspx", "urlPingSuffix":
+ "DevEx,5173.1", "displayUrl": "www2.pr.gov\/Pages\/search.aspx", "snippet":
+ "A través de este servicio usted podrá realiza una pre-cualificación para
+ el Programa Medicaid \/ Plan de Salud del Gobierno. Le indica el número
+ de teléfono a llamar para realizar una cita o recibir orientación. Gratis.
+ N\/A. Buscador de Escuelas.", "dateLastCrawled": "2018-11-13T22:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "USA
+ - Official Guide to Government Information and Services", "url": "https:\/\/www.usa.gov\/",
+ "urlPingSuffix": "DevEx,5186.1", "about": [{"name": "United States"}], "displayUrl":
+ "https:\/\/www.usa.gov", "snippet": "USA.gov can help you start your search
+ for government information by topic and agency.", "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Solicitud
+ de Certificación de Cumplimiento de ASUME", "url": "http:\/\/pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "urlPingSuffix": "DevEx,5198.1", "displayUrl": "pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "snippet": "Mediante esta transacción el ciudadano puede solicitar un documento
+ que certifica si tiene o no tiene un caso de pensión alimentaria en ASUME.",
+ "dateLastCrawled": "2018-11-15T17:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Departamento de Estado", "url": "https:\/\/estado.pr.gov\/es\/",
+ "urlPingSuffix": "DevEx,5211.1", "about": [{"name": "Puerto Rico Department
+ of State"}], "displayUrl": "https:\/\/estado.pr.gov\/es", "snippet": "Secretario
+ de Estado destaca que Mesa Permanente del Sector Privado continúa sus esfuerzos
+ con el Gobierno para mejorar y maximizar servicios Viernes, 9 de noviembre
+ de 2018 – (San Juan) – El …", "dateLastCrawled": "2018-11-16T10:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "PR.gov
+ - Nuevo Servicio para Solicitar un Certificado de ...", "url": "https:\/\/servicios.pr.gov\/",
+ "urlPingSuffix": "DevEx,5224.1", "displayUrl": "https:\/\/servicios.pr.gov",
+ "snippet": "El Gobierno del Estado Libre Asociado de Puerto Rico se compromete
+ a brindar servicios de alta calidad a través del Portal, dentro de las circunstancias
+ particulares del medio cibernético. El Gobierno del Estado Libre Asociado
+ de Puerto Rico se compromete a cumplir con la Política de Privacidad publicada
+ en el Portal.", "dateLastCrawled": "2018-11-13T18:28:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "subastas", "url":
+ "http:\/\/www2.pr.gov\/subasta\/Pages\/subastas.aspx", "urlPingSuffix": "DevEx,5237.1",
+ "displayUrl": "www2.pr.gov\/subasta\/Pages\/subastas.aspx", "snippet": "para
+ establecer contrato de selecciÓn mÚltiple para el servicio de disposiciÓn
+ de documento pÚblicos para los departamentos,dependencias,agencias e instrumentalidades
+ de la rama ejecutiva,las corporaciones pÚblicas y los municipios del gobierno
+ de puerto rico (18-135-c)", "dateLastCrawled": "2018-11-15T21:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Agencias
+ y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "urlPingSuffix": "DevEx,5252.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "urlPingSuffix": "DevEx,5265.1", "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/InfoAgencia.aspx?PRIFA=024",
+ "urlPingSuffix": "DevEx,5278.1", "displayUrl": "www2.pr.gov\/Directorios\/Pages\/InfoAgencia.aspx?PRIFA=024",
+ "snippet": "El Plan de Reorganización Núm. 3 de 22 de junio de 1994, que reorganiza
+ el Departamento de Hacienda como el Departamento Sombrilla. Garantizar la
+ justicia contributiva y estabilidad fiscal que contribuya plenamente al bienestar
+ social y económico de nuestro país.", "dateLastCrawled": "2018-11-15T02:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Inicio
+ - Asume - Servicios En Línea", "url": "https:\/\/serviciosenlinea.asume.pr.gov\/asume_servicios\/",
+ "urlPingSuffix": "DevEx,5291.1", "displayUrl": "https:\/\/serviciosenlinea.asume.pr.gov\/asume_servicios",
+ "snippet": "(a) El nombre, dirección y número de seguro social del empleado,
+ y (b) el nombre, dirección y número de identificación federal patronal, o
+ en caso de que la ley local o federal no requiera un número de identificación
+ federal patronal, el número de identificación patronal del Gobierno del
+ Estado Libre Asociado de Puerto Rico.", "dateLastCrawled": "2018-11-14T16:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Recursos
+ para la educación | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5304.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:45 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gov%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:56 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 48D1D2ECBE534EF08FCE1A0AA3C5B251
+ Bingapis-Sessionid:
+ - D6A6E9A262D943A1A547D080EA622E22
+ X-Msedge-Clientid:
+ - 2D53E538B3D0673A17DCE994B29C66AA
+ X-Msapi-Userstate:
+ - e12f
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=174,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 48D1D2ECBE534EF08FCE1A0AA3C5B251 Ref B: BY3EDGE0319 Ref C: 2018-11-19T22:42:56Z'
+ Apim-Request-Id:
+ - b15f1f6b-d803-4806-bb85-c46ed2045bf3
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:56 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gov
+ (site:usa.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3ausa.gov)",
+ "totalEstimatedMatches": 134000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.
+ This site is secure. The https:\/\/ ensures that you are connecting to the
+ official website and that any information you provide is ...", "dateLastCrawled":
+ "2018-11-11T03:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Unclaimed Money from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Jobs and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "U.S. Government Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Getting or Renewing a U.S. Passport | USAGov", "url": "https:\/\/www.usa.gov\/passport",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/passport",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-13T22:14:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Looking for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/job-search",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal
+ jobs and employment information. There, you can: You must create a USAJOBS
+ profile to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Contact Us | USAGov", "url": "https:\/\/www.usa.gov\/contact",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/contact",
+ "snippet": "USA.gov’s information specialists can help you find information
+ on federal agencies, programs, benefits, services, and more. Chat with USA.gov
+ USA.gov’s live chat service can help you find information on federal agencies,
+ programs, benefits, services, and more.", "dateLastCrawled": "2018-11-13T05:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/branches-of-government", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "I | Government Forms | USAGov", "url": "https:\/\/www.usa.gov\/forms\/i",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/forms\/i",
+ "snippet": "The .gov means it''s official. Federal government websites
+ often end in .gov or .mil. Before sharing sensitive information, make sure
+ you''re on a federal government site.", "dateLastCrawled": "2018-11-15T21:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "About USA.gov | USAGov", "url": "https:\/\/www.usa.gov\/about",
+ "about": [{"name": "USA.gov"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/about",
+ "snippet": "About USA.gov. Our mission is to create and organize timely,
+ needed government information and services and make them accessible anytime,
+ anywhere, via your channel of choice. About Us. Learn more about the history
+ and mission of USA.gov. Contact USA.gov.", "dateLastCrawled": "2018-11-13T17:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Travel and Immigration | USAGov", "url": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T04:38:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Money and Credit | USAGov", "url": "https:\/\/www.usa.gov\/money",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-16T08:28:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Features | USAGov", "url": "https:\/\/www.usa.gov\/features", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/features", "snippet": "The
+ .gov means it''s official. Federal government websites often end in .gov
+ or .mil. Before sharing sensitive information, make sure you''re on a federal
+ government site.", "dateLastCrawled": "2018-11-15T20:11:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Government Grants and Loans | USAGov", "url": "https:\/\/www.usa.gov\/grants",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/grants",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-12T14:24:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Health | USAGov", "url": "https:\/\/www.usa.gov\/health", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-14T16:52:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Small Business | USAGov", "url": "https:\/\/www.usa.gov\/business",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/business",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-11T18:13:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:57 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gov%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:57 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 30BF0C7E840D44CDA2CA8556771D0593
+ Bingapis-Sessionid:
+ - F0CA22F005164FAAB0695F23E29AD22A
+ X-Msedge-Clientid:
+ - 21C8B84A04C466FF2E2FB4E6058867EB
+ X-Msapi-Userstate:
+ - b755
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=263,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 30BF0C7E840D44CDA2CA8556771D0593 Ref B: BY3EDGE0417 Ref C: 2018-11-19T22:42:57Z'
+ Apim-Request-Id:
+ - 7b7bb8c9-acc0-4002-b16c-3307f51d9297
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gov
+ (site:.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3a.gov)",
+ "totalEstimatedMatches": 50500000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Internal Revenue Service | An official website of the ...", "url":
+ "https:\/\/www.irs.gov\/", "about": [{"name": "Internal Revenue Service"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.irs.gov", "snippet":
+ "The Internal Revenue Service is the nation''s tax collection agency and
+ administers the Internal Revenue Code enacted by Congress.", "dateLastCrawled":
+ "2018-11-15T23:54:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "The United States Social Security Administration", "url": "https:\/\/www.ssa.gov\/",
+ "about": [{"name": "Social Security Administration"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.ssa.gov", "snippet": "Official website
+ of the U.S. Social Security Administration. When I made the decision to
+ enlist in the Army, I knew it was a lifetime commitment, whether I was in
+ uniform or not.", "dateLastCrawled": "2018-11-16T02:03:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.
+ This site is secure. The https:\/\/ ensures that you are connecting to the
+ official website and that any information you provide is ...", "dateLastCrawled":
+ "2018-11-11T03:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "Medicare.gov: the official U.S. government site for Medicare", "url":
+ "https:\/\/www.medicare.gov\/", "about": [{"name": "Medicare"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.medicare.gov", "snippet": "If you share
+ our content on Facebook, Twitter, or other social media accounts, we may track
+ what Medicare.gov content you share. This helps us improve our social media
+ outreach. Selecting OFF will block this tracking.", "dateLastCrawled": "2018-11-13T23:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "IN.gov | The Official Website of the State of Indiana", "url":
+ "https:\/\/www.in.gov\/", "about": [{"name": "Indiana"}, {"name": "Tennessee
+ State Capitol"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.in.gov",
+ "snippet": "IN.gov is the official website of the State of Indiana and
+ your place to find information, services, news and events related to Indiana
+ government. AMBER ALERT But when you''re done reading it, click the close
+ button in the corner to dismiss this alert.", "dateLastCrawled": "2018-11-13T08:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "HealthCare.gov - Get 2019 health coverage. Health ...", "url":
+ "https:\/\/www.healthcare.gov\/", "about": [{"name": "HealthCare.gov"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.healthcare.gov", "snippet": "Official
+ site of Affordable Care Act. Enroll now for 2019 coverage. See health coverage
+ choices, ways to save today, how law affects you.", "dateLastCrawled": "2018-11-13T18:37:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "USAJOBS - The Federal Government''s Official Jobs Site", "url":
+ "https:\/\/www.usajobs.gov\/", "about": [{"name": "USAJOBS"}, {"name": "USAJOBS"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usajobs.gov", "snippet":
+ "USAJOBS is the Federal Government''s official one-stop source for Federal
+ jobs and employment information.", "dateLastCrawled": "2018-11-12T08:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "U.S. Government Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "National Weather Service", "url": "https:\/\/www.weather.gov\/",
+ "about": [{"name": "National Weather Service"}, {"name": "National Weather
+ Service"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.weather.gov",
+ "snippet": "NOAA National Weather Service National Weather Service. Fire
+ Weather Threat Waning in Southern California; Early Season Winter Storm Impacting
+ the Ohio\/Mississippi Valleys and the East Coast States", "dateLastCrawled":
+ "2018-11-16T09:22:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Welcome to the California State Web Portal", "url": "http:\/\/www.ca.gov\/",
+ "about": [{"name": "Missouri AT"}, {"name": "California"}], "isFamilyFriendly":
+ true, "displayUrl": "www.ca.gov", "snippet": "California has been hit
+ with devastating wildfires and other natural disasters in both the northern
+ and southern parts of the state. If you need more information about recovery
+ or resources, go to www.caloes.ca.gov", "dateLastCrawled": "2018-11-16T06:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Tennessee State Government - TN.gov", "url": "http:\/\/www.tn.gov\/",
+ "about": [{"name": "Tennessee State Capitol"}, {"name": "Tennessee"}, {"name":
+ "Tennessee State Capitol"}], "isFamilyFriendly": true, "displayUrl": "www.tn.gov",
+ "snippet": "Tennessee Gov. Bill Haslam and Department of Economic and Community
+ Development Commissioner Bob Rolfe announced today that Amazon will invest
+ more than $230 million to establish a new Operations Center of Excellence
+ in downtown Nashville.", "dateLastCrawled": "2018-11-15T20:10:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "CalCareers - State of California", "url": "https:\/\/jobs.ca.gov\/",
+ "about": [{"name": "JobsMoGov"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/jobs.ca.gov", "snippet": "The State of California offers its
+ employees generous benefits that include retirement and savings plans, health
+ and dental insurance, and access to long-term disability and long-term care
+ insurance.", "dateLastCrawled": "2018-11-16T07:14:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "U.S. Department of State | Home Page", "url": "https:\/\/www.state.gov\/",
+ "about": [{"name": "United States Department of State"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.state.gov", "snippet": "State Department
+ honors those who have served in the United States’ armed forces on Veterans
+ Day, and each and every day, by providing education, fellowship, and job exposure
+ to veterans and transitioning military to become the diplomats of tomorrow.",
+ "dateLastCrawled": "2018-11-14T19:16:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "PA.GOV | The Official Website for the Commonwealth of ...", "url":
+ "https:\/\/www.pa.gov\/", "about": [{"name": "Pennsylvania"}, {"name": "Commonwealth
+ Gov .Sch."}, {"name": "Pennsylvania"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.pa.gov", "snippet": "PA.GOV | The Official Website for
+ the Commonwealth of Pennsylvania. The official website of the Commonwealth
+ of Pennsylvania. Find information and services from Pennsylvania state
+ government agencies.", "dateLastCrawled": "2018-11-14T00:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Home [www.dmv.ca.gov]", "url": "https:\/\/www.dmv.ca.gov\/portal\/dmv",
+ "about": [{"name": "California Department of Motor Vehicles"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.dmv.ca.gov", "snippet": "California
+ DMV Home Page is available for customers to check out publications, download
+ forms, brochures, FAQs, Vehicle Information, Boats, Vessel, and Field Offices.",
+ "dateLastCrawled": "2018-11-16T11:39:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Home | DotGov", "url": "https:\/\/www.dotgov.gov\/", "about": [{"name":
+ "gov"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dotgov.gov",
+ "snippet": "The .gov means it’s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-15T02:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Unclaimed Money from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Texas.gov | The Official Website of the State of Texas", "url":
+ "https:\/\/texas.gov\/", "about": [{"name": "Texas"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/texas.gov", "snippet": "Texas.gov does
+ not sell and does not generally release (other than as provided in this policy)
+ personally identifiable information to third parties; however, information
+ provided to any governmental body may be subject to disclosure pursuant to
+ the Texas Public Information Act and applicable federal and state legislation.",
+ "dateLastCrawled": "2018-11-13T13:43:00.0000000Z", "language": "en", "isNavigational":
+ false}]}, "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages",
+ "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:57 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gobierno%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:57 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - FF0F32F678B341479D1ED96BEF17CA1C
+ Bingapis-Sessionid:
+ - 942C115B11B445349EF00338D56F5884
+ X-Msedge-Clientid:
+ - 25A553DE2B03606C275A5F722A4F6190
+ X-Msapi-Userstate:
+ - '0996'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=263,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: FF0F32F678B341479D1ED96BEF17CA1C Ref B: BY3EDGE0521 Ref C: 2018-11-19T22:42:58Z'
+ Apim-Request-Id:
+ - f0edd52e-8f57-488c-9b33-fdd10e4be9d7
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gobierno
+ (site:usa.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3ausa.gov)",
+ "totalEstimatedMatches": 108000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov",
+ "url": "https:\/\/gobierno.usa.gov\/", "about": [{"name": "GobiernoUSA.gov"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Servicios e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal. Este sitio es seguro. El protocolo https:\/\/ le asegura que se está
+ conectando al sitio web oficial y que cualquier información que usted proporcione
+ está encriptada y será transmitida de forma segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Agencias estatales de Puerto Rico | USAGov - gobierno.usa.gov",
+ "url": "https:\/\/gobierno.usa.gov\/gobiernos-estatales\/puerto-rico", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/gobiernos-estatales\/puerto-rico",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-12T12:51:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Explorar USAGov en español | GobiernoUSA.gov", "url": "https:\/\/gobierno.usa.gov\/explorar\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/explorar",
+ "snippet": "USAGov es un programa federal que lo conecta a la información
+ y los servicios de las agencias, los departamentos y programas del Gobierno.
+ En USAGov encontrará respuestas a sus preguntas en español y en inglés—por
+ Internet, teléfono, chat o en nuestra Guía del Consumidor.", "dateLastCrawled":
+ "2018-11-10T04:36:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Programas sociales | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "snippet": "Beneficios sociales y ayuda financiera del Gobierno para familias
+ o personas con ingresos limitados para cubrir sus necesidades básicas.", "dateLastCrawled":
+ "2018-11-13T10:20:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "Subastas y ventas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "snippet": "Cuando el Gobierno tiene equipo adicional, bienes confiscados
+ o propiedades embargadas, los bienes se venden al público. Usted encontrará
+ una variedad de bienes en venta como autos, camiones, propiedades, casas,
+ edificios, terrenos, computadoras, mobiliario y herramientas de trabajo.",
+ "dateLastCrawled": "2018-11-10T06:58:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Cómo funcional el Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/como-funciona-el-gobiernousa.gov",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/como-funciona-el-gobiernousa.gov",
+ "snippet": "El Gobierno federal funciona bajo un sistema cuyo objetivo principal
+ es proteger los intereses de sus ciudadanos. La rama legislativa. El Congreso
+ representa la rama del poder legislativo y está conformado por la Cámara de
+ Representantes y el Senado.", "dateLastCrawled": "2018-11-13T01:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov can help
+ you start your search for government information by topic and agency.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Ciudadanía, inmigración y viajes | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T17:56:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Ayuda financiera, becas y beneficios | USAGov", "url": "https:\/\/gobierno.usa.gov\/ayuda-financiera-becas-beneficios",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/ayuda-financiera-becas-beneficios",
+ "snippet": "Busque ayuda del Gobierno para recibir los beneficios de desempleo
+ y conozca sus obligaciones tributarias. Jubilación. Planee su jubilación,
+ beneficios del Seguro Social y averigüe si tiene una pensión de empleo sin
+ reclamar. Pago de facturas.", "dateLastCrawled": "2018-11-11T08:35:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Temas migratorios comunes | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/tramites-migratorios", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/gobierno.usa.gov\/tramites-migratorios", "snippet":
+ "El dominio .gov significa que es oficial. Los sitios del Gobierno federal
+ frecuentemente terminan en dominios .gov o .mil. Antes de compartir información
+ confidencial, asegúrese de que está en un sitio del Gobierno federal.",
+ "dateLastCrawled": "2018-11-16T03:49:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Préstamos y subvenciones | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/prestamos-y-subvenciones", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/prestamos-y-subvenciones",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-08T14:54:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Huracán Michael | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/huracan-michael",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/huracan-michael",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-08T08:12:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Ayuda para comprar una vivienda | USAGov - gobierno.usa.gov",
+ "url": "https:\/\/gobierno.usa.gov\/compra-vivienda", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/compra-vivienda", "snippet":
+ "El dominio .gov significa que es oficial. Los sitios del Gobierno federal
+ frecuentemente terminan en dominios .gov o .mil. Antes de compartir información
+ confidencial, asegúrese de que está en un sitio del Gobierno federal.",
+ "dateLastCrawled": "2018-11-08T04:57:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Empleo y capacitación laboral | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-07T14:25:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Encuentre lo que necesita en ... - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/forma-de-uso", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/gobierno.usa.gov\/forma-de-uso", "snippet": "El dominio .gov
+ significa que es oficial. Los sitios del Gobierno federal frecuentemente
+ terminan en dominios .gov o .mil. Antes de compartir información confidencial,
+ asegúrese de que está en un sitio del Gobierno federal.", "dateLastCrawled":
+ "2018-11-11T19:07:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "Novedades | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/novedades",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/novedades",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T18:12:00.0000000Z", "language": "es",
+ "isNavigational": false}]}, "rankingResponse": {"mainline": {"items": [{"answerType":
+ "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:58 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gobierno%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:58 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 173685A097E141F3B431797C80B63080
+ Bingapis-Sessionid:
+ - 9164CD00C03541658593BD1A2AD066BF
+ X-Msedge-Clientid:
+ - 1CE9A722F67E695835CAAB8EF732680D
+ X-Msapi-Userstate:
+ - f938
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=172,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 173685A097E141F3B431797C80B63080 Ref B: BY3EDGE0310 Ref C: 2018-11-19T22:42:58Z'
+ Apim-Request-Id:
+ - e4c2e6ad-0bd5-4256-ad78-c87f5221263d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:58 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gobierno
+ (site:.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3a.gov)",
+ "totalEstimatedMatches": 3440000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "PR.gov - Portal Oficial del Estado Libre Asociado de ...", "url":
+ "http:\/\/pr.gov\/", "about": [{"name": "Missouri AT"}, {"name": "Puerto Rico"}],
+ "isFamilyFriendly": true, "displayUrl": "pr.gov", "snippet": "Es el medio
+ oficial de avisos de subastas de todas las agencias de la Rama Ejecutiva y
+ las corporaciones públicas del Gobierno del Estado Libre Asociado de Puerto
+ Rico, según la Ley Núm 205-2012.", "dateLastCrawled": "2018-11-12T20:11:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov",
+ "url": "https:\/\/gobierno.usa.gov\/", "about": [{"name": "GobiernoUSA.gov"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "informacion de formularios prgov Solicitud de ...", "url": "http:\/\/www2.pr.gov\/pages\/informaciondeformulariosprgovsolicituddecertificaci%C3%B3ndecumplimientodeasume.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/pages...", "snippet":
+ "Para desplegar correctamente los formularios en PR.GOV debe activar el “Compatibility
+ View”, requerido al actualizar a Internet Explorer 8 y 9. Tiene dos opciones:
+ Opción 1: Presionar el botón de Compatibility View. Cuando accede el portal
+ PR.GOV aparecerá a la derecha del navegador.", "dateLastCrawled": "2018-11-15T11:26:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Convocatorias y Becas Busqueda de Convocatorias y Becas", "url":
+ "http:\/\/www2.pr.gov\/Pages\/empleos.aspx", "isFamilyFriendly": true, "displayUrl":
+ "www2.pr.gov\/Pages\/empleos.aspx", "snippet": "Gobierno Federal; Tercer
+ Sector; Directorios. Directorio de Agencias; Directorio de Municipios de Puerto
+ Rico; La Fortaleza; Líneas de Ayuda para Emergencias; Junta Revisora de Propiedead
+ Inmueble; Ventanilla Unica. Ventanilla Única Villalba; Ventanilla Única Vega
+ Baja; Ventanilla Única Toa Alta;", "dateLastCrawled": "2018-11-16T08:39:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Directorio de Agencias - PR.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/DirectoriodeAgencias.aspx",
+ "snippet": "Gobierno a Gobierno; Convocatorias; Subastas Públicas ‹ ›
+ Directorio de Agencias. Sobre Puerto Rico ...", "dateLastCrawled": "2018-11-14T17:02:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Servicios e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Pages\/servicefilter.aspx?searchTerm=desempleo",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Pages\/servicefilter.aspx?searchTerm=desempleo",
+ "snippet": "Página del Gobierno Federal que se utiliza para la búsqueda
+ de personas desaparecidas. Gratis. Portal de Datos Geográficos Gubernamentales
+ – GIS. Este portal centraliza los datos geográficos digitales producidos por
+ las agencias y corporaciones desde 2001-2012 donde los ciudadanos tendrán
+ acceso a esos datos.", "dateLastCrawled": "2018-11-15T09:49:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Directorio Gubernamental", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/Directorios.aspx",
+ "snippet": "Directorio de Agencias. Aquí accederá al Directorio de Agencias
+ del Estado Libre Asociado de Puerto Rico, con alternativas de búsqueda e información
+ de contacto de todas las entidades de nuestro gobierno.", "dateLastCrawled":
+ "2018-11-12T21:55:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url": "https:\/\/servicios.pr.gov\/info",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/servicios.pr.gov\/info",
+ "snippet": "Este nuevo servicio se encuentra en un periodo de mejoramiento
+ continuo conocido como beta. Durante este periodo, el servicio será completamente
+ gratuito y todos los certificados emitidos mediante el mismo son oficiales.",
+ "dateLastCrawled": "2018-11-15T04:29:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "search - PR.gov", "url": "http:\/\/www2.pr.gov\/Pages\/search.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Pages\/search.aspx",
+ "snippet": "A través de este servicio usted podrá realiza una pre-cualificación
+ para el Programa Medicaid \/ Plan de Salud del Gobierno. Le indica el número
+ de teléfono a llamar para realizar una cita o recibir orientación. Gratis.
+ N\/A. Buscador de Escuelas.", "dateLastCrawled": "2018-11-13T22:00:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov can help
+ you start your search for government information by topic and agency.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Solicitud de Certificación de Cumplimiento de ASUME", "url": "http:\/\/pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "isFamilyFriendly": true, "displayUrl": "pr.gov\/CitizenPortal\/124-002-002-000.htm?TRX=124002002000",
+ "snippet": "Mediante esta transacción el ciudadano puede solicitar un documento
+ que certifica si tiene o no tiene un caso de pensión alimentaria en ASUME.",
+ "dateLastCrawled": "2018-11-15T17:17:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Departamento de Estado", "url": "https:\/\/estado.pr.gov\/es\/",
+ "about": [{"name": "Puerto Rico Department of State"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/estado.pr.gov\/es", "snippet": "Secretario
+ de Estado destaca que Mesa Permanente del Sector Privado continúa sus esfuerzos
+ con el Gobierno para mejorar y maximizar servicios Viernes, 9 de noviembre
+ de 2018 – (San Juan) – El …", "dateLastCrawled": "2018-11-16T10:12:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "PR.gov - Nuevo Servicio para Solicitar un Certificado de ...", "url":
+ "https:\/\/servicios.pr.gov\/", "isFamilyFriendly": true, "displayUrl": "https:\/\/servicios.pr.gov",
+ "snippet": "El Gobierno del Estado Libre Asociado de Puerto Rico se compromete
+ a brindar servicios de alta calidad a través del Portal, dentro de las circunstancias
+ particulares del medio cibernético. El Gobierno del Estado Libre Asociado
+ de Puerto Rico se compromete a cumplir con la Política de Privacidad publicada
+ en el Portal.", "dateLastCrawled": "2018-11-13T18:28:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "subastas", "url": "http:\/\/www2.pr.gov\/subasta\/Pages\/subastas.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/subasta\/Pages\/subastas.aspx",
+ "snippet": "para establecer contrato de selecciÓn mÚltiple para el servicio
+ de disposiciÓn de documento pÚblicos para los departamentos,dependencias,agencias
+ e instrumentalidades de la rama ejecutiva,las corporaciones pÚblicas y los
+ municipios del gobierno de puerto rico (18-135-c)", "dateLastCrawled": "2018-11-15T21:59:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Portal Oficial Del - pr.gov", "url": "http:\/\/www2.pr.gov\/Directorios\/Pages\/InfoAgencia.aspx?PRIFA=024",
+ "isFamilyFriendly": true, "displayUrl": "www2.pr.gov\/Directorios\/Pages\/InfoAgencia.aspx?PRIFA=024",
+ "snippet": "El Plan de Reorganización Núm. 3 de 22 de junio de 1994, que reorganiza
+ el Departamento de Hacienda como el Departamento Sombrilla. Garantizar la
+ justicia contributiva y estabilidad fiscal que contribuya plenamente al bienestar
+ social y económico de nuestro país.", "dateLastCrawled": "2018-11-15T02:03:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Inicio - Asume - Servicios En Línea", "url": "https:\/\/serviciosenlinea.asume.pr.gov\/asume_servicios\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/serviciosenlinea.asume.pr.gov\/asume_servicios",
+ "snippet": "(a) El nombre, dirección y número de seguro social del empleado,
+ y (b) el nombre, dirección y número de identificación federal patronal, o
+ en caso de que la ley local o federal no requiera un número de identificación
+ federal patronal, el número de identificación patronal del Gobierno del
+ Estado Libre Asociado de Puerto Rico.", "dateLastCrawled": "2018-11-14T16:42:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal. Este sitio es seguro. El protocolo https:\/\/ le asegura que se está
+ conectando al sitio web oficial y que cualquier información que usted proporcione
+ está encriptada y será transmitida de forma segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z",
+ "language": "es", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:58 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_with_dropdown_menu.yml b/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_with_dropdown_menu.yml
index 4820d4fde0..799c5d5fba 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_with_dropdown_menu.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_with_dropdown_menu.yml
@@ -617,4 +617,1363 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:23:28 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=news%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3516'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:33 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=39B880CBB2C1654F38488C67B31664AA; path=/; expires=Sat, 14-Dec-2019 22:41:33
+ GMT; domain=bingapis.com
+ - MUIDB=39B880CBB2C1654F38488C67B31664AA; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:33 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:33 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=04B479DDF4A744CDA0941CE763368BAC&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:33 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:33
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3E567620C38463D210157A8CC253627A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:33 GMT; domain=bingapis.com
+ - _SS=SID=3E567620C38463D210157A8CC253627A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 2DFAE803CDB246FDB53D0F2B2EED3522
+ X-Msedge-Clientid:
+ - 39B880CBB2C1654F38488C67B31664AA
+ X-Msapi-Userstate:
+ - 791f
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 2DFAE803CDB246FDB53D0F2B2EED3522 Ref B: CO1EDGE0309 Ref C: 2018-11-19T22:41:33Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:33 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=919ED96E7D344DF8A9F394BD1969A109&CID=39B880CBB2C1654F38488C67B31664AA&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=919ED96E7D344DF8A9F394BD1969A109&CID=39B880CBB2C1654F38488C67B31664AA&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5411.1", "totalEstimatedMatches": 30900000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "News | NSF - National Science Foundation", "url": "https:\/\/nsf.gov\/news\/",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/nsf.gov\/news",
+ "snippet": "NSF''s mission is to advance the progress of science, a mission
+ accomplished by funding proposals for research and education made by scientists,
+ engineers, and educators from across the country.", "dateLastCrawled": "2018-11-15T09:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "News
+ | USCIS", "url": "https:\/\/www.uscis.gov\/news", "urlPingSuffix": "DevEx,5073.1",
+ "displayUrl": "https:\/\/www.uscis.gov\/news", "snippet": "Here we have
+ the latest news within the immigration benefit world, handled by U.S. Citizenship
+ and Immigration Services (USCIS). Both news media and general public can
+ find important information about", "dateLastCrawled": "2018-11-16T02:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "News
+ Releases - News - usgs.gov", "url": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "snippet": "Browse through a comprehensive list of all USGS national and state
+ news items.", "dateLastCrawled": "2018-11-16T16:31:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "News | U.S.
+ Mint", "url": "https:\/\/www.usmint.gov\/news", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.usmint.gov\/news", "snippet": "See the latest
+ U.S. Mint news, events, and consumer alerts. Sign up for email updates and
+ see what is going on Inside the Mint.", "dateLastCrawled": "2018-11-18T07:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "News
+ | Homeland Security", "url": "https:\/\/www.dhs.gov\/news", "urlPingSuffix":
+ "DevEx,5106.1", "about": [{"name": "United States Department of Homeland Security"}],
+ "displayUrl": "https:\/\/www.dhs.gov\/news", "snippet": "News and important
+ communications from the Department of Homeland Security.", "dateLastCrawled":
+ "2018-11-15T23:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "News | HHS.gov", "url": "https:\/\/www.hhs.gov\/about\/news\/index.html",
+ "urlPingSuffix": "DevEx,5122.1", "about": [{"name": "United States Department
+ of Health and Human Services"}], "displayUrl": "https:\/\/www.hhs.gov\/about\/news",
+ "snippet": "Latest News Releases. Public Affairs Contacts. Visit our Public
+ Affairs Contacts page to access HHS media information as well as press office
+ contact information for ASPA and HHS operating divisions, staff divisions
+ and regional offices.", "dateLastCrawled": "2018-11-15T22:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "News
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/news\/", "urlPingSuffix":
+ "DevEx,5135.1", "displayUrl": "https:\/\/www.whitehouse.gov\/news", "snippet":
+ "Follow the latest updates from the Trump Administration, including briefings
+ and statements, Presidential actions, and news articles.", "dateLastCrawled":
+ "2018-11-16T01:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "News | Governor Andrew M. Cuomo", "url": "https:\/\/www.governor.ny.gov\/news",
+ "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "Andrew Cuomo"}], "displayUrl":
+ "https:\/\/www.governor.ny.gov\/news", "snippet": "The official website
+ of the 56th Governor of New York State, Andrew M. Cuomo. Find information
+ about the administration, issues, & news that affects you.", "dateLastCrawled":
+ "2018-11-16T12:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "News - USGS", "url": "https:\/\/www.usgs.gov\/news", "urlPingSuffix":
+ "DevEx,5163.1", "displayUrl": "https:\/\/www.usgs.gov\/news", "snippet":
+ "News Dive into the world of science! Read these stories and narratives
+ to learn about news items, hot topics, expeditions underway, and much more.",
+ "dateLastCrawled": "2018-11-09T18:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "News - Federal Aviation Administration", "url": "https:\/\/www.faa.gov\/news\/",
+ "urlPingSuffix": "DevEx,5177.1", "about": [{"name": "Federal Aviation Administration"}],
+ "displayUrl": "https:\/\/www.faa.gov\/news", "snippet": "A simple search
+ will return results that contain all of the specified words in the title or
+ in the body of the news story. The words may appear in any order. A phrase
+ search can be performed by enclosing the search string in quotes.", "dateLastCrawled":
+ "2018-11-16T04:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "News (U.S. National Park Service)", "url": "https:\/\/www.nps.gov\/aboutus\/news\/index.htm",
+ "urlPingSuffix": "DevEx,5191.1", "about": [{"name": "National Park Service"}],
+ "displayUrl": "https:\/\/www.nps.gov\/aboutus\/news", "snippet": "Wondering
+ what''s happening across the National Park Service? This is the place to
+ start. You can find links to news releases, subscribe to receive news
+ in your email, search for images and videos, discover facts and figures about
+ the National Park System, and learn how to contact media staff.", "dateLastCrawled":
+ "2018-10-16T09:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "News - News - Illinois.gov", "url": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "snippet": "News Articles. Passing of Mark A. Braun. Posted: 11\/9\/2018.
+ We regret to announce the passing of Mark A Braun. Mr. Braun was a valued
+ member of the Workers'' Compensation community and a member of the Illinois
+ Trial Lawyers Association.", "dateLastCrawled": "2018-11-15T13:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "News
+ | NIDDK", "url": "https:\/\/www.niddk.nih.gov\/news", "urlPingSuffix": "DevEx,5218.1",
+ "displayUrl": "https:\/\/www.niddk.nih.gov\/news", "snippet": "NIDDK News.
+ News and events from NIDDK-funded research and programs. Media Inquiries.
+ Advances in Health. Aug. 22, 2018. Learn about the new “Diabetes in America,”
+ a preeminent resource for scientific information on diabetes and its complications.",
+ "dateLastCrawled": "2018-11-11T15:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "News | NASA''s ARIA Maps California Wildfires from Space", "url":
+ "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278", "urlPingSuffix":
+ "DevEx,5233.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=ON.46AC640D6871B3F20785619219F1BFF5&pid=5.1&w=80&h=80&c=8",
+ "displayUrl": "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278",
+ "snippet": "The Advanced Rapid Imaging and Analysis (ARIA) team at NASA''s
+ Jet Propulsion Laboratory in Pasadena, California, created these Damage Proxy
+ Maps (DPMs) depicting areas in California likely damaged by the Woolsey and
+ Camp Fires.", "dateLastCrawled": "2018-11-15T21:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "News & Events | National Institutes of Health (NIH)", "url": "https:\/\/www.nih.gov\/news-events",
+ "urlPingSuffix": "DevEx,5245.1", "displayUrl": "https:\/\/www.nih.gov\/news-events",
+ "snippet": "News releases, events, videos, images, social media and outreach,
+ and more from the National Institutes of Health", "dateLastCrawled": "2018-11-15T19:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "News
+ & Events - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/news-events",
+ "urlPingSuffix": "DevEx,5259.1", "displayUrl": "https:\/\/www.cancer.gov\/news-events",
+ "snippet": "The latest cancer news from the U.S. government''s principal
+ agency for cancer research, plus resources designed for science writers and
+ reporters.", "dateLastCrawled": "2018-11-16T05:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "News — FBI", "url": "https:\/\/www.fbi.gov\/news\/", "urlPingSuffix":
+ "DevEx,5272.1", "displayUrl": "https:\/\/www.fbi.gov\/news", "snippet":
+ "Featured News, Latest News, Press Releases, Editor''s Pick and Feature
+ Photos, all the FBI News up to the minute.", "dateLastCrawled": "2018-11-15T05:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "All News",
+ "url": "http:\/\/www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "urlPingSuffix": "DevEx,5284.1", "displayUrl": "www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "snippet": "Maryland Recovers $81 million From Medicaid Technology Contractor
+ Baltimore Sun. Moving Co. Owner Accused of Overcharging Questioned in Court
+ NBCWashington", "dateLastCrawled": "2018-11-13T18:08:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "News | U.S.
+ Department of the Interior", "url": "https:\/\/www.doi.gov\/news", "urlPingSuffix":
+ "DevEx,5297.1", "displayUrl": "https:\/\/www.doi.gov\/news", "snippet":
+ "News from the Office of the Secretary of the Interior.", "dateLastCrawled":
+ "2018-11-16T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "News - Yellowstone National Park (U.S. National Park Service)",
+ "url": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm", "urlPingSuffix":
+ "DevEx,5311.1", "displayUrl": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm",
+ "snippet": "News Releases. Browse our latest news releases or subscribe
+ to our RSS feed.. Social Media. Social media provides a quick and easy way
+ for you to connect with us on a daily basis.. Photos, Sounds & Videos. Browse
+ our library of high-quality, public domain images on Flickr.Explore and download
+ the sounds of Yellowstone in our sound library.Check out our extensive video
+ collection of tours ...", "dateLastCrawled": "2018-09-09T02:38:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:34 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=news%20(site:www.data.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4187'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:34 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3ED4BE424DD56F692984B2EE4C026E6D; path=/; expires=Sat, 14-Dec-2019 22:41:34
+ GMT; domain=bingapis.com
+ - MUIDB=3ED4BE424DD56F692984B2EE4C026E6D; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:34 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:34 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=BFFFDA6AB8674A689EBF388B5C1255E1&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:34 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:34
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=06A481DD60A1688E0B028D71617669CD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:34 GMT; domain=bingapis.com
+ - _SS=SID=06A481DD60A1688E0B028D71617669CD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 01B87E8B857C4D18B4AC96FBE2B15CCF
+ X-Msedge-Clientid:
+ - 3ED4BE424DD56F692984B2EE4C026E6D
+ X-Msapi-Userstate:
+ - 7a7c
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 01B87E8B857C4D18B4AC96FBE2B15CCF Ref B: CO1EDGE0118 Ref C: 2018-11-19T22:41:34Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:33 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=CECC82F34C1843D486F900D6CC496928&CID=3ED4BE424DD56F692984B2EE4C026E6D&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=CECC82F34C1843D486F900D6CC496928&CID=3ED4BE424DD56F692984B2EE4C026E6D&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3awww.data.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5419.1", "totalEstimatedMatches": 195, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "In the
+ News - Data.gov", "url": "https:\/\/www.data.gov\/in-the-news", "urlPingSuffix":
+ "DevEx,5058.1", "displayUrl": "https:\/\/www.data.gov\/in-the-news", "snippet":
+ "Dear Open Data Enthusiasts, Below is an abstract of “Liberating data for
+ public value: The case of Data.gov,” International Journal of Information
+ Management (2016). Abstract. Public agencies around the globe are liberating
+ their data.", "dateLastCrawled": "2018-11-07T18:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Datasets - Data.gov", "url": "https:\/\/www.data.gov\/disasters\/",
+ "urlPingSuffix": "DevEx,5072.1", "displayUrl": "https:\/\/www.data.gov\/disasters",
+ "snippet": "The National Flood Hazard Layer (NFHL) is a compilation of GIS
+ data that comprises a nationwide digital Flood Insurance Rate Map. The GIS
+ data and services are...", "dateLastCrawled": "2018-11-15T19:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Bullying
+ Rates Drop - Data.gov", "url": "https:\/\/www.data.gov\/education\/bullying-rates-drop\/",
+ "urlPingSuffix": "DevEx,5086.1", "displayUrl": "https:\/\/www.data.gov\/education\/bullying-rates-drop",
+ "snippet": "2 Responses to “Bullying Rates Drop” Marilyn June 9, 2015. This
+ is a great news, bullying is one of the major problem in schools.. I just
+ hope that bullying will totally stop.. Thanks for sharing the fb page, I will
+ keep myself updated on the page. Francis August 31, 2015.", "dateLastCrawled":
+ "2018-11-09T11:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "The Legal Entity Identifier (LEI) Is Good News for ...", "url":
+ "https:\/\/www.data.gov\/consumer\/legal-entity-identifier-lei-good-news-financial-technology-developers\/",
+ "urlPingSuffix": "DevEx,5100.1", "displayUrl": "https:\/\/www.data.gov\/consumer\/legal-entity-identifier-lei-good...",
+ "snippet": "The Legal Entity Identifier (LEI) is a unique, 20-digit identifier,
+ like a bar code, that will make it possible to identify all the legal entities
+ involved in the thousands of financial transactions that happen around the
+ world every day — and that’s good news for developers in the field of financial
+ technology.", "dateLastCrawled": "2018-11-13T16:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "In the News - Page 2 of 4 - Data.gov", "url": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/2\/",
+ "urlPingSuffix": "DevEx,5112.1", "displayUrl": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/2",
+ "snippet": "In the News. Obama Calls for ‘Smarter, More Innovative’ Government
+ | PC Mag. July 9, 2013 . The White House has made strides when it comes to
+ embracing technology, Obama said, pointing to his appointment of the nation’s
+ first chief technology officer, opening up federal data via Data.gov (above)
+ and Continued.", "dateLastCrawled": "2018-10-30T18:46:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "In the News
+ - Page 3 of 4 - Data.gov", "url": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/3\/",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/3",
+ "snippet": "The Marine Geology Data Viewer is an interactive map providing
+ access to seafloor and lakebed sediment and rock data archived by NOAA’s
+ National Geophysical Data Center. Layers available on the interactive map:
+ Marine Geology Data Sets & Reports; Index to …", "dateLastCrawled": "2018-11-15T16:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Weather
+ Highlights - Data.gov", "url": "https:\/\/www.data.gov\/weather\/highlights",
+ "urlPingSuffix": "DevEx,5139.1", "displayUrl": "https:\/\/www.data.gov\/weather\/highlights",
+ "snippet": "See this data in action at: The Weather Channel broadcasts weather
+ forecasts and weather-related news over their cable channel and web properties.
+ Climate Corporation offers weather insurance that helps farmers protect their
+ potential profits against bad weather that can cause yield shortfalls.", "dateLastCrawled":
+ "2018-11-04T18:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Weather - Data.gov", "url": "https:\/\/www.data.gov\/weather\/",
+ "urlPingSuffix": "DevEx,5153.1", "displayUrl": "https:\/\/www.data.gov\/weather",
+ "snippet": "See this data in action at: The Weather Channel broadcasts weather
+ forecasts and weather-related news over their cable channel and web properties.
+ Climate Corporation offers weather insurance that helps farmers protect their
+ potential profits against bad weather that can cause yield shortfalls.", "dateLastCrawled":
+ "2018-11-14T02:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "In the News - Data.gov", "url": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/",
+ "urlPingSuffix": "DevEx,5166.1", "displayUrl": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10",
+ "snippet": "The new design for Data.gov, the website that offers a public
+ portal into government data, should make it easier to access and use government
+ data practically, a White House blog post said Tuesday. The blog post offered
+ a sneak peek into Data.gov’s …", "dateLastCrawled": "2018-10-30T10:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Finance
+ - Data.gov", "url": "https:\/\/www.data.gov\/finance\/", "urlPingSuffix":
+ "DevEx,5180.1", "displayUrl": "https:\/\/www.data.gov\/finance", "snippet":
+ "Explore hundreds of free data sets on financial services, including banking,
+ lending, retirement, investments, and insurance. Start using these data
+ sets to build new financial products and services, such as apps that help
+ financial consumers and new models to help make loans to small businesses.",
+ "dateLastCrawled": "2018-11-14T14:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Smart Disclosure Policy Resources - Data.gov", "url": "https:\/\/www.data.gov\/consumer\/smart-disclosure-policy-resources",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.data.gov\/consumer\/smart-disclosure-policy-resources",
+ "snippet": "Federal Smart Disclosure Resources. An Introduction to Smart Disclosure
+ Policy | “Today’s consumers face complex choices, whether they are searching
+ for colleges, health insurance, credit cards, airline flights, or energy providers.
+ It takes time and energy for consumers to seek out the best deal. ... Smart
+ Disclosure in the News. Data ...", "dateLastCrawled": "2018-11-15T22:15:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Conference
+ Presenters - Data.gov", "url": "https:\/\/www.data.gov\/conference\/presenters",
+ "urlPingSuffix": "DevEx,5208.1", "displayUrl": "https:\/\/www.data.gov\/conference\/presenters",
+ "snippet": "Ellen is a regular contributor on ABC’s World News Tonight,
+ C-SPAN, CNN, Washington Post, USA Today, Wired and The Huffington Post. Beth
+ Simone Noveck, Ph.D. U.S. Deputy Chief Technology Officcer", "dateLastCrawled":
+ "2018-11-03T12:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Impact - Data.gov", "url": "https:\/\/www.data.gov\/impact\/",
+ "urlPingSuffix": "DevEx,5222.1", "displayUrl": "https:\/\/www.data.gov\/impact",
+ "snippet": "Free public facing crime mapping and alert website that works
+ similar to a news agency, but deals solely with crime information. Estimated
+ to be the largest aggregator of crime data in the US as well as the largest
+ crime.", "dateLastCrawled": "2018-11-12T21:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "City Apps - Data.gov", "url": "https:\/\/www.data.gov\/cities\/city-apps",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "https:\/\/www.data.gov\/cities\/city-apps",
+ "snippet": "Open Government Data Used: ... Track the current issues most
+ important to you, and keep up with related news. Cast your vote in polls
+ related to today’s issues. Show your support for or opposition to pending
+ legislation. Current Population Survey Voting and Registration Supplement
+ .", "dateLastCrawled": "2018-11-13T15:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Climate - Data.gov", "url": "https:\/\/www.data.gov\/climate\/",
+ "urlPingSuffix": "DevEx,5250.1", "displayUrl": "https:\/\/www.data.gov\/climate",
+ "snippet": "You can currently find data and resources related to coastal
+ flooding, food resilience, water, ecosystem vulnerability, human health, energy
+ infrastructure, transportation and the Arctic region. Over time, you will
+ be able to find additional data and tools relevant to other important climate-related
+ impacts.", "dateLastCrawled": "2018-11-15T08:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Consumer - Data.gov", "url": "https:\/\/www.data.gov\/consumer\/",
+ "urlPingSuffix": "DevEx,5264.1", "displayUrl": "https:\/\/www.data.gov\/consumer",
+ "snippet": "The Consumer Complaint Database contains data from the complaints
+ received by the Consumer Financial Protection Bureau (CFPB) on financial products
+ and services, including bank accounts, credit cards, credit reporting, debt
+ collection, money transfers, mortgages, student loans, and other types of
+ consumer credit.The database contains over 100,000 anonymized complaints and
+ is refreshed daily.", "dateLastCrawled": "2018-11-16T07:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Open
+ Government - Data.gov", "url": "https:\/\/www.data.gov\/open-gov\/", "urlPingSuffix":
+ "DevEx,5276.1", "displayUrl": "https:\/\/www.data.gov\/open-gov", "snippet":
+ "Data.gov is the federal government’s open data site, and aims to make government
+ more open and accountable. Opening government data increases citizen participation
+ in government, creates opportunities for economic development, and informs
+ decision making in both the private and public sectors.", "dateLastCrawled":
+ "2018-11-14T06:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Energy - Page 5 of 9 - Data.gov", "url": "https:\/\/www.data.gov\/energy\/page\/5\/",
+ "urlPingSuffix": "DevEx,5289.1", "displayUrl": "https:\/\/www.data.gov\/energy\/page\/5",
+ "snippet": "This link will direct you to an external website that may have
+ different content and privacy policies from Data.gov.", "dateLastCrawled":
+ "2018-10-28T18:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "A Primer on Machine Readability for Online Documents and ...",
+ "url": "https:\/\/www.data.gov\/developers\/blog\/primer-machine-readability-online-documents-and-data",
+ "urlPingSuffix": "DevEx,5303.1", "displayUrl": "https:\/\/www.data.gov\/developers\/blog\/primer-machine-readability...",
+ "snippet": "Machine Readability for Data. ... It is widely used in applications
+ that publish documents or news items, and then syndicate the basic metadata
+ about that document (title, authors, etc.). ... 4 Responses to “A Primer on
+ Machine Readability for Online Documents and Data” ...", "dateLastCrawled":
+ "2018-11-12T00:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Introducing OpenFDA from the Food and Drug Administration", "url":
+ "https:\/\/www.data.gov\/food\/introducing-openfda-food-drug-administration\/",
+ "urlPingSuffix": "DevEx,5317.1", "displayUrl": "https:\/\/www.data.gov\/food\/introducing-openfda-food-drug-administration",
+ "snippet": "I was wondering if the larger news agencies would team with
+ the Surgeon General, CDC, NIH, or State Public Health Departments to film
+ the public reaction to receiving candy from PPE-suited individuals in a staged
+ bio-containment display, say, in a neighborhood with a very busy flow of Halloween
+ trick-or-treaters, and use the public reaction to ...", "dateLastCrawled":
+ "2018-11-12T01:13:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:34 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=app%20(site:www.data.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3874'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:34 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1FC20585C774602731B20929C6A3617B; path=/; expires=Sat, 14-Dec-2019 22:41:34
+ GMT; domain=bingapis.com
+ - MUIDB=1FC20585C774602731B20929C6A3617B; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:34 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:34 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=5DC787312F614843AF79697D6A1E3968&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:34 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:34
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=08E9262083F7689F10552A8C82206982; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:34 GMT; domain=bingapis.com
+ - _SS=SID=08E9262083F7689F10552A8C82206982; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 8CBDAE563FC548709C655D55424BBC81
+ X-Msedge-Clientid:
+ - 1FC20585C774602731B20929C6A3617B
+ X-Msapi-Userstate:
+ - 575b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 8CBDAE563FC548709C655D55424BBC81 Ref B: CO1EDGE0118 Ref C: 2018-11-19T22:41:34Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:34 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=09AD261251024E81A21F8833EC363C04&CID=1FC20585C774602731B20929C6A3617B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=09AD261251024E81A21F8833EC363C04&CID=1FC20585C774602731B20929C6A3617B&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=app+(site%3awww.data.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5424.1", "totalEstimatedMatches": 19700,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Open government data powers software applications that ...", "url": "https:\/\/www.data.gov\/safety\/safety-apps",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/www.data.gov\/safety\/safety-apps",
+ "snippet": "Be ready for severe weather with Hurricane by American Red Cross
+ – A hurricane tracker app available for iPhone and Android. Monitor conditions
+ in your area or throughout the storm track, prepare your family and home,
+ find help and let others know you are safe even if the power is out – a must
+ have for anyone who lives in an area where a hurricane may strike or has loved
+ ones who do.", "dateLastCrawled": "2018-11-12T07:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Apps & Tools
+ - Data.gov", "url": "https:\/\/www.data.gov\/disasters\/apps-tools\/", "urlPingSuffix":
+ "DevEx,5073.1", "displayUrl": "https:\/\/www.data.gov\/disasters\/apps-tools",
+ "snippet": "Lantern Live is a mobile app that allows users to report the
+ operational status of local gas stations, find fuel, and look up power outage
+ maps from local utilities, while also accessing useful tips and guidelines.",
+ "dateLastCrawled": "2018-11-16T12:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Applications - Data.gov", "url": "https:\/\/www.data.gov\/applications",
+ "urlPingSuffix": "DevEx,5087.1", "displayUrl": "https:\/\/www.data.gov\/applications",
+ "snippet": "This app provides all of the flight and airport information
+ you need to manage your entire day-of travel. GateGuru provides real-time
+ flight status with push notifications along with a wealth of airport content
+ specifically customized to your itinerary.", "dateLastCrawled": "2018-11-14T18:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Apps -
+ Data.gov", "url": "https:\/\/www.data.gov\/application_types\/apps-30\/",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.data.gov\/application_types\/apps-30",
+ "snippet": "With hurricane season kicking off June 1 through November 30,
+ the FEMA app is a comprehensive resource of tools and tips to keep you safe
+ before, during, and after emergencies. Receive weather-related alerts from
+ the U.S. National Weather Service for …", "dateLastCrawled": "2018-10-31T00:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Open government
+ data powers software applications that ...", "url": "https:\/\/www.data.gov\/consumer\/consumer-apps-page",
+ "urlPingSuffix": "DevEx,5115.1", "displayUrl": "https:\/\/www.data.gov\/consumer\/consumer-apps-page",
+ "snippet": "The GoodGuide app can be used while shopping to instantly reveal
+ whether a food product is healthy and produced by green or socially responsible
+ companies. Find safe, healthy, green and ethical product reviews based on
+ scientific ratings.", "dateLastCrawled": "2018-11-05T17:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Open government
+ data powers software applications that ...", "url": "https:\/\/www.data.gov\/food\/food-apps",
+ "urlPingSuffix": "DevEx,5129.1", "displayUrl": "https:\/\/www.data.gov\/food\/food-apps",
+ "snippet": "Fooducate is a free mobile app (Android, iPhone) that empowers
+ supermarket shoppers to make healthy choices effortlessly, enabling consumers
+ to automatically scan the barcodes of food products, and instantly see how
+ nutritious they really are.", "dateLastCrawled": "2018-11-06T02:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "LactMed
+ - Data.gov", "url": "https:\/\/www.data.gov\/applications\/lactmed\/", "urlPingSuffix":
+ "DevEx,5143.1", "displayUrl": "https:\/\/www.data.gov\/applications\/lactmed",
+ "snippet": "LactMed, part of the National Library of Medicine’s (NLM) Toxicology
+ Data Network (TOXNET®), is a database of drugs and dietary supplements that
+ may affect breastfeeding. It includes information on the levels of such substances
+ in breast milk and infant blood, and possible adverse effects in the nursing
+ infant.", "dateLastCrawled": "2018-11-15T23:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Open with Apps - Data.gov", "url": "https:\/\/www.data.gov\/meta\/open-apps\/",
+ "urlPingSuffix": "DevEx,5157.1", "displayUrl": "https:\/\/www.data.gov\/meta\/open-apps",
+ "snippet": "Data.gov now enables the public to open data directly with apps
+ like Plotly and CartoDB for robust visualization and analysis. New tools are
+ making it easier to visualize and analyze data at the click of a button.",
+ "dateLastCrawled": "2018-11-10T11:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Zoc Doc - Data.gov", "url": "https:\/\/www.data.gov\/applications\/zoc-doc\/",
+ "urlPingSuffix": "DevEx,5171.1", "displayUrl": "https:\/\/www.data.gov\/applications\/zoc-doc",
+ "snippet": "ZocDoc is the beginning of a better healthcare experience for
+ millions of patients every month. Find doctors you love, read real reviews,
+ book appointments instantly, and more with this award-winning app.", "dateLastCrawled":
+ "2018-11-10T13:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Open government data powers software applications that ...", "url":
+ "https:\/\/www.data.gov\/energy\/energy-apps", "urlPingSuffix": "DevEx,5185.1",
+ "displayUrl": "https:\/\/www.data.gov\/energy\/energy-apps", "snippet":
+ "Open government data powers software applications that help people make
+ informed decisions on alternative fuels, green buildings, efficiency, and
+ managing household energy.", "dateLastCrawled": "2018-11-13T16:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Super
+ Tracker - Data.gov", "url": "https:\/\/www.data.gov\/food\/applications\/super-tracker",
+ "urlPingSuffix": "DevEx,5199.1", "displayUrl": "https:\/\/www.data.gov\/food\/applications\/super-tracker",
+ "snippet": "Super Tracker. April 25, 2013. My foods. My fitness. My health.
+ Get your personalized nutrition and physical activity plan. Track your foods
+ and physical activities to see how they stack up. Get tips and support to
+ help you make healthier choices and plan ahead. ... Blackberry App Download
+ URL: iOS App Download URL: ...", "dateLastCrawled": "2018-10-29T07:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Open
+ government data powers science and research software ...", "url": "https:\/\/www.data.gov\/research\/research-apps",
+ "urlPingSuffix": "DevEx,5213.1", "displayUrl": "https:\/\/www.data.gov\/research\/research-apps",
+ "snippet": "Data Contact Science & Research While we can’t and don’t endorse
+ specific apps, below are just a few examples of government, citizen, and business
+ tools that: use open government data from the United States; are accessible,
+ vetted, and available; and are, for the majority, free and do not require
+ registration to use.", "dateLastCrawled": "2018-11-15T05:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "City
+ Apps - Data.gov", "url": "https:\/\/www.data.gov\/cities\/city-apps", "urlPingSuffix":
+ "DevEx,5227.1", "displayUrl": "https:\/\/www.data.gov\/cities\/city-apps",
+ "snippet": "Open Government Data Used: ... and Yelp reviews for the 24,000+
+ NYC food locations throughout the five boroughs in an easy-to-use and full-featured
+ App. Know before you go. Directory of Eateries. Food Environment Atlas.
+ Transportation Applications. Roadify", "dateLastCrawled": "2018-11-13T15:05:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Food
+ Applications List - Data.gov", "url": "https:\/\/www.data.gov\/food\/food-apps-list-view",
+ "urlPingSuffix": "DevEx,5239.1", "displayUrl": "https:\/\/www.data.gov\/food\/food-apps-list-view",
+ "snippet": "Fooducate is a free mobile app (Android, iPhone) that empowers
+ supermarket shoppers to make healthy choices effortlessly, enabling consumers
+ to automatically scan the barcodes of food products, and instantly see how
+ nutritious they really are.", "dateLastCrawled": "2018-11-05T11:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "FEMA
+ app - Data.gov", "url": "https:\/\/www.data.gov\/meta\/fema-app\/", "urlPingSuffix":
+ "DevEx,5253.1", "displayUrl": "https:\/\/www.data.gov\/meta\/fema-app",
+ "snippet": "FEMA app May 17, 2016 By Data.gov With hurricane season kicking
+ off June 1 through November 30 , the FEMA app is a comprehensive resource
+ of tools and tips to keep you safe before, during, and after emergencies.",
+ "dateLastCrawled": "2018-11-08T08:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "USDA FoodKeeper - Data.gov", "url": "https:\/\/www.data.gov\/applications\/usda-foodkeeper\/",
+ "urlPingSuffix": "DevEx,5267.1", "displayUrl": "https:\/\/www.data.gov\/applications\/usda-foodkeeper",
+ "snippet": "The FoodKeeper can help consumers use food while at peak quality
+ and reduce waste. The storage times listed are intended as useful guidelines
+ and are not hard-and-fast rules.", "dateLastCrawled": "2018-11-08T11:27:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "FlockPlenty
+ - Chicken Egg Tracker - Data.gov", "url": "https:\/\/www.data.gov\/applications\/flockplenty-chicken-egg-tracker\/",
+ "urlPingSuffix": "DevEx,5281.1", "displayUrl": "https:\/\/www.data.gov\/applications\/flockplenty-chicken-egg-tracker",
+ "snippet": "Rock Feathers April 17, 2016. Nice, useful app. Still needs
+ a few more options though. Need to be able to search within the app. Like
+ find a specific sale or purchase.", "dateLastCrawled": "2018-11-08T13:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "City
+ Data - Data.gov", "url": "https:\/\/www.data.gov\/applications\/city-data\/",
+ "urlPingSuffix": "DevEx,5294.1", "displayUrl": "https:\/\/www.data.gov\/applications\/city-data",
+ "snippet": "In addition to our huge collection of data, we have also created
+ our Top 100 City Lists and Top 101 City Lists. These lists rank cities in
+ hundreds of categories, including income, crime, most gay couples, most cars,
+ shortest commute, biggest houses, best educated residents and many more.",
+ "dateLastCrawled": "2018-11-08T08:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Welcome to the Green Button! - Data.gov", "url": "https:\/\/www.data.gov\/energy\/welcome-green-button",
+ "urlPingSuffix": "DevEx,5308.1", "displayUrl": "https:\/\/www.data.gov\/energy\/welcome-green-button",
+ "snippet": "The app provides several games based on the “shape” of your
+ data, and provides creative comparisons to illustrate your usage, like how
+ many cheeseburgers worth of energy you used last Tuesday from 5-6 pm.", "dateLastCrawled":
+ "2018-11-12T05:06:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Spot Crime - Data.gov", "url": "https:\/\/www.data.gov\/applications\/spot-crime\/",
+ "urlPingSuffix": "DevEx,5322.1", "displayUrl": "https:\/\/www.data.gov\/applications\/spot-crime",
+ "snippet": "Spot Crime May 13, 2015 This web application helps you to search
+ and find any theft, robbery, arrest and other crimes that have recently occurred
+ in your neighborhood.", "dateLastCrawled": "2018-11-07T10:04:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:35 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=news%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:45 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 4711CF8F7D0F46C899BF4849E70437C8
+ Bingapis-Sessionid:
+ - AD045F06B75B44CFB2799D6961428488
+ X-Msedge-Clientid:
+ - '0989743F08406F561CA47893090C6ECC'
+ X-Msapi-Userstate:
+ - 9b8c
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=201,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 4711CF8F7D0F46C899BF4849E70437C8 Ref B: BY3EDGE0421 Ref C: 2018-11-19T22:42:45Z'
+ Apim-Request-Id:
+ - 9ce2dd88-af86-4e83-b83c-e29017c4334e
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:45 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "news
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 30900000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "News | NSF - National Science Foundation", "url": "https:\/\/nsf.gov\/news\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/nsf.gov\/news", "snippet":
+ "NSF''s mission is to advance the progress of science, a mission accomplished
+ by funding proposals for research and education made by scientists, engineers,
+ and educators from across the country.", "dateLastCrawled": "2018-11-15T09:18:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "News - CDTFA", "url": "https:\/\/www.cdtfa.ca.gov\/news\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.cdtfa.ca.gov\/news", "snippet": "News
+ Releases, Notices and Newsletters, Events and Calendar, Public Service Announcements,
+ PSAs ALERT! Acting Governor Gavin Newsom issued emergency proclamations for
+ Los Angeles, Ventura, and Butte counties due to the effects of the Hill, Woolsey,
+ and Camp fires.", "dateLastCrawled": "2018-11-15T12:02:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "News | USCIS", "url": "https:\/\/www.uscis.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.uscis.gov\/news", "snippet": "Here
+ we have the latest news within the immigration benefit world, handled by
+ U.S. Citizenship and Immigration Services (USCIS). Both news media and
+ general public can find important information about", "dateLastCrawled": "2018-11-16T02:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "News Releases - News - usgs.gov", "url": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "snippet": "Browse through a comprehensive list of all USGS national and state
+ news items.", "dateLastCrawled": "2018-11-16T16:31:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "News Around NOAA - National Weather Service", "url": "https:\/\/www.weather.gov\/news\/",
+ "about": [{"name": "National Weather Service"}], "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.weather.gov\/news", "snippet": "November
+ 6, 2018 - The Headline That Wasn''t So many times involving extreme weather,
+ we only hear about events that cause injuries and fatalities, the bad and
+ the ugly, but not times when there were good decisions made and good outcomes.",
+ "dateLastCrawled": "2018-11-13T03:55:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "News - USGS", "url": "https:\/\/www.usgs.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usgs.gov\/news", "snippet": "News
+ Dive into the world of science! Read these stories and narratives to learn
+ about news items, hot topics, expeditions underway, and much more.", "dateLastCrawled":
+ "2018-11-09T18:16:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "News | HHS.gov", "url": "https:\/\/www.hhs.gov\/about\/news\/index.html",
+ "about": [{"name": "United States Department of Health and Human Services"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.hhs.gov\/about\/news",
+ "snippet": "Latest News Releases. Public Affairs Contacts. Visit our Public
+ Affairs Contacts page to access HHS media information as well as press office
+ contact information for ASPA and HHS operating divisions, staff divisions
+ and regional offices.", "dateLastCrawled": "2018-11-15T22:00:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "News | U.S. Mint", "url": "https:\/\/www.usmint.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usmint.gov\/news", "snippet": "See
+ the latest U.S. Mint news, events, and consumer alerts. Sign up for email
+ updates and see what is going on Inside the Mint.", "dateLastCrawled": "2018-11-18T07:01:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "CDCR News | California Department of Corrections ...", "url":
+ "https:\/\/news.cdcr.ca.gov\/", "isFamilyFriendly": true, "displayUrl": "https:\/\/news.cdcr.ca.gov",
+ "snippet": "Official news portal for the California Department of Corrections
+ and Rehabilitation for news releases, external affairs and employee news.",
+ "dateLastCrawled": "2018-11-16T10:37:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "News - Federal Aviation Administration", "url": "https:\/\/www.faa.gov\/news\/",
+ "about": [{"name": "Federal Aviation Administration"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.faa.gov\/news", "snippet": "A simple
+ search will return results that contain all of the specified words in the
+ title or in the body of the news story. The words may appear in any order.
+ A phrase search can be performed by enclosing the search string in quotes.",
+ "dateLastCrawled": "2018-11-16T04:32:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "News - News - Illinois.gov", "url": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "snippet": "News Articles. Passing of Mark A. Braun. Posted: 11\/9\/2018.
+ We regret to announce the passing of Mark A Braun. Mr. Braun was a valued
+ member of the Workers'' Compensation community and a member of the Illinois
+ Trial Lawyers Association.", "dateLastCrawled": "2018-11-15T13:41:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "News | Governor Andrew M. Cuomo", "url": "https:\/\/www.governor.ny.gov\/news",
+ "about": [{"name": "Andrew Cuomo"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.governor.ny.gov\/news", "snippet": "The official website
+ of the 56th Governor of New York State, Andrew M. Cuomo. Find information
+ about the administration, issues, & news that affects you.", "dateLastCrawled":
+ "2018-11-16T12:47:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "News — City of Albuquerque", "url": "http:\/\/www.cabq.gov\/police\/news",
+ "isFamilyFriendly": true, "displayUrl": "www.cabq.gov\/police\/news",
+ "snippet": "Robert Lucero was arrested and charged with Burglary, Aggravated
+ Fleeing and Breaking and Entering. Megan Wharton was arrested and charged
+ with Conspiracy and Breaking and Entering.", "dateLastCrawled": "2018-11-15T15:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "News | Homeland Security", "url": "https:\/\/www.dhs.gov\/news",
+ "about": [{"name": "United States Department of Homeland Security"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.dhs.gov\/news", "snippet": "News
+ and important communications from the Department of Homeland Security.",
+ "dateLastCrawled": "2018-11-15T23:59:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "News Releases - Wisconsin DNR", "url": "https:\/\/dnr.wi.gov\/news\/",
+ "about": [{"name": "Wisconsin Department of Natural Resources"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/dnr.wi.gov\/news", "snippet": "News Resources.
+ Deer baiting\/feeding banned in Florence, Marinette. Other counties have prohibitions;
+ check the county status before you act OCONTO FALLS, Wis. -- Hunters and wildlife
+ observers planning fall and winter outdoor activities in the northeast Wisconsin
+ counties of Marinette and Florence are reminded deer baiting and feeding is
+ ...", "dateLastCrawled": "2018-11-16T03:28:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "News - Yellowstone National Park (U.S. National Park Service)",
+ "url": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm",
+ "snippet": "News Releases. Browse our latest news releases or subscribe
+ to our RSS feed.. Social Media. Social media provides a quick and easy way
+ for you to connect with us on a daily basis.. Photos, Sounds & Videos. Browse
+ our library of high-quality, public domain images on Flickr.Explore and download
+ the sounds of Yellowstone in our sound library.Check out our extensive video
+ collection of tours ...", "dateLastCrawled": "2018-09-09T02:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "News - Glacier National Park (U.S. National Park Service)",
+ "url": "https:\/\/www.nps.gov\/glac\/learn\/news\/index.htm", "about": [{"name":
+ "Glacier National Park"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.nps.gov\/glac\/learn\/news",
+ "snippet": "Glacier National Park provides a few different ways for you
+ to stay connected to what is happening in the park. These options allow for
+ maximum efficiency and allow you to choose how you want to be informed, and
+ how often you want to be informed.", "dateLastCrawled": "2018-09-10T02:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "News | Federal Motor Carrier Safety Administration", "url": "https:\/\/www.fmcsa.dot.gov\/newsroom\/news",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fmcsa.dot.gov\/newsroom\/news",
+ "snippet": "U.S. DEPARTMENT OF TRANSPORTATION. Federal Motor Carrier Safety
+ Administration. 1200 NEW JERSEY AVENUE, SE. WASHINGTON, DC 20590. 855-368-4200",
+ "dateLastCrawled": "2018-11-13T19:40:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Newsroom | Internal Revenue Service", "url": "https:\/\/www.irs.gov\/newsroom",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.irs.gov\/newsroom",
+ "snippet": "Provides the latest news and information about the IRS.", "dateLastCrawled":
+ "2018-11-07T14:34:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "WisconnValley News", "url": "https:\/\/wisconnvalley.wi.gov\/Pages\/news.aspx",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/wisconnvalley.wi.gov\/Pages\/news.aspx",
+ "snippet": "Wisconn Valley News - Published November 9, 2018 Wisconn Valley
+ News - Published October 26, 2018 Special Bulletin: Wisconn Valley News
+ - Published October 23, 2018", "dateLastCrawled": "2018-11-15T11:28:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:46 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=news%20(site:www.data.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:46 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 6ABE956E6F7C4A7FA061215CE33AC0AE
+ Bingapis-Sessionid:
+ - F2A7A84385FE4EB9855EBA5548CE8922
+ X-Msedge-Clientid:
+ - 17A04A22CA026C392A29468ECB4E6D59
+ X-Msapi-Userstate:
+ - '5476'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=157,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 6ABE956E6F7C4A7FA061215CE33AC0AE Ref B: BY3EDGE0110 Ref C: 2018-11-19T22:42:46Z'
+ Apim-Request-Id:
+ - e4624f02-fa68-48b5-b53f-5e384176e244
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:46 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "news
+ (site:www.data.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3awww.data.gov%2f)",
+ "totalEstimatedMatches": 195, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "In the News - Data.gov", "url": "https:\/\/www.data.gov\/in-the-news",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/in-the-news",
+ "snippet": "Dear Open Data Enthusiasts, Below is an abstract of “Liberating
+ data for public value: The case of Data.gov,” International Journal of Information
+ Management (2016). Abstract. Public agencies around the globe are liberating
+ their data.", "dateLastCrawled": "2018-11-07T18:41:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Datasets - Data.gov", "url": "https:\/\/www.data.gov\/disasters\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/disasters",
+ "snippet": "The National Flood Hazard Layer (NFHL) is a compilation of GIS
+ data that comprises a nationwide digital Flood Insurance Rate Map. The GIS
+ data and services are...", "dateLastCrawled": "2018-11-15T19:22:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Bullying Rates Drop - Data.gov", "url": "https:\/\/www.data.gov\/education\/bullying-rates-drop\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/education\/bullying-rates-drop",
+ "snippet": "2 Responses to “Bullying Rates Drop” Marilyn June 9, 2015. This
+ is a great news, bullying is one of the major problem in schools.. I just
+ hope that bullying will totally stop.. Thanks for sharing the fb page, I will
+ keep myself updated on the page. Francis August 31, 2015.", "dateLastCrawled":
+ "2018-11-09T11:45:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "The Legal Entity Identifier (LEI) Is Good News for ...", "url": "https:\/\/www.data.gov\/consumer\/legal-entity-identifier-lei-good-news-financial-technology-developers\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/consumer\/legal-entity-identifier-lei-good...",
+ "snippet": "The Legal Entity Identifier (LEI) is a unique, 20-digit identifier,
+ like a bar code, that will make it possible to identify all the legal entities
+ involved in the thousands of financial transactions that happen around the
+ world every day — and that’s good news for developers in the field of financial
+ technology.", "dateLastCrawled": "2018-11-13T16:20:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "In the News - Page 2 of 4 - Data.gov", "url": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/2\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/2",
+ "snippet": "In the News. Obama Calls for ‘Smarter, More Innovative’ Government
+ | PC Mag. July 9, 2013 . The White House has made strides when it comes to
+ embracing technology, Obama said, pointing to his appointment of the nation’s
+ first chief technology officer, opening up federal data via Data.gov (above)
+ and Continued.", "dateLastCrawled": "2018-10-30T18:46:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "In the News - Page 3 of 4 - Data.gov", "url": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/3\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/page\/3",
+ "snippet": "The Marine Geology Data Viewer is an interactive map providing
+ access to seafloor and lakebed sediment and rock data archived by NOAA’s
+ National Geophysical Data Center. Layers available on the interactive map:
+ Marine Geology Data Sets & Reports; Index to …", "dateLastCrawled": "2018-11-15T16:01:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Weather Highlights - Data.gov", "url": "https:\/\/www.data.gov\/weather\/highlights",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/weather\/highlights",
+ "snippet": "See this data in action at: The Weather Channel broadcasts weather
+ forecasts and weather-related news over their cable channel and web properties.
+ Climate Corporation offers weather insurance that helps farmers protect their
+ potential profits against bad weather that can cause yield shortfalls.", "dateLastCrawled":
+ "2018-11-04T18:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "Weather - Data.gov", "url": "https:\/\/www.data.gov\/weather\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.data.gov\/weather", "snippet": "See this
+ data in action at: The Weather Channel broadcasts weather forecasts and
+ weather-related news over their cable channel and web properties. Climate
+ Corporation offers weather insurance that helps farmers protect their potential
+ profits against bad weather that can cause yield shortfalls.", "dateLastCrawled":
+ "2018-11-14T02:10:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "In the News - Data.gov", "url": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/announcements_and_news\/in_the_news-10",
+ "snippet": "The new design for Data.gov, the website that offers a public
+ portal into government data, should make it easier to access and use government
+ data practically, a White House blog post said Tuesday. The blog post offered
+ a sneak peek into Data.gov’s …", "dateLastCrawled": "2018-10-30T10:43:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Finance - Data.gov", "url": "https:\/\/www.data.gov\/finance\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/finance",
+ "snippet": "Explore hundreds of free data sets on financial services, including
+ banking, lending, retirement, investments, and insurance. Start using these
+ data sets to build new financial products and services, such as apps that
+ help financial consumers and new models to help make loans to small businesses.",
+ "dateLastCrawled": "2018-11-14T14:09:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Smart Disclosure Policy Resources - Data.gov", "url": "https:\/\/www.data.gov\/consumer\/smart-disclosure-policy-resources",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/consumer\/smart-disclosure-policy-resources",
+ "snippet": "Federal Smart Disclosure Resources. An Introduction to Smart Disclosure
+ Policy | “Today’s consumers face complex choices, whether they are searching
+ for colleges, health insurance, credit cards, airline flights, or energy providers.
+ It takes time and energy for consumers to seek out the best deal. ... Smart
+ Disclosure in the News. Data ...", "dateLastCrawled": "2018-11-15T22:15:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Conference Presenters - Data.gov", "url": "https:\/\/www.data.gov\/conference\/presenters",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/conference\/presenters",
+ "snippet": "Ellen is a regular contributor on ABC’s World News Tonight,
+ C-SPAN, CNN, Washington Post, USA Today, Wired and The Huffington Post. Beth
+ Simone Noveck, Ph.D. U.S. Deputy Chief Technology Officcer", "dateLastCrawled":
+ "2018-11-03T12:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Impact - Data.gov", "url": "https:\/\/www.data.gov\/impact\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.data.gov\/impact", "snippet": "Free public
+ facing crime mapping and alert website that works similar to a news agency,
+ but deals solely with crime information. Estimated to be the largest aggregator
+ of crime data in the US as well as the largest crime.", "dateLastCrawled":
+ "2018-11-12T21:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "City Apps - Data.gov", "url": "https:\/\/www.data.gov\/cities\/city-apps",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/cities\/city-apps",
+ "snippet": "Open Government Data Used: ... Track the current issues most
+ important to you, and keep up with related news. Cast your vote in polls
+ related to today’s issues. Show your support for or opposition to pending
+ legislation. Current Population Survey Voting and Registration Supplement
+ .", "dateLastCrawled": "2018-11-13T15:05:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Climate - Data.gov", "url": "https:\/\/www.data.gov\/climate\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/climate",
+ "snippet": "You can currently find data and resources related to coastal
+ flooding, food resilience, water, ecosystem vulnerability, human health, energy
+ infrastructure, transportation and the Arctic region. Over time, you will
+ be able to find additional data and tools relevant to other important climate-related
+ impacts.", "dateLastCrawled": "2018-11-15T08:23:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Consumer - Data.gov", "url": "https:\/\/www.data.gov\/consumer\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/consumer",
+ "snippet": "The Consumer Complaint Database contains data from the complaints
+ received by the Consumer Financial Protection Bureau (CFPB) on financial products
+ and services, including bank accounts, credit cards, credit reporting, debt
+ collection, money transfers, mortgages, student loans, and other types of
+ consumer credit.The database contains over 100,000 anonymized complaints and
+ is refreshed daily.", "dateLastCrawled": "2018-11-16T07:32:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Open Government - Data.gov", "url": "https:\/\/www.data.gov\/open-gov\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/open-gov",
+ "snippet": "Data.gov is the federal government’s open data site, and aims
+ to make government more open and accountable. Opening government data increases
+ citizen participation in government, creates opportunities for economic development,
+ and informs decision making in both the private and public sectors.", "dateLastCrawled":
+ "2018-11-14T06:34:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Energy - Page 5 of 9 - Data.gov", "url": "https:\/\/www.data.gov\/energy\/page\/5\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/energy\/page\/5",
+ "snippet": "This link will direct you to an external website that may have
+ different content and privacy policies from Data.gov.", "dateLastCrawled":
+ "2018-10-28T18:46:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18", "name":
+ "A Primer on Machine Readability for Online Documents and ...", "url": "https:\/\/www.data.gov\/developers\/blog\/primer-machine-readability-online-documents-and-data",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/developers\/blog\/primer-machine-readability...",
+ "snippet": "Machine Readability for Data. ... It is widely used in applications
+ that publish documents or news items, and then syndicate the basic metadata
+ about that document (title, authors, etc.). ... 4 Responses to “A Primer on
+ Machine Readability for Online Documents and Data” ...", "dateLastCrawled":
+ "2018-11-12T00:26:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "Introducing OpenFDA from the Food and Drug Administration", "url": "https:\/\/www.data.gov\/food\/introducing-openfda-food-drug-administration\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/food\/introducing-openfda-food-drug-administration",
+ "snippet": "I was wondering if the larger news agencies would team with
+ the Surgeon General, CDC, NIH, or State Public Health Departments to film
+ the public reaction to receiving candy from PPE-suited individuals in a staged
+ bio-containment display, say, in a neighborhood with a very busy flow of Halloween
+ trick-or-treaters, and use the public reaction to ...", "dateLastCrawled":
+ "2018-11-12T01:13:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:47 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=app%20(site:www.data.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:47 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 1859CA24E8C349DAB25D98D1A87FC29D
+ Bingapis-Sessionid:
+ - B5FFD2FE25284BA6942CDFB2CA113766
+ X-Msedge-Clientid:
+ - 2CB17800FF616F181F8974ACFE2D6EB5
+ X-Msapi-Userstate:
+ - 49d9
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=187,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 1859CA24E8C349DAB25D98D1A87FC29D Ref B: BY3EDGE0317 Ref C: 2018-11-19T22:42:47Z'
+ Apim-Request-Id:
+ - d07e8a4d-63b1-4690-931b-5f50fa148a29
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:46 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "app
+ (site:www.data.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=app+(site%3awww.data.gov%2f)",
+ "totalEstimatedMatches": 19700, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Open government data powers software applications that ...", "url":
+ "https:\/\/www.data.gov\/safety\/safety-apps", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.data.gov\/safety\/safety-apps", "snippet": "Be ready for
+ severe weather with Hurricane by American Red Cross – A hurricane tracker
+ app available for iPhone and Android. Monitor conditions in your area or
+ throughout the storm track, prepare your family and home, find help and let
+ others know you are safe even if the power is out – a must have for anyone
+ who lives in an area where a hurricane may strike or has loved ones who do.",
+ "dateLastCrawled": "2018-11-12T07:18:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Apps & Tools - Data.gov", "url": "https:\/\/www.data.gov\/disasters\/apps-tools\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/disasters\/apps-tools",
+ "snippet": "Lantern Live is a mobile app that allows users to report the
+ operational status of local gas stations, find fuel, and look up power outage
+ maps from local utilities, while also accessing useful tips and guidelines.",
+ "dateLastCrawled": "2018-11-16T12:47:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Applications - Data.gov", "url": "https:\/\/www.data.gov\/applications",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications",
+ "snippet": "This app provides all of the flight and airport information
+ you need to manage your entire day-of travel. GateGuru provides real-time
+ flight status with push notifications along with a wealth of airport content
+ specifically customized to your itinerary.", "dateLastCrawled": "2018-11-14T18:20:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Apps - Data.gov", "url": "https:\/\/www.data.gov\/application_types\/apps-30\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/application_types\/apps-30",
+ "snippet": "With hurricane season kicking off June 1 through November 30,
+ the FEMA app is a comprehensive resource of tools and tips to keep you safe
+ before, during, and after emergencies. Receive weather-related alerts from
+ the U.S. National Weather Service for …", "dateLastCrawled": "2018-10-31T00:59:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Open government data powers software applications that ...", "url":
+ "https:\/\/www.data.gov\/consumer\/consumer-apps-page", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.data.gov\/consumer\/consumer-apps-page",
+ "snippet": "The GoodGuide app can be used while shopping to instantly reveal
+ whether a food product is healthy and produced by green or socially responsible
+ companies. Find safe, healthy, green and ethical product reviews based on
+ scientific ratings.", "dateLastCrawled": "2018-11-05T17:43:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Open government data powers software applications that ...", "url":
+ "https:\/\/www.data.gov\/food\/food-apps", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.data.gov\/food\/food-apps", "snippet": "Fooducate is a
+ free mobile app (Android, iPhone) that empowers supermarket shoppers to
+ make healthy choices effortlessly, enabling consumers to automatically scan
+ the barcodes of food products, and instantly see how nutritious they really
+ are.", "dateLastCrawled": "2018-11-06T02:50:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "LactMed - Data.gov", "url": "https:\/\/www.data.gov\/applications\/lactmed\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications\/lactmed",
+ "snippet": "LactMed, part of the National Library of Medicine’s (NLM) Toxicology
+ Data Network (TOXNET®), is a database of drugs and dietary supplements that
+ may affect breastfeeding. It includes information on the levels of such substances
+ in breast milk and infant blood, and possible adverse effects in the nursing
+ infant.", "dateLastCrawled": "2018-11-15T23:49:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Open with Apps - Data.gov", "url": "https:\/\/www.data.gov\/meta\/open-apps\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/meta\/open-apps",
+ "snippet": "Data.gov now enables the public to open data directly with apps
+ like Plotly and CartoDB for robust visualization and analysis. New tools are
+ making it easier to visualize and analyze data at the click of a button.",
+ "dateLastCrawled": "2018-11-10T11:26:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Zoc Doc - Data.gov", "url": "https:\/\/www.data.gov\/applications\/zoc-doc\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications\/zoc-doc",
+ "snippet": "ZocDoc is the beginning of a better healthcare experience for
+ millions of patients every month. Find doctors you love, read real reviews,
+ book appointments instantly, and more with this award-winning app.", "dateLastCrawled":
+ "2018-11-10T13:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Open government data powers software applications that ...", "url": "https:\/\/www.data.gov\/energy\/energy-apps",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/energy\/energy-apps",
+ "snippet": "Open government data powers software applications that help
+ people make informed decisions on alternative fuels, green buildings, efficiency,
+ and managing household energy.", "dateLastCrawled": "2018-11-13T16:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Super Tracker - Data.gov", "url": "https:\/\/www.data.gov\/food\/applications\/super-tracker",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/food\/applications\/super-tracker",
+ "snippet": "Super Tracker. April 25, 2013. My foods. My fitness. My health.
+ Get your personalized nutrition and physical activity plan. Track your foods
+ and physical activities to see how they stack up. Get tips and support to
+ help you make healthier choices and plan ahead. ... Blackberry App Download
+ URL: iOS App Download URL: ...", "dateLastCrawled": "2018-10-29T07:16:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Open government data powers science and research software ...",
+ "url": "https:\/\/www.data.gov\/research\/research-apps", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.data.gov\/research\/research-apps",
+ "snippet": "Data Contact Science & Research While we can’t and don’t endorse
+ specific apps, below are just a few examples of government, citizen, and business
+ tools that: use open government data from the United States; are accessible,
+ vetted, and available; and are, for the majority, free and do not require
+ registration to use.", "dateLastCrawled": "2018-11-15T05:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "City Apps - Data.gov", "url": "https:\/\/www.data.gov\/cities\/city-apps",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/cities\/city-apps",
+ "snippet": "Open Government Data Used: ... and Yelp reviews for the 24,000+
+ NYC food locations throughout the five boroughs in an easy-to-use and full-featured
+ App. Know before you go. Directory of Eateries. Food Environment Atlas.
+ Transportation Applications. Roadify", "dateLastCrawled": "2018-11-13T15:05:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Food Applications List - Data.gov", "url": "https:\/\/www.data.gov\/food\/food-apps-list-view",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/food\/food-apps-list-view",
+ "snippet": "Fooducate is a free mobile app (Android, iPhone) that empowers
+ supermarket shoppers to make healthy choices effortlessly, enabling consumers
+ to automatically scan the barcodes of food products, and instantly see how
+ nutritious they really are.", "dateLastCrawled": "2018-11-05T11:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "FEMA app - Data.gov", "url": "https:\/\/www.data.gov\/meta\/fema-app\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/meta\/fema-app",
+ "snippet": "FEMA app May 17, 2016 By Data.gov With hurricane season kicking
+ off June 1 through November 30 , the FEMA app is a comprehensive resource
+ of tools and tips to keep you safe before, during, and after emergencies.",
+ "dateLastCrawled": "2018-11-08T08:40:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "USDA FoodKeeper - Data.gov", "url": "https:\/\/www.data.gov\/applications\/usda-foodkeeper\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications\/usda-foodkeeper",
+ "snippet": "The FoodKeeper can help consumers use food while at peak quality
+ and reduce waste. The storage times listed are intended as useful guidelines
+ and are not hard-and-fast rules.", "dateLastCrawled": "2018-11-08T11:27:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "FlockPlenty - Chicken Egg Tracker - Data.gov", "url": "https:\/\/www.data.gov\/applications\/flockplenty-chicken-egg-tracker\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications\/flockplenty-chicken-egg-tracker",
+ "snippet": "Rock Feathers April 17, 2016. Nice, useful app. Still needs
+ a few more options though. Need to be able to search within the app. Like
+ find a specific sale or purchase.", "dateLastCrawled": "2018-11-08T13:13:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "City Data - Data.gov", "url": "https:\/\/www.data.gov\/applications\/city-data\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications\/city-data",
+ "snippet": "In addition to our huge collection of data, we have also created
+ our Top 100 City Lists and Top 101 City Lists. These lists rank cities in
+ hundreds of categories, including income, crime, most gay couples, most cars,
+ shortest commute, biggest houses, best educated residents and many more.",
+ "dateLastCrawled": "2018-11-08T08:43:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Welcome to the Green Button! - Data.gov", "url": "https:\/\/www.data.gov\/energy\/welcome-green-button",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/energy\/welcome-green-button",
+ "snippet": "The app provides several games based on the “shape” of your
+ data, and provides creative comparisons to illustrate your usage, like how
+ many cheeseburgers worth of energy you used last Tuesday from 5-6 pm.", "dateLastCrawled":
+ "2018-11-12T05:06:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "Spot Crime - Data.gov", "url": "https:\/\/www.data.gov\/applications\/spot-crime\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.data.gov\/applications\/spot-crime",
+ "snippet": "Spot Crime May 13, 2015 This web application helps you to search
+ and find any theft, robbery, arrest and other crimes that have recently occurred
+ in your neighborhood.", "dateLastCrawled": "2018-11-07T10:04:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:47 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_without_dropdown_menu.yml b/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_without_dropdown_menu.yml
index 5da96c88a9..c6b6579625 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_without_dropdown_menu.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Site_navigations_without_dropdown_menu.yml
@@ -485,4 +485,1039 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:54 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=news%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3516'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:30 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1F63D069E88C6B1C375FDCC5E95B6AB7; path=/; expires=Sat, 14-Dec-2019 22:41:30
+ GMT; domain=bingapis.com
+ - MUIDB=1F63D069E88C6B1C375FDCC5E95B6AB7; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:30 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:30 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=60C70B3ABFE241A5868DC3E19BD7FD7F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:30 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:30
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=17F3EF0C035C66672959E3A0028B67CD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:30 GMT; domain=bingapis.com
+ - _SS=SID=17F3EF0C035C66672959E3A0028B67CD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BF272AC00AC3405FAA694E869511C9C1
+ X-Msedge-Clientid:
+ - 1F63D069E88C6B1C375FDCC5E95B6AB7
+ X-Msapi-Userstate:
+ - ab08
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BF272AC00AC3405FAA694E869511C9C1 Ref B: CO1EDGE0415 Ref C: 2018-11-19T22:41:30Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:30 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D5DD81D803734CF0B98B59029065978C&CID=1F63D069E88C6B1C375FDCC5E95B6AB7&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D5DD81D803734CF0B98B59029065978C&CID=1F63D069E88C6B1C375FDCC5E95B6AB7&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5411.1", "totalEstimatedMatches": 30900000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "News | NSF - National Science Foundation", "url": "https:\/\/nsf.gov\/news\/",
+ "urlPingSuffix": "DevEx,5059.1", "displayUrl": "https:\/\/nsf.gov\/news",
+ "snippet": "NSF''s mission is to advance the progress of science, a mission
+ accomplished by funding proposals for research and education made by scientists,
+ engineers, and educators from across the country.", "dateLastCrawled": "2018-11-15T09:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "News
+ | USCIS", "url": "https:\/\/www.uscis.gov\/news", "urlPingSuffix": "DevEx,5073.1",
+ "displayUrl": "https:\/\/www.uscis.gov\/news", "snippet": "Here we have
+ the latest news within the immigration benefit world, handled by U.S. Citizenship
+ and Immigration Services (USCIS). Both news media and general public can
+ find important information about", "dateLastCrawled": "2018-11-16T02:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "News
+ Releases - News - usgs.gov", "url": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "snippet": "Browse through a comprehensive list of all USGS national and state
+ news items.", "dateLastCrawled": "2018-11-16T16:31:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "News | U.S.
+ Mint", "url": "https:\/\/www.usmint.gov\/news", "urlPingSuffix": "DevEx,5093.1",
+ "displayUrl": "https:\/\/www.usmint.gov\/news", "snippet": "See the latest
+ U.S. Mint news, events, and consumer alerts. Sign up for email updates and
+ see what is going on Inside the Mint.", "dateLastCrawled": "2018-11-18T07:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "News
+ | Homeland Security", "url": "https:\/\/www.dhs.gov\/news", "urlPingSuffix":
+ "DevEx,5106.1", "about": [{"name": "United States Department of Homeland Security"}],
+ "displayUrl": "https:\/\/www.dhs.gov\/news", "snippet": "News and important
+ communications from the Department of Homeland Security.", "dateLastCrawled":
+ "2018-11-15T23:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "News | HHS.gov", "url": "https:\/\/www.hhs.gov\/about\/news\/index.html",
+ "urlPingSuffix": "DevEx,5122.1", "about": [{"name": "United States Department
+ of Health and Human Services"}], "displayUrl": "https:\/\/www.hhs.gov\/about\/news",
+ "snippet": "Latest News Releases. Public Affairs Contacts. Visit our Public
+ Affairs Contacts page to access HHS media information as well as press office
+ contact information for ASPA and HHS operating divisions, staff divisions
+ and regional offices.", "dateLastCrawled": "2018-11-15T22:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "News
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/news\/", "urlPingSuffix":
+ "DevEx,5135.1", "displayUrl": "https:\/\/www.whitehouse.gov\/news", "snippet":
+ "Follow the latest updates from the Trump Administration, including briefings
+ and statements, Presidential actions, and news articles.", "dateLastCrawled":
+ "2018-11-16T01:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "News | Governor Andrew M. Cuomo", "url": "https:\/\/www.governor.ny.gov\/news",
+ "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "Andrew Cuomo"}], "displayUrl":
+ "https:\/\/www.governor.ny.gov\/news", "snippet": "The official website
+ of the 56th Governor of New York State, Andrew M. Cuomo. Find information
+ about the administration, issues, & news that affects you.", "dateLastCrawled":
+ "2018-11-16T12:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "News - USGS", "url": "https:\/\/www.usgs.gov\/news", "urlPingSuffix":
+ "DevEx,5163.1", "displayUrl": "https:\/\/www.usgs.gov\/news", "snippet":
+ "News Dive into the world of science! Read these stories and narratives
+ to learn about news items, hot topics, expeditions underway, and much more.",
+ "dateLastCrawled": "2018-11-09T18:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "News - Federal Aviation Administration", "url": "https:\/\/www.faa.gov\/news\/",
+ "urlPingSuffix": "DevEx,5177.1", "about": [{"name": "Federal Aviation Administration"}],
+ "displayUrl": "https:\/\/www.faa.gov\/news", "snippet": "A simple search
+ will return results that contain all of the specified words in the title or
+ in the body of the news story. The words may appear in any order. A phrase
+ search can be performed by enclosing the search string in quotes.", "dateLastCrawled":
+ "2018-11-16T04:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "News (U.S. National Park Service)", "url": "https:\/\/www.nps.gov\/aboutus\/news\/index.htm",
+ "urlPingSuffix": "DevEx,5191.1", "about": [{"name": "National Park Service"}],
+ "displayUrl": "https:\/\/www.nps.gov\/aboutus\/news", "snippet": "Wondering
+ what''s happening across the National Park Service? This is the place to
+ start. You can find links to news releases, subscribe to receive news
+ in your email, search for images and videos, discover facts and figures about
+ the National Park System, and learn how to contact media staff.", "dateLastCrawled":
+ "2018-10-16T09:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "News - News - Illinois.gov", "url": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "snippet": "News Articles. Passing of Mark A. Braun. Posted: 11\/9\/2018.
+ We regret to announce the passing of Mark A Braun. Mr. Braun was a valued
+ member of the Workers'' Compensation community and a member of the Illinois
+ Trial Lawyers Association.", "dateLastCrawled": "2018-11-15T13:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "News
+ | NIDDK", "url": "https:\/\/www.niddk.nih.gov\/news", "urlPingSuffix": "DevEx,5218.1",
+ "displayUrl": "https:\/\/www.niddk.nih.gov\/news", "snippet": "NIDDK News.
+ News and events from NIDDK-funded research and programs. Media Inquiries.
+ Advances in Health. Aug. 22, 2018. Learn about the new “Diabetes in America,”
+ a preeminent resource for scientific information on diabetes and its complications.",
+ "dateLastCrawled": "2018-11-11T15:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "News | NASA''s ARIA Maps California Wildfires from Space", "url":
+ "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278", "urlPingSuffix":
+ "DevEx,5233.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=ON.46AC640D6871B3F20785619219F1BFF5&pid=5.1&w=80&h=80&c=8",
+ "displayUrl": "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278",
+ "snippet": "The Advanced Rapid Imaging and Analysis (ARIA) team at NASA''s
+ Jet Propulsion Laboratory in Pasadena, California, created these Damage Proxy
+ Maps (DPMs) depicting areas in California likely damaged by the Woolsey and
+ Camp Fires.", "dateLastCrawled": "2018-11-15T21:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "News & Events | National Institutes of Health (NIH)", "url": "https:\/\/www.nih.gov\/news-events",
+ "urlPingSuffix": "DevEx,5245.1", "displayUrl": "https:\/\/www.nih.gov\/news-events",
+ "snippet": "News releases, events, videos, images, social media and outreach,
+ and more from the National Institutes of Health", "dateLastCrawled": "2018-11-15T19:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "News
+ & Events - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/news-events",
+ "urlPingSuffix": "DevEx,5259.1", "displayUrl": "https:\/\/www.cancer.gov\/news-events",
+ "snippet": "The latest cancer news from the U.S. government''s principal
+ agency for cancer research, plus resources designed for science writers and
+ reporters.", "dateLastCrawled": "2018-11-16T05:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "News — FBI", "url": "https:\/\/www.fbi.gov\/news\/", "urlPingSuffix":
+ "DevEx,5272.1", "displayUrl": "https:\/\/www.fbi.gov\/news", "snippet":
+ "Featured News, Latest News, Press Releases, Editor''s Pick and Feature
+ Photos, all the FBI News up to the minute.", "dateLastCrawled": "2018-11-15T05:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "All News",
+ "url": "http:\/\/www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "urlPingSuffix": "DevEx,5284.1", "displayUrl": "www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "snippet": "Maryland Recovers $81 million From Medicaid Technology Contractor
+ Baltimore Sun. Moving Co. Owner Accused of Overcharging Questioned in Court
+ NBCWashington", "dateLastCrawled": "2018-11-13T18:08:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "News | U.S.
+ Department of the Interior", "url": "https:\/\/www.doi.gov\/news", "urlPingSuffix":
+ "DevEx,5297.1", "displayUrl": "https:\/\/www.doi.gov\/news", "snippet":
+ "News from the Office of the Secretary of the Interior.", "dateLastCrawled":
+ "2018-11-16T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "News - Yellowstone National Park (U.S. National Park Service)",
+ "url": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm", "urlPingSuffix":
+ "DevEx,5311.1", "displayUrl": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm",
+ "snippet": "News Releases. Browse our latest news releases or subscribe
+ to our RSS feed.. Social Media. Social media provides a quick and easy way
+ for you to connect with us on a daily basis.. Photos, Sounds & Videos. Browse
+ our library of high-quality, public domain images on Flickr.Explore and download
+ the sounds of Yellowstone in our sound library.Check out our extensive video
+ collection of tours ...", "dateLastCrawled": "2018-09-09T02:38:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:30 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=news%20(site:blog.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2688'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:31 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=202DED86479362622020E12A4644639E; path=/; expires=Sat, 14-Dec-2019 22:41:31
+ GMT; domain=bingapis.com
+ - MUIDB=202DED86479362622020E12A4644639E; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:31 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:31 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=57B08682DC1349C59B23C62C88470246&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:31 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:31
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=16406FC3C45A6F990EF3636FC58D6E93; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:31 GMT; domain=bingapis.com
+ - _SS=SID=16406FC3C45A6F990EF3636FC58D6E93; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - E2953DEEC36C47AEB1628D198580E543
+ X-Msedge-Clientid:
+ - 202DED86479362622020E12A4644639E
+ X-Msapi-Userstate:
+ - ea58
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: E2953DEEC36C47AEB1628D198580E543 Ref B: CO1EDGE0522 Ref C: 2018-11-19T22:41:31Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:30 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=88BFAE31D7FB441C825792F5C063C937&CID=202DED86479362622020E12A4644639E&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=88BFAE31D7FB441C825792F5C063C937&CID=202DED86479362622020E12A4644639E&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3ablog.usa.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "totalEstimatedMatches": 10, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "USA.gov
+ Blog", "url": "https:\/\/blog.usa.gov\/", "urlPingSuffix": "DevEx,5047.1",
+ "displayUrl": "https:\/\/blog.usa.gov", "snippet": "The Emerging Leaders Program
+ (ELP) at GSA is a two-year Pathways program for recent graduates to transition
+ from college to a career in government. Each participant rotates through up
+ to seven different offices within the agency, working closely with team members
+ and learning about the work before being permanently placed.", "dateLastCrawled":
+ "2018-11-14T12:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Five Communication Tactics We Used During the 2017 ...", "url":
+ "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the-2017-hurricane-season",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the...",
+ "snippet": "In 2017, it was nearly impossible to turn on the news or go
+ on social media without hearing stories about hurricanes across Texas, Florida,
+ the U.S. Virgin Islands, and Puerto Rico.", "dateLastCrawled": "2018-11-07T03:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "The USAGov
+ Contact Center Connects the Public to Answers ...", "url": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public-to-answers-from-government",
+ "urlPingSuffix": "DevEx,5075.1", "displayUrl": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public...",
+ "snippet": "As news of the attacks spread, the number of people unable to
+ get in touch with family and friends in Paris grew. Over the next four days,
+ agents at the Contact Center worked the phones 24 hours a day, comforting
+ and connecting more than 600 callers with information to locate their loved
+ ones overseas.", "dateLastCrawled": "2018-11-09T13:05:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Blog | USAGov",
+ "url": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "urlPingSuffix": "DevEx,5087.1", "displayUrl": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "snippet": "Email is an easy, time-saving way for us to connect the public
+ with government information and services. We strive to provide clear information
+ about relevant topics to our more than 850,000 subscribers, in hopes that
+ our emails will stand out in inboxes overflowing with news alerts and sales
+ offers.", "dateLastCrawled": "2018-10-31T17:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning-strategies-and-process",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning...",
+ "snippet": "We also read hundreds of news stories, about consumers facing
+ poor customer service, deceptive clauses hidden in the finest of print, or
+ fraudulent offers that seem too good to be true. Not all consumer issues are
+ addressed at the federal level.", "dateLastCrawled": "2018-10-26T10:27:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Blog |
+ USAGov", "url": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better-serve-our-nation-s-businesses",
+ "urlPingSuffix": "DevEx,5115.1", "displayUrl": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better...",
+ "snippet": "In the meantime, you can stay in the loop with business news
+ on the BusinessUSA Twitter account, and get updates on the website integration
+ project and all things USAGov by signing up to our blog. Ryan Edelstein is
+ the director of content and outreach at USAGov.", "dateLastCrawled": "2018-10-17T11:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Blog |
+ USAGov", "url": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings-into-action",
+ "urlPingSuffix": "DevEx,5129.1", "displayUrl": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings...",
+ "snippet": "The good news with Twitter is that you can send a few more messages
+ in a day without overwhelming your followers, so while we plan to focus more
+ on the topics that resonate most with our audience, we will continue to publish
+ a big mix of topics.", "dateLastCrawled": "2018-11-02T14:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Facebook
+ Live: How We Do It and What We Learned in Year One", "url": "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we-learned-in-year-one",
+ "urlPingSuffix": "DevEx,5142.1", "displayUrl": "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we...",
+ "snippet": "Competition: try not to compete with a big TV show, national news
+ event, or a major sporting occasions. No matter how good or important your
+ content is, you might struggle to get enough attention if you’re up against
+ a big event.", "dateLastCrawled": "2018-11-05T07:48:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Change Comes
+ to USAGov''s Historic Publication Program", "url": "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication-program",
+ "urlPingSuffix": "DevEx,5156.1", "displayUrl": "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication...",
+ "snippet": "Local and national news outlets, especially the weekly magazine,
+ Parade, regularly mentioned our publications, and columnist Dear Abby promoted
+ packets of publications on timely topics with great response from her 110
+ million readers.", "dateLastCrawled": "2018-11-09T20:51:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Preliminary Results
+ from Voter Registration Partnership ...", "url": "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration-partnership-with-facebook",
+ "urlPingSuffix": "DevEx,5170.1", "displayUrl": "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration...",
+ "snippet": "Facebook''s megaphone is a featured box that is displayed at the
+ top of all user''s News Feeds. (You may recall seeing these after certain
+ disasters giving users the option to quickly donate to Red Cross or other
+ organizations).", "dateLastCrawled": "2018-11-06T00:24:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:31 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=news%20(site:blog.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2689'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:31 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3DFD3A3ED52D651C1DCF3692D4FA6404; path=/; expires=Sat, 14-Dec-2019 22:41:31
+ GMT; domain=bingapis.com
+ - MUIDB=3DFD3A3ED52D651C1DCF3692D4FA6404; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:31 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:31 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=D5C3BFCA1EFC4DB485272CC39E03E938&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:31 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:31
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=35F5D65C993C66853896DAF098EB6798; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:31 GMT; domain=bingapis.com
+ - _SS=SID=35F5D65C993C66853896DAF098EB6798; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 90ADD665F0F74535A813FAEFC5348E4F
+ X-Msedge-Clientid:
+ - 3DFD3A3ED52D651C1DCF3692D4FA6404
+ X-Msapi-Userstate:
+ - 4a82
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 90ADD665F0F74535A813FAEFC5348E4F Ref B: CO1EDGE0415 Ref C: 2018-11-19T22:41:31Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:31 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=4EB4A341AED14ED6A1B5310EBD01A5E4&CID=3DFD3A3ED52D651C1DCF3692D4FA6404&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=4EB4A341AED14ED6A1B5310EBD01A5E4&CID=3DFD3A3ED52D651C1DCF3692D4FA6404&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3ablog.usa.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5230.1", "totalEstimatedMatches": 10, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "USA.gov
+ Blog", "url": "https:\/\/blog.usa.gov\/", "urlPingSuffix": "DevEx,5047.1",
+ "displayUrl": "https:\/\/blog.usa.gov", "snippet": "The Emerging Leaders Program
+ (ELP) at GSA is a two-year Pathways program for recent graduates to transition
+ from college to a career in government. Each participant rotates through up
+ to seven different offices within the agency, working closely with team members
+ and learning about the work before being permanently placed.", "dateLastCrawled":
+ "2018-11-14T12:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Five Communication Tactics We Used During the 2017 ...", "url":
+ "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the-2017-hurricane-season",
+ "urlPingSuffix": "DevEx,5061.1", "displayUrl": "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the...",
+ "snippet": "In 2017, it was nearly impossible to turn on the news or go
+ on social media without hearing stories about hurricanes across Texas, Florida,
+ the U.S. Virgin Islands, and Puerto Rico.", "dateLastCrawled": "2018-11-07T03:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "The USAGov
+ Contact Center Connects the Public to Answers ...", "url": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public-to-answers-from-government",
+ "urlPingSuffix": "DevEx,5075.1", "displayUrl": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public...",
+ "snippet": "As news of the attacks spread, the number of people unable to
+ get in touch with family and friends in Paris grew. Over the next four days,
+ agents at the Contact Center worked the phones 24 hours a day, comforting
+ and connecting more than 600 callers with information to locate their loved
+ ones overseas.", "dateLastCrawled": "2018-11-09T13:05:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Blog | USAGov",
+ "url": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "urlPingSuffix": "DevEx,5087.1", "displayUrl": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "snippet": "Email is an easy, time-saving way for us to connect the public
+ with government information and services. We strive to provide clear information
+ about relevant topics to our more than 850,000 subscribers, in hopes that
+ our emails will stand out in inboxes overflowing with news alerts and sales
+ offers.", "dateLastCrawled": "2018-10-31T17:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning-strategies-and-process",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning...",
+ "snippet": "We also read hundreds of news stories, about consumers facing
+ poor customer service, deceptive clauses hidden in the finest of print, or
+ fraudulent offers that seem too good to be true. Not all consumer issues are
+ addressed at the federal level.", "dateLastCrawled": "2018-10-26T10:27:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Blog |
+ USAGov", "url": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better-serve-our-nation-s-businesses",
+ "urlPingSuffix": "DevEx,5115.1", "displayUrl": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better...",
+ "snippet": "In the meantime, you can stay in the loop with business news
+ on the BusinessUSA Twitter account, and get updates on the website integration
+ project and all things USAGov by signing up to our blog. Ryan Edelstein is
+ the director of content and outreach at USAGov.", "dateLastCrawled": "2018-10-17T11:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Blog |
+ USAGov", "url": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings-into-action",
+ "urlPingSuffix": "DevEx,5129.1", "displayUrl": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings...",
+ "snippet": "The good news with Twitter is that you can send a few more messages
+ in a day without overwhelming your followers, so while we plan to focus more
+ on the topics that resonate most with our audience, we will continue to publish
+ a big mix of topics.", "dateLastCrawled": "2018-11-02T14:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Facebook
+ Live: How We Do It and What We Learned in Year One", "url": "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we-learned-in-year-one",
+ "urlPingSuffix": "DevEx,5142.1", "displayUrl": "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we...",
+ "snippet": "Competition: try not to compete with a big TV show, national news
+ event, or a major sporting occasions. No matter how good or important your
+ content is, you might struggle to get enough attention if you’re up against
+ a big event.", "dateLastCrawled": "2018-11-05T07:48:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Change Comes
+ to USAGov''s Historic Publication Program", "url": "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication-program",
+ "urlPingSuffix": "DevEx,5156.1", "displayUrl": "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication...",
+ "snippet": "Local and national news outlets, especially the weekly magazine,
+ Parade, regularly mentioned our publications, and columnist Dear Abby promoted
+ packets of publications on timely topics with great response from her 110
+ million readers.", "dateLastCrawled": "2018-11-09T20:51:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Preliminary Results
+ from Voter Registration Partnership ...", "url": "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration-partnership-with-facebook",
+ "urlPingSuffix": "DevEx,5170.1", "displayUrl": "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration...",
+ "snippet": "Facebook''s megaphone is a featured box that is displayed at the
+ top of all user''s News Feeds. (You may recall seeing these after certain
+ disasters giving users the option to quickly donate to Red Cross or other
+ organizations).", "dateLastCrawled": "2018-11-06T00:24:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:32 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=news%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:42 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - F7BC7CC2789C47D580C26A265B0EA110
+ Bingapis-Sessionid:
+ - 663A6043D3104149A82D63C05F40F9F6
+ X-Msedge-Clientid:
+ - 025DBA1EA30064C80501B6B2A24C65A7
+ X-Msapi-Userstate:
+ - 9fc8
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=186,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: F7BC7CC2789C47D580C26A265B0EA110 Ref B: BY3EDGE0521 Ref C: 2018-11-19T22:42:42Z'
+ Apim-Request-Id:
+ - cdd87578-b4ae-4816-8ac0-dc7a3a8cad8a
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:41 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "news
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 30900000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "News | NSF - National Science Foundation", "url": "https:\/\/nsf.gov\/news\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/nsf.gov\/news", "snippet":
+ "NSF''s mission is to advance the progress of science, a mission accomplished
+ by funding proposals for research and education made by scientists, engineers,
+ and educators from across the country.", "dateLastCrawled": "2018-11-15T09:18:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "News | USCIS", "url": "https:\/\/www.uscis.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.uscis.gov\/news", "snippet": "Here
+ we have the latest news within the immigration benefit world, handled by
+ U.S. Citizenship and Immigration Services (USCIS). Both news media and
+ general public can find important information about", "dateLastCrawled": "2018-11-16T02:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "News Releases - News - usgs.gov", "url": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usgs.gov\/news\/news-releases",
+ "snippet": "Browse through a comprehensive list of all USGS national and state
+ news items.", "dateLastCrawled": "2018-11-16T16:31:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "News | U.S. Mint", "url": "https:\/\/www.usmint.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usmint.gov\/news", "snippet": "See
+ the latest U.S. Mint news, events, and consumer alerts. Sign up for email
+ updates and see what is going on Inside the Mint.", "dateLastCrawled": "2018-11-18T07:01:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "News | Homeland Security", "url": "https:\/\/www.dhs.gov\/news",
+ "about": [{"name": "United States Department of Homeland Security"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.dhs.gov\/news", "snippet": "News
+ and important communications from the Department of Homeland Security.",
+ "dateLastCrawled": "2018-11-15T23:59:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "News | HHS.gov", "url": "https:\/\/www.hhs.gov\/about\/news\/index.html",
+ "about": [{"name": "United States Department of Health and Human Services"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.hhs.gov\/about\/news",
+ "snippet": "Latest News Releases. Public Affairs Contacts. Visit our Public
+ Affairs Contacts page to access HHS media information as well as press office
+ contact information for ASPA and HHS operating divisions, staff divisions
+ and regional offices.", "dateLastCrawled": "2018-11-15T22:00:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "News | The White House", "url": "https:\/\/www.whitehouse.gov\/news\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/news",
+ "snippet": "Follow the latest updates from the Trump Administration, including
+ briefings and statements, Presidential actions, and news articles.", "dateLastCrawled":
+ "2018-11-16T01:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "News | Governor Andrew M. Cuomo", "url": "https:\/\/www.governor.ny.gov\/news",
+ "about": [{"name": "Andrew Cuomo"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.governor.ny.gov\/news", "snippet": "The official website
+ of the 56th Governor of New York State, Andrew M. Cuomo. Find information
+ about the administration, issues, & news that affects you.", "dateLastCrawled":
+ "2018-11-16T12:47:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "News - USGS", "url": "https:\/\/www.usgs.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usgs.gov\/news", "snippet": "News
+ Dive into the world of science! Read these stories and narratives to learn
+ about news items, hot topics, expeditions underway, and much more.", "dateLastCrawled":
+ "2018-11-09T18:16:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "News - Federal Aviation Administration", "url": "https:\/\/www.faa.gov\/news\/",
+ "about": [{"name": "Federal Aviation Administration"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.faa.gov\/news", "snippet": "A simple
+ search will return results that contain all of the specified words in the
+ title or in the body of the news story. The words may appear in any order.
+ A phrase search can be performed by enclosing the search string in quotes.",
+ "dateLastCrawled": "2018-11-16T04:32:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "News (U.S. National Park Service)", "url": "https:\/\/www.nps.gov\/aboutus\/news\/index.htm",
+ "about": [{"name": "National Park Service"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.nps.gov\/aboutus\/news", "snippet": "Wondering what''s
+ happening across the National Park Service? This is the place to start.
+ You can find links to news releases, subscribe to receive news in your
+ email, search for images and videos, discover facts and figures about the
+ National Park System, and learn how to contact media staff.", "dateLastCrawled":
+ "2018-10-16T09:39:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "News - News - Illinois.gov", "url": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www2.illinois.gov\/sites\/iwcc\/news\/Pages\/news.aspx",
+ "snippet": "News Articles. Passing of Mark A. Braun. Posted: 11\/9\/2018.
+ We regret to announce the passing of Mark A Braun. Mr. Braun was a valued
+ member of the Workers'' Compensation community and a member of the Illinois
+ Trial Lawyers Association.", "dateLastCrawled": "2018-11-15T13:41:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "News | NIDDK", "url": "https:\/\/www.niddk.nih.gov\/news", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.niddk.nih.gov\/news", "snippet": "NIDDK
+ News. News and events from NIDDK-funded research and programs. Media Inquiries.
+ Advances in Health. Aug. 22, 2018. Learn about the new “Diabetes in America,”
+ a preeminent resource for scientific information on diabetes and its complications.",
+ "dateLastCrawled": "2018-11-11T15:16:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "News | NASA''s ARIA Maps California Wildfires from Space", "url":
+ "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278", "thumbnailUrl":
+ "https:\/\/www.bing.com\/th?id=ON.46AC640D6871B3F20785619219F1BFF5&pid=5.1&w=80&h=80&c=8",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=7278",
+ "snippet": "The Advanced Rapid Imaging and Analysis (ARIA) team at NASA''s
+ Jet Propulsion Laboratory in Pasadena, California, created these Damage Proxy
+ Maps (DPMs) depicting areas in California likely damaged by the Woolsey and
+ Camp Fires.", "dateLastCrawled": "2018-11-15T21:52:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "News & Events | National Institutes of Health (NIH)", "url": "https:\/\/www.nih.gov\/news-events",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.nih.gov\/news-events",
+ "snippet": "News releases, events, videos, images, social media and outreach,
+ and more from the National Institutes of Health", "dateLastCrawled": "2018-11-15T19:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "News & Events - National Cancer Institute", "url": "https:\/\/www.cancer.gov\/news-events",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cancer.gov\/news-events",
+ "snippet": "The latest cancer news from the U.S. government''s principal
+ agency for cancer research, plus resources designed for science writers and
+ reporters.", "dateLastCrawled": "2018-11-16T05:02:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "News — FBI", "url": "https:\/\/www.fbi.gov\/news\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.fbi.gov\/news", "snippet": "Featured
+ News, Latest News, Press Releases, Editor''s Pick and Feature Photos,
+ all the FBI News up to the minute.", "dateLastCrawled": "2018-11-15T05:58:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "All News", "url": "http:\/\/www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www.marylandattorneygeneral.gov\/Pages\/News\/All-News.aspx",
+ "snippet": "Maryland Recovers $81 million From Medicaid Technology Contractor
+ Baltimore Sun. Moving Co. Owner Accused of Overcharging Questioned in Court
+ NBCWashington", "dateLastCrawled": "2018-11-13T18:08:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "News | U.S. Department of the Interior", "url": "https:\/\/www.doi.gov\/news",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.doi.gov\/news",
+ "snippet": "News from the Office of the Secretary of the Interior.", "dateLastCrawled":
+ "2018-11-16T10:05:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "News - Yellowstone National Park (U.S. National Park Service)", "url":
+ "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.nps.gov\/yell\/learn\/news\/index.htm",
+ "snippet": "News Releases. Browse our latest news releases or subscribe
+ to our RSS feed.. Social Media. Social media provides a quick and easy way
+ for you to connect with us on a daily basis.. Photos, Sounds & Videos. Browse
+ our library of high-quality, public domain images on Flickr.Explore and download
+ the sounds of Yellowstone in our sound library.Check out our extensive video
+ collection of tours ...", "dateLastCrawled": "2018-09-09T02:38:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:43 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=news%20(site:blog.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:43 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 95AFE92134A54AD596CAE691FAF5C45F
+ Bingapis-Sessionid:
+ - 74F066D2B28447B58989B8EFD3A01A65
+ X-Msedge-Clientid:
+ - 24A145AB1134600B0F5E49071078619E
+ X-Msapi-Userstate:
+ - '1520'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=213,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 95AFE92134A54AD596CAE691FAF5C45F Ref B: BY3EDGE0310 Ref C: 2018-11-19T22:42:43Z'
+ Apim-Request-Id:
+ - 4b367850-5aa8-41c8-b32b-bea6eb5a8c09
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:42 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "news
+ (site:blog.usa.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3ablog.usa.gov%2f)",
+ "totalEstimatedMatches": 10, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "USA.gov Blog", "url": "https:\/\/blog.usa.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/blog.usa.gov", "snippet": "The Emerging Leaders
+ Program (ELP) at GSA is a two-year Pathways program for recent graduates to
+ transition from college to a career in government. Each participant rotates
+ through up to seven different offices within the agency, working closely with
+ team members and learning about the work before being permanently placed.",
+ "dateLastCrawled": "2018-11-14T12:19:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Five Communication Tactics We Used During the 2017 ...", "url":
+ "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the-2017-hurricane-season",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the...",
+ "snippet": "In 2017, it was nearly impossible to turn on the news or go
+ on social media without hearing stories about hurricanes across Texas, Florida,
+ the U.S. Virgin Islands, and Puerto Rico.", "dateLastCrawled": "2018-11-07T03:42:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "The USAGov Contact Center Connects the Public to Answers ...",
+ "url": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public-to-answers-from-government",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public...",
+ "snippet": "As news of the attacks spread, the number of people unable to
+ get in touch with family and friends in Paris grew. Over the next four days,
+ agents at the Contact Center worked the phones 24 hours a day, comforting
+ and connecting more than 600 callers with information to locate their loved
+ ones overseas.", "dateLastCrawled": "2018-11-09T13:05:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning-strategies-and-process",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning...",
+ "snippet": "We also read hundreds of news stories, about consumers facing
+ poor customer service, deceptive clauses hidden in the finest of print, or
+ fraudulent offers that seem too good to be true. Not all consumer issues are
+ addressed at the federal level.", "dateLastCrawled": "2018-10-26T10:27:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "snippet": "Email is an easy, time-saving way for us to connect the public
+ with government information and services. We strive to provide clear information
+ about relevant topics to our more than 850,000 subscribers, in hopes that
+ our emails will stand out in inboxes overflowing with news alerts and sales
+ offers.", "dateLastCrawled": "2018-10-31T17:01:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings-into-action",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings...",
+ "snippet": "The good news with Twitter is that you can send a few more messages
+ in a day without overwhelming your followers, so while we plan to focus more
+ on the topics that resonate most with our audience, we will continue to publish
+ a big mix of topics.", "dateLastCrawled": "2018-11-02T14:32:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better-serve-our-nation-s-businesses",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better...",
+ "snippet": "In the meantime, you can stay in the loop with business news
+ on the BusinessUSA Twitter account, and get updates on the website integration
+ project and all things USAGov by signing up to our blog. Ryan Edelstein is
+ the director of content and outreach at USAGov.", "dateLastCrawled": "2018-10-17T11:01:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Facebook Live: How We Do It and What We Learned in Year One", "url":
+ "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we-learned-in-year-one",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we...",
+ "snippet": "Competition: try not to compete with a big TV show, national news
+ event, or a major sporting occasions. No matter how good or important your
+ content is, you might struggle to get enough attention if you’re up against
+ a big event.", "dateLastCrawled": "2018-11-05T07:48:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Change Comes to USAGov''s Historic Publication Program", "url":
+ "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication-program",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication...",
+ "snippet": "Local and national news outlets, especially the weekly magazine,
+ Parade, regularly mentioned our publications, and columnist Dear Abby promoted
+ packets of publications on timely topics with great response from her 110
+ million readers.", "dateLastCrawled": "2018-11-09T20:51:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Preliminary Results from Voter Registration Partnership ...", "url":
+ "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration-partnership-with-facebook",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration...",
+ "snippet": "Facebook''s megaphone is a featured box that is displayed at the
+ top of all user''s News Feeds. (You may recall seeing these after certain
+ disasters giving users the option to quickly donate to Red Cross or other
+ organizations).", "dateLastCrawled": "2018-11-06T00:24:00.0000000Z", "language":
+ "en", "isNavigational": false}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:43 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=news%20(site:blog.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:43 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 67CECE7E6F7D41C79C249D40A94D41DC
+ Bingapis-Sessionid:
+ - 26ECBD4AF0F04D6CA9CC903AF2487E88
+ X-Msedge-Clientid:
+ - 30CFBFBFDFF76A5439BBB313DEBB6BC0
+ X-Msapi-Userstate:
+ - be7e
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=100,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 67CECE7E6F7D41C79C249D40A94D41DC Ref B: BY3EDGE0417 Ref C: 2018-11-19T22:42:43Z'
+ Apim-Request-Id:
+ - 2b2f0cea-5886-4f95-9537-e05c54c597b6
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:42 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "news
+ (site:blog.usa.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=news+(site%3ablog.usa.gov%2f)",
+ "totalEstimatedMatches": 10, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "USA.gov Blog", "url": "https:\/\/blog.usa.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/blog.usa.gov", "snippet": "The Emerging Leaders
+ Program (ELP) at GSA is a two-year Pathways program for recent graduates to
+ transition from college to a career in government. Each participant rotates
+ through up to seven different offices within the agency, working closely with
+ team members and learning about the work before being permanently placed.",
+ "dateLastCrawled": "2018-11-14T12:19:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Five Communication Tactics We Used During the 2017 ...", "url":
+ "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the-2017-hurricane-season",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/five-communication-tactics-we-used-during-the...",
+ "snippet": "In 2017, it was nearly impossible to turn on the news or go
+ on social media without hearing stories about hurricanes across Texas, Florida,
+ the U.S. Virgin Islands, and Puerto Rico.", "dateLastCrawled": "2018-11-07T03:42:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "The USAGov Contact Center Connects the Public to Answers ...",
+ "url": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public-to-answers-from-government",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/the-usagov-contact-center-connects-the-public...",
+ "snippet": "As news of the attacks spread, the number of people unable to
+ get in touch with family and friends in Paris grew. Over the next four days,
+ agents at the Contact Center worked the phones 24 hours a day, comforting
+ and connecting more than 600 callers with information to locate their loved
+ ones overseas.", "dateLastCrawled": "2018-11-09T13:05:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/using-2017-email-success-to-springboard-into-2018",
+ "snippet": "Email is an easy, time-saving way for us to connect the public
+ with government information and services. We strive to provide clear information
+ about relevant topics to our more than 850,000 subscribers, in hopes that
+ our emails will stand out in inboxes overflowing with news alerts and sales
+ offers.", "dateLastCrawled": "2018-10-31T17:01:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning-strategies-and-process",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/developing-a-consumer-resource-guide-planning...",
+ "snippet": "We also read hundreds of news stories, about consumers facing
+ poor customer service, deceptive clauses hidden in the finest of print, or
+ fraudulent offers that seem too good to be true. Not all consumer issues are
+ addressed at the federal level.", "dateLastCrawled": "2018-10-26T10:27:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better-serve-our-nation-s-businesses",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/joining-forces-with-businessusa-to-better...",
+ "snippet": "In the meantime, you can stay in the loop with business news
+ on the BusinessUSA Twitter account, and get updates on the website integration
+ project and all things USAGov by signing up to our blog. Ryan Edelstein is
+ the director of content and outreach at USAGov.", "dateLastCrawled": "2018-10-17T11:01:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Blog | USAGov", "url": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings-into-action",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/social-media-data-deep-dive-turning-findings...",
+ "snippet": "The good news with Twitter is that you can send a few more messages
+ in a day without overwhelming your followers, so while we plan to focus more
+ on the topics that resonate most with our audience, we will continue to publish
+ a big mix of topics.", "dateLastCrawled": "2018-11-02T14:32:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Facebook Live: How We Do It and What We Learned in Year One", "url":
+ "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we-learned-in-year-one",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/facebook-live-how-we-do-it-and-what-we...",
+ "snippet": "Competition: try not to compete with a big TV show, national news
+ event, or a major sporting occasions. No matter how good or important your
+ content is, you might struggle to get enough attention if you’re up against
+ a big event.", "dateLastCrawled": "2018-11-05T07:48:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Change Comes to USAGov''s Historic Publication Program", "url":
+ "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication-program",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/change-comes-to-usagovs-historic-publication...",
+ "snippet": "Local and national news outlets, especially the weekly magazine,
+ Parade, regularly mentioned our publications, and columnist Dear Abby promoted
+ packets of publications on timely topics with great response from her 110
+ million readers.", "dateLastCrawled": "2018-11-09T20:51:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Preliminary Results from Voter Registration Partnership ...", "url":
+ "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration-partnership-with-facebook",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/blog.usa.gov\/preliminary-results-from-voter-registration...",
+ "snippet": "Facebook''s megaphone is a featured box that is displayed at the
+ top of all user''s News Feeds. (You may recall seeing these after certain
+ disasters giving users the option to quickly donate to Red Cross or other
+ organizations).", "dateLastCrawled": "2018-11-06T00:24:00.0000000Z", "language":
+ "en", "isNavigational": false}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:44 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Site_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Site_search.yml
index 35ff33062d..eccc792af3 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Site_search.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Site_search.yml
@@ -418,4 +418,908 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:17:51 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gov%20(site:www.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2085'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:27 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3EA7855BAF4068C9241789F7AE976989; path=/; expires=Sat, 14-Dec-2019 22:41:27
+ GMT; domain=bingapis.com
+ - MUIDB=3EA7855BAF4068C9241789F7AE976989; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:27 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:27 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=BCF4100A7AE14CCF97F090353CCA83F8&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:27 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:27
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1B53187CECA564AF3E0E14D0ED726516; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:27 GMT; domain=bingapis.com
+ - _SS=SID=1B53187CECA564AF3E0E14D0ED726516; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 675146EDED5B44F3819AAFE1C7B8CF5E
+ X-Msedge-Clientid:
+ - 3EA7855BAF4068C9241789F7AE976989
+ X-Msapi-Userstate:
+ - 945d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 675146EDED5B44F3819AAFE1C7B8CF5E Ref B: CO1EDGE0422 Ref C: 2018-11-19T22:41:27Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:27 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F1EC1D187F30417483823695C085C5FB&CID=3EA7855BAF4068C9241789F7AE976989&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F1EC1D187F30417483823695C085C5FB&CID=3EA7855BAF4068C9241789F7AE976989&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3awww.usa.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5444.1", "totalEstimatedMatches": 72800,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "USA - Official Guide to Government Information and Services", "url": "https:\/\/www.usa.gov\/",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "United States"}], "displayUrl":
+ "https:\/\/www.usa.gov", "snippet": "The .gov means it''s official. Federal
+ government websites often end in .gov or .mil. Before sharing sensitive
+ information, make sure you''re on a federal government site.", "dateLastCrawled":
+ "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "urlPingSuffix": "DevEx,5075.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The
+ .gov means it''s official. Federal government websites often end in .gov
+ or .mil. Before sharing sensitive information, make sure you''re on a federal
+ government site. This site is secure. The https:\/\/ ensures that you are
+ connecting to the official website and that any information you provide is
+ ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "urlPingSuffix": "DevEx,5088.1", "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Unclaimed Money
+ from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "urlPingSuffix": "DevEx,5104.1", "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Jobs
+ and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "U.S. Government
+ Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Getting or Renewing
+ a U.S. Passport | USAGov", "url": "https:\/\/www.usa.gov\/passport", "urlPingSuffix":
+ "DevEx,5148.1", "displayUrl": "https:\/\/www.usa.gov\/passport", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-13T22:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Looking
+ for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search", "urlPingSuffix":
+ "DevEx,5164.1", "displayUrl": "https:\/\/www.usa.gov\/job-search", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Government
+ Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "urlPingSuffix": "DevEx,5178.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Find a
+ Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal
+ jobs and employment information. There, you can: You must create a USAJOBS
+ profile to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Contact Us
+ | USAGov", "url": "https:\/\/www.usa.gov\/contact", "urlPingSuffix": "DevEx,5208.1",
+ "displayUrl": "https:\/\/www.usa.gov\/contact", "snippet": "USA.gov’s
+ information specialists can help you find information on federal agencies,
+ programs, benefits, services, and more. Chat with USA.gov USA.gov’s live
+ chat service can help you find information on federal agencies, programs,
+ benefits, services, and more.", "dateLastCrawled": "2018-11-13T05:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Branches
+ of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5224.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "I | Government
+ Forms | USAGov", "url": "https:\/\/www.usa.gov\/forms\/i", "urlPingSuffix":
+ "DevEx,5240.1", "displayUrl": "https:\/\/www.usa.gov\/forms\/i", "snippet":
+ "The .gov means it''s official. Federal government websites often end
+ in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-15T21:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "About
+ USA.gov | USAGov", "url": "https:\/\/www.usa.gov\/about", "urlPingSuffix":
+ "DevEx,5254.1", "about": [{"name": "USA.gov"}], "displayUrl": "https:\/\/www.usa.gov\/about",
+ "snippet": "About USA.gov. Our mission is to create and organize timely,
+ needed government information and services and make them accessible anytime,
+ anywhere, via your channel of choice. About Us. Learn more about the history
+ and mission of USA.gov. Contact USA.gov.", "dateLastCrawled": "2018-11-13T17:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Travel
+ and Immigration | USAGov", "url": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "urlPingSuffix": "DevEx,5268.1", "displayUrl": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T04:38:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Money and
+ Credit | USAGov", "url": "https:\/\/www.usa.gov\/money", "urlPingSuffix":
+ "DevEx,5282.1", "displayUrl": "https:\/\/www.usa.gov\/money", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-16T08:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Features
+ | USAGov", "url": "https:\/\/www.usa.gov\/features", "urlPingSuffix": "DevEx,5298.1",
+ "displayUrl": "https:\/\/www.usa.gov\/features", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-15T20:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Government Grants and Loans | USAGov", "url": "https:\/\/www.usa.gov\/grants",
+ "urlPingSuffix": "DevEx,5314.1", "displayUrl": "https:\/\/www.usa.gov\/grants",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-12T14:24:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5328.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.",
+ "dateLastCrawled": "2018-11-14T16:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Small Business | USAGov", "url": "https:\/\/www.usa.gov\/business",
+ "urlPingSuffix": "DevEx,5342.1", "displayUrl": "https:\/\/www.usa.gov\/business",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-11T18:13:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:28 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=gobierno%20(site:gobierno.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2455'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:28 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=384A082F320563B11A73048333D26241; path=/; expires=Sat, 14-Dec-2019 22:41:28
+ GMT; domain=bingapis.com
+ - MUIDB=384A082F320563B11A73048333D26241; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:28 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:28 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=E273B277C3694F319B4C16E2C9F5E910&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:28 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:28
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=25172C170B886F73385F20BB0A5F6E99; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:28 GMT; domain=bingapis.com
+ - _SS=SID=25172C170B886F73385F20BB0A5F6E99; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 25AA15A1659548EE88C7CC662B02C480
+ X-Msedge-Clientid:
+ - 384A082F320563B11A73048333D26241
+ X-Msapi-Userstate:
+ - '8218'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 25AA15A1659548EE88C7CC662B02C480 Ref B: CO1EDGE0319 Ref C: 2018-11-19T22:41:28Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:28 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=784079699F2740FCA9443F6132952E9C&CID=384A082F320563B11A73048333D26241&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=784079699F2740FCA9443F6132952E9C&CID=384A082F320563B11A73048333D26241&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3agobierno.usa.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5426.1", "totalEstimatedMatches": 55800,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5057.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Servicios
+ e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "urlPingSuffix": "DevEx,5070.1", "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "urlPingSuffix": "DevEx,5085.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "urlPingSuffix": "DevEx,5111.1",
+ "displayUrl": "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes
+ de compartir información confidencial, asegúrese de que está en un sitio del
+ Gobierno federal. Este sitio es seguro. El protocolo https:\/\/ le asegura
+ que se está conectando al sitio web oficial y que cualquier información que
+ usted proporcione está encriptada y será transmitida de forma segura.", "dateLastCrawled":
+ "2018-11-13T04:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Novedades | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/novedades",
+ "urlPingSuffix": "DevEx,5126.1", "displayUrl": "https:\/\/gobierno.usa.gov\/novedades",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T18:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Directorios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/directorios",
+ "urlPingSuffix": "DevEx,5139.1", "displayUrl": "https:\/\/gobierno.usa.gov\/directorios",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-11T10:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Cómo obtener o renovar el pasaporte | USAGov", "url": "https:\/\/gobierno.usa.gov\/pasaportes-documentos-de-viaje",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/gobierno.usa.gov\/pasaportes-documentos-de-viaje",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T15:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Programas sociales | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "urlPingSuffix": "DevEx,5168.1", "displayUrl": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "snippet": "Beneficios sociales y ayuda financiera del Gobierno para familias
+ o personas con ingresos limitados para cubrir sus necesidades básicas.", "dateLastCrawled":
+ "2018-11-13T10:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Trabajo y desempleo | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/trabajo-y-desempleo",
+ "urlPingSuffix": "DevEx,5181.1", "displayUrl": "https:\/\/gobierno.usa.gov\/trabajo-y-desempleo",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-09T22:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Explorar USAGov en español | GobiernoUSA.gov", "url": "https:\/\/gobierno.usa.gov\/explorar\/",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/gobierno.usa.gov\/explorar",
+ "snippet": "USAGov es un programa federal que lo conecta a la información
+ y los servicios de las agencias, los departamentos y programas del Gobierno.
+ En USAGov encontrará respuestas a sus preguntas en español y en inglés—por
+ Internet, teléfono, chat o en nuestra Guía del Consumidor.", "dateLastCrawled":
+ "2018-11-10T04:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Centro de atención al cliente | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/contactenos", "urlPingSuffix": "DevEx,5209.1",
+ "displayUrl": "https:\/\/gobierno.usa.gov\/contactenos", "snippet": "Antes
+ de compartir información confidencial, asegúrese de que está en un sitio del
+ Gobierno federal. Este sitio es seguro. El protocolo https:\/\/ le asegura
+ que se está conectando al sitio web oficial y que cualquier información que
+ usted proporcione está encriptada y será transmitida de forma segura.", "dateLastCrawled":
+ "2018-11-06T12:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Subastas y ventas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "urlPingSuffix": "DevEx,5224.1", "displayUrl": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-10T06:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Ciudadanía, inmigración y viajes | USAGov - gobierno.usa.gov",
+ "url": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes", "urlPingSuffix":
+ "DevEx,5237.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T17:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Ramas Legislativas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/ramas-del-gobierno",
+ "urlPingSuffix": "DevEx,5252.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ramas-del-gobierno",
+ "snippet": "El Gobierno federal funciona bajo un sistema cuyo objetivo principal
+ es proteger los intereses de sus ciudadanos. La rama legislativa. El Congreso
+ representa la rama del poder legislativo y está conformado por la Cámara de
+ Representantes y el Senado.", "dateLastCrawled": "2018-11-07T07:23:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Dinero
+ y crédito | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/dinero",
+ "urlPingSuffix": "DevEx,5264.1", "displayUrl": "https:\/\/gobierno.usa.gov\/dinero",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-11T20:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Empleo y capacitación laboral | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral", "urlPingSuffix":
+ "DevEx,5279.1", "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-07T14:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Quienes Somos | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/quienes-somos",
+ "urlPingSuffix": "DevEx,5294.1", "displayUrl": "https:\/\/gobierno.usa.gov\/quienes-somos",
+ "snippet": "Quiénes somos Nuestra misión. Crear y organizar información y
+ servicios del Gobierno oportunos y necesarios para que el público los pueda
+ acceder en cualquier momento, desde cualquier lugar y con cualquier dispositivo
+ electrónico.", "dateLastCrawled": "2018-11-13T11:42:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Medios y colaboradores
+ | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/medios",
+ "urlPingSuffix": "DevEx,5309.1", "displayUrl": "https:\/\/gobierno.usa.gov\/medios",
+ "snippet": "Medios y colaboradores. Colaborar con nosotros es fácil. Lea esta
+ información para obtener más detalles. Colabore con nosotros. Cómo los medios,
+ organizaciones comunitarias y agencias del Gobierno de Estados Unidos pueden
+ colaborar con GobiernoUSA.gov.", "dateLastCrawled": "2018-11-03T11:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Temas
+ migratorios comunes | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/tramites-migratorios",
+ "urlPingSuffix": "DevEx,5324.1", "displayUrl": "https:\/\/gobierno.usa.gov\/tramites-migratorios",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-16T03:49:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:28 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gov%20(site:www.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:39 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - E32D3D8E8D7F45E1907660E3040E2DD2
+ Bingapis-Sessionid:
+ - 331BAE28D530475CBC2FBA03AB446EB7
+ X-Msedge-Clientid:
+ - 3F26715B307F673A1E277DF731336693
+ X-Msapi-Userstate:
+ - 23be
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=197,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: E32D3D8E8D7F45E1907660E3040E2DD2 Ref B: BY3EDGE0120 Ref C: 2018-11-19T22:42:39Z'
+ Apim-Request-Id:
+ - 2618ec1b-084a-48b1-a378-b87d7f975a3f
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:39 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gov
+ (site:www.usa.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gov+(site%3awww.usa.gov%2f)",
+ "totalEstimatedMatches": 70300, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "about": [{"name": "United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The .gov means
+ it''s official. Federal government websites often end in .gov or .mil. Before
+ sharing sensitive information, make sure you''re on a federal government site.
+ This site is secure. The https:\/\/ ensures that you are connecting to the
+ official website and that any information you provide is ...", "dateLastCrawled":
+ "2018-11-11T03:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Government Benefits, Grants, and Loans | USAGov", "url": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/benefits-grants-loans",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-13T12:45:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Unclaimed Money from the Government | USAGov", "url": "https:\/\/www.usa.gov\/unclaimed-money",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/unclaimed-money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-14T23:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Jobs and Unemployment | USAGov", "url": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/jobs-and-unemployment",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T10:35:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "U.S. Government Services and Information | USAGov", "url": "https:\/\/www.usa.gov\/topics",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/topics",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T18:20:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Getting or Renewing a U.S. Passport | USAGov", "url": "https:\/\/www.usa.gov\/passport",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/passport",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-13T22:14:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Looking for a New Job | USAGov", "url": "https:\/\/www.usa.gov\/job-search",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/job-search",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-12T15:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal
+ jobs and employment information. There, you can: You must create a USAJOBS
+ profile to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Contact Us | USAGov", "url": "https:\/\/www.usa.gov\/contact",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/contact",
+ "snippet": "USA.gov’s information specialists can help you find information
+ on federal agencies, programs, benefits, services, and more. Chat with USA.gov
+ USA.gov’s live chat service can help you find information on federal agencies,
+ programs, benefits, services, and more.", "dateLastCrawled": "2018-11-13T05:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/branches-of-government", "snippet":
+ "The .gov means it''s official. Federal government websites often end in
+ .gov or .mil. Before sharing sensitive information, make sure you''re on
+ a federal government site.", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "I | Government Forms | USAGov", "url": "https:\/\/www.usa.gov\/forms\/i",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/forms\/i",
+ "snippet": "The .gov means it''s official. Federal government websites
+ often end in .gov or .mil. Before sharing sensitive information, make sure
+ you''re on a federal government site.", "dateLastCrawled": "2018-11-15T21:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "About USA.gov | USAGov", "url": "https:\/\/www.usa.gov\/about",
+ "about": [{"name": "USA.gov"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/about",
+ "snippet": "About USA.gov. Our mission is to create and organize timely,
+ needed government information and services and make them accessible anytime,
+ anywhere, via your channel of choice. About Us. Learn more about the history
+ and mission of USA.gov. Contact USA.gov.", "dateLastCrawled": "2018-11-13T17:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Travel and Immigration | USAGov", "url": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/travel-and-immigration",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-15T04:38:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Money and Credit | USAGov", "url": "https:\/\/www.usa.gov\/money",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/money",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-16T08:28:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Features | USAGov", "url": "https:\/\/www.usa.gov\/features", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/features", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-15T20:11:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Government Grants and Loans | USAGov", "url": "https:\/\/www.usa.gov\/grants",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/grants",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-12T14:24:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Health | USAGov", "url": "https:\/\/www.usa.gov\/health", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "The .gov
+ means it''s official. Federal government websites often end in .gov or .mil.
+ Before sharing sensitive information, make sure you''re on a federal government
+ site.", "dateLastCrawled": "2018-11-14T16:52:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Small Business | USAGov", "url": "https:\/\/www.usa.gov\/business",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/business",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site.", "dateLastCrawled": "2018-11-11T18:13:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:39 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=gobierno%20(site:gobierno.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:40 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 90CA490391F04498B3908F2C85639C71
+ Bingapis-Sessionid:
+ - AFBEE077022945A1941848997EB4A12D
+ X-Msedge-Clientid:
+ - 3FE3EC6FC98F605401FFE0C3C8C361BD
+ X-Msapi-Userstate:
+ - ff6c
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=171,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 90CA490391F04498B3908F2C85639C71 Ref B: BY3EDGE0310 Ref C: 2018-11-19T22:42:40Z'
+ Apim-Request-Id:
+ - ab459fe8-7a75-4a6e-8719-0768161c92cb
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:39 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "gobierno
+ (site:gobierno.usa.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=gobierno+(site%3agobierno.usa.gov%2f)",
+ "totalEstimatedMatches": 55800, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov",
+ "url": "https:\/\/gobierno.usa.gov\/", "about": [{"name": "GobiernoUSA.gov"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov", "snippet":
+ "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno de
+ Estados Unidos en español.", "dateLastCrawled": "2018-11-16T08:29:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Servicios e información del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/servicios-informacion",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T09:33:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Agencias y funcionarios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T22:24:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Vivienda | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/vivienda",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/vivienda",
+ "snippet": "Ayuda con asuntos de vivienda. Recursos para encontrar vivienda
+ para grupos con necesidades específicas. Ayuda con la compra de una vivienda.
+ Conozca los programas del Gobierno que le facilitan la compra de una casa.",
+ "dateLastCrawled": "2018-11-12T18:18:00.0000000Z", "language": "es", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Recursos para la educación | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/educacion", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/gobierno.usa.gov\/educacion", "snippet": "Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal. Este sitio es seguro. El protocolo https:\/\/ le asegura que se está
+ conectando al sitio web oficial y que cualquier información que usted proporcione
+ está encriptada y será transmitida de forma segura.", "dateLastCrawled": "2018-11-13T04:44:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Novedades | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/novedades",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/novedades",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T18:12:00.0000000Z", "language": "es",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Directorios del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/directorios",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/directorios",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-11T10:32:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Cómo obtener o renovar el pasaporte | USAGov", "url": "https:\/\/gobierno.usa.gov\/pasaportes-documentos-de-viaje",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/pasaportes-documentos-de-viaje",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-15T15:33:00.0000000Z", "language": "es",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Programas sociales | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/programas-sociales",
+ "snippet": "Beneficios sociales y ayuda financiera del Gobierno para familias
+ o personas con ingresos limitados para cubrir sus necesidades básicas.", "dateLastCrawled":
+ "2018-11-13T10:20:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Trabajo y desempleo | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/trabajo-y-desempleo",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/trabajo-y-desempleo",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-09T22:23:00.0000000Z", "language": "es",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Explorar USAGov en español | GobiernoUSA.gov", "url": "https:\/\/gobierno.usa.gov\/explorar\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/explorar",
+ "snippet": "USAGov es un programa federal que lo conecta a la información
+ y los servicios de las agencias, los departamentos y programas del Gobierno.
+ En USAGov encontrará respuestas a sus preguntas en español y en inglés—por
+ Internet, teléfono, chat o en nuestra Guía del Consumidor.", "dateLastCrawled":
+ "2018-11-10T04:36:00.0000000Z", "language": "es", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Centro de atención al cliente | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/contactenos",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/contactenos",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-06T12:15:00.0000000Z", "language": "es",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Subastas y ventas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/subastas-ventas-gobierno",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-10T06:58:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Ciudadanía, inmigración y viajes | USAGov - gobierno.usa.gov",
+ "url": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/ciudadania-inmigracion-viajes",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-14T17:56:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Ramas Legislativas del Gobierno | USAGov", "url": "https:\/\/gobierno.usa.gov\/ramas-del-gobierno",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/ramas-del-gobierno",
+ "snippet": "El Gobierno federal funciona bajo un sistema cuyo objetivo principal
+ es proteger los intereses de sus ciudadanos. La rama legislativa. El Congreso
+ representa la rama del poder legislativo y está conformado por la Cámara de
+ Representantes y el Senado.", "dateLastCrawled": "2018-11-07T07:23:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Dinero y crédito | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/dinero",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/dinero",
+ "snippet": "Antes de compartir información confidencial, asegúrese de que
+ está en un sitio del Gobierno federal. Este sitio es seguro. El protocolo
+ https:\/\/ le asegura que se está conectando al sitio web oficial y que cualquier
+ información que usted proporcione está encriptada y será transmitida de forma
+ segura.", "dateLastCrawled": "2018-11-11T20:36:00.0000000Z", "language": "es",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Empleo y capacitación laboral | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "El dominio .gov significa que es oficial. Los sitios del Gobierno
+ federal frecuentemente terminan en dominios .gov o .mil. Antes de compartir
+ información confidencial, asegúrese de que está en un sitio del Gobierno
+ federal.", "dateLastCrawled": "2018-11-07T14:25:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Quienes Somos | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/quienes-somos",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/quienes-somos",
+ "snippet": "Quiénes somos Nuestra misión. Crear y organizar información y
+ servicios del Gobierno oportunos y necesarios para que el público los pueda
+ acceder en cualquier momento, desde cualquier lugar y con cualquier dispositivo
+ electrónico.", "dateLastCrawled": "2018-11-13T11:42:00.0000000Z", "language":
+ "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Medios y colaboradores | USAGov - gobierno.usa.gov", "url": "https:\/\/gobierno.usa.gov\/medios",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gobierno.usa.gov\/medios",
+ "snippet": "Medios y colaboradores. Colaborar con nosotros es fácil. Lea esta
+ información para obtener más detalles. Colabore con nosotros. Cómo los medios,
+ organizaciones comunitarias y agencias del Gobierno de Estados Unidos pueden
+ colaborar con GobiernoUSA.gov.", "dateLastCrawled": "2018-11-03T11:37:00.0000000Z",
+ "language": "es", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Temas migratorios comunes | USAGov - gobierno.usa.gov", "url":
+ "https:\/\/gobierno.usa.gov\/tramites-migratorios", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/gobierno.usa.gov\/tramites-migratorios", "snippet":
+ "El dominio .gov significa que es oficial. Los sitios del Gobierno federal
+ frecuentemente terminan en dominios .gov o .mil. Antes de compartir información
+ confidencial, asegúrese de que está en un sitio del Gobierno federal.",
+ "dateLastCrawled": "2018-11-16T03:49:00.0000000Z", "language": "es", "isNavigational":
+ false}]}, "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages",
+ "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:41 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Spanish_image_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Spanish_image_search.yml
new file mode 100644
index 0000000000..2eeaa04871
--- /dev/null
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Spanish_image_search.yml
@@ -0,0 +1,674 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=20&mkt=en-US&offset=0&q=barcelona%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '127486'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 96DBAEF0FC0F44CCB0B63D0D775A41E5
+ X-Msedge-Clientid:
+ - 0ECEB687C5B76CD3268ABA05C4FB6DCF
+ X-Msapi-Userstate:
+ - 48a8
+ X-Search-Responseinfo:
+ - InternalResponseTime=211,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 96DBAEF0FC0F44CCB0B63D0D775A41E5 Ref B: BY3EDGE0505 Ref C: 2018-10-08T18:25:39Z'
+ Apim-Request-Id:
+ - 62f948b0-177f-4cc3-9e2f-94c9f4922dfb
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 08 Oct 2018 18:25:38 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"_type": "ResponseInstrumentation"},
+ "readLink": "images\/search?q=barcelona (site:gov OR site:mil)", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=barcelona (site:gov OR site:mil)&FORM=OIIARP",
+ "totalEstimatedMatches": 100, "nextOffset": 22, "value": [{"webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8&simid=608029833980346945",
+ "name": "Multipurpose Complex to host FC Barcelona for youth soccer training
+ program - City of Round Rock", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.jsNLG85IRlhmD2eLnbN7YAHaE8&pid=Api",
+ "datePublished": "2018-09-01T00:09:00.0000000Z", "contentUrl": "https:\/\/www.roundrocktexas.gov\/wp-content\/uploads\/2017\/03\/2016FCBEscolaCamp-CharlotteRound2-June202016-15-1948x1300.jpg",
+ "hostPageUrl": "https:\/\/www.roundrocktexas.gov\/news\/official-fc-barcelona-soccer-school-opening-round-rock-austin\/",
+ "contentSize": "198990 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.roundrocktexas.gov\/news\/official-fc-barcelona-soccer...",
+ "width": 1948, "height": 1300, "thumbnail": {"width": 474, "height": 316},
+ "imageInsightsToken": "ccid_jsNLG85I*mid_753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8*simid_608029833980346945*thid_OIP.jsNLG85IRlhmD2eLnbN7YAHaE8",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Barcelona Youth Soccer Club", "displayText": "Barcelona Youth Soccer Club",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Youth+Soccer+Club&id=753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8&FORM=IDBQDM"},
+ "pagesIncludingCount": 12, "availableSizesCount": 7}, "imageId": "753DD79C6E6ECFA35CD168DB7F57D99CB81BC5C8",
+ "accentColor": "B91228"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=9A7AFB70D6F872011900A7EF144EB87866F40B7A&simid=608037616485269912",
+ "name": "Huitième", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.NAtt1FGsznDDMYfla25phwHaFj&pid=Api",
+ "datePublished": "2018-07-09T07:32:00.0000000Z", "contentUrl": "http:\/\/math.nist.gov\/~JBernal\/ramblas.jpg",
+ "hostPageUrl": "http:\/\/math.nist.gov\/~JBernal\/JBernal_Htn.html", "contentSize":
+ "442821 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "math.nist.gov\/~JBernal\/JBernal_Htn.html",
+ "width": 1296, "height": 972, "thumbnail": {"width": 474, "height": 355},
+ "imageInsightsToken": "ccid_NAtt1FGs*mid_9A7AFB70D6F872011900A7EF144EB87866F40B7A*simid_608037616485269912*thid_OIP.NAtt1FGsznDDMYfla25phwHaFj",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Las Ramblas Barcelona Spain", "displayText": "Las Ramblas Barcelona Spain",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Las+Ramblas+Barcelona+Spain&id=9A7AFB70D6F872011900A7EF144EB87866F40B7A&FORM=IDBQDM"},
+ "pagesIncludingCount": 20, "availableSizesCount": 8}, "imageId": "9A7AFB70D6F872011900A7EF144EB87866F40B7A",
+ "accentColor": "AB3020"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A583450618A5A0788A7E2E432E241&simid=608011747912122860",
+ "name": "The World Factbook — Central Intelligence Agency", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.7tjP1Ywk1-RdxX7La_jt4QHaJ4&pid=Api",
+ "datePublished": "2018-09-15T23:51:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/SP_054.JPG",
+ "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp.html#Econ",
+ "contentSize": "60960 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp...",
+ "width": 480, "height": 640, "thumbnail": {"width": 474, "height": 632}, "imageInsightsToken":
+ "ccid_7tjP1Ywk*mid_09ED5C20B96A583450618A5A0788A7E2E432E241*simid_608011747912122860*thid_OIP.7tjP1Ywk1-RdxX7La!_jt4QHaJ4",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Intelligence Agency Spain", "displayText": "Intelligence Agency Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Intelligence+Agency+Spain&id=09ED5C20B96A583450618A5A0788A7E2E432E241&FORM=IDBQDM"},
+ "pagesIncludingCount": 7, "availableSizesCount": 2}, "imageId": "09ED5C20B96A583450618A5A0788A7E2E432E241",
+ "accentColor": "225CA9"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A58345061A91365F45F056A9D2CC7&simid=608050720428395743",
+ "name": "The World Factbook — Central Intelligence Agency", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.E0sVCismAH-jwmiKNPK05AHaJ4&pid=Api",
+ "datePublished": "2018-09-15T23:51:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/SP_057.JPG",
+ "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/SP.html",
+ "contentSize": "62694 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/SP...",
+ "width": 480, "height": 640, "thumbnail": {"width": 474, "height": 632}, "imageInsightsToken":
+ "ccid_E0sVCism*mid_09ED5C20B96A58345061A91365F45F056A9D2CC7*simid_608050720428395743*thid_OIP.E0sVCismAH-jwmiKNPK05AHaJ4",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Royal Palace Barcelona Spain", "displayText": "Royal Palace Barcelona Spain",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Royal+Palace+Barcelona+Spain&id=09ED5C20B96A58345061A91365F45F056A9D2CC7&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "09ED5C20B96A58345061A91365F45F056A9D2CC7",
+ "accentColor": "056FC6"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=7A54A3A6F1E98BAF2692221096CB6E11950374A2&simid=608011275466049603",
+ "name": "Barcelona, Spain : Image of the Day", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.kuEdKYM1VepA1LQtTVGOBAHaFj&pid=Api",
+ "datePublished": "2010-01-30T18:21:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/7000\/7421\/ISS014-E-10547_lrg.jpg",
+ "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=7421",
+ "contentSize": "680604 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "earthobservatory.nasa.gov\/IOTD\/view.php?id=7421", "width": 1000, "height":
+ 750, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken": "ccid_kuEdKYM1*mid_7A54A3A6F1E98BAF2692221096CB6E11950374A2*simid_608011275466049603*thid_OIP.kuEdKYM1VepA1LQtTVGOBAHaFj",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Barcelona Birds Eye View", "displayText": "Barcelona Birds Eye View", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Birds+Eye+View&id=7A54A3A6F1E98BAF2692221096CB6E11950374A2&FORM=IDBQDM"},
+ "pagesIncludingCount": 33, "availableSizesCount": 11}, "imageId": "7A54A3A6F1E98BAF2692221096CB6E11950374A2",
+ "accentColor": "1D455A"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=531FE4044224BA2D24281097CC3A771C0FA1BEB3&simid=608003467185293709",
+ "name": "Barcelona, Spain : Image of the Day", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.bXoVxXWEqTBfEW9DCn7jUQHaE5&pid=Api",
+ "datePublished": "2013-08-15T21:09:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/4000\/4627\/ISS009-E-9987_lrg.jpg",
+ "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=4627&eocn=image&eoci=moreiotd",
+ "contentSize": "499979 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "earthobservatory.nasa.gov\/IOTD\/view.php?id=4627&eocn=image&eoci...", "width":
+ 1000, "height": 662, "thumbnail": {"width": 474, "height": 313}, "imageInsightsToken":
+ "ccid_bXoVxXWE*mid_531FE4044224BA2D24281097CC3A771C0FA1BEB3*simid_608003467185293709*thid_OIP.bXoVxXWEqTBfEW9DCn7jUQHaE5",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 12, "availableSizesCount":
+ 4}, "imageId": "531FE4044224BA2D24281097CC3A771C0FA1BEB3", "accentColor":
+ "22446B"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=CDAFB350F666045DFCC4C46D448D88C2623FD2EA&simid=608049225799435176",
+ "name": "NASA - Members of the FC Barcelona Soccer Team", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.eyJX5eLaSaDJ00ORE_dOtgHaE6&pid=Api",
+ "datePublished": "2016-11-21T20:50:00.0000000Z", "contentUrl": "https:\/\/www.nasa.gov\/images\/content\/154346main_jsc2006e33427_high.jpg",
+ "hostPageUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/Barcelona_soccer_team.html",
+ "contentSize": "2231422 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/Barcelona...",
+ "width": 3072, "height": 2040, "thumbnail": {"width": 474, "height": 314},
+ "imageInsightsToken": "ccid_eyJX5eLa*mid_CDAFB350F666045DFCC4C46D448D88C2623FD2EA*simid_608049225799435176*thid_OIP.eyJX5eLaSaDJ00ORE!_dOtgHaE6",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "FC Barcelona Team Members", "displayText": "FC Barcelona Team Members", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona+Team+Members&id=CDAFB350F666045DFCC4C46D448D88C2623FD2EA&FORM=IDBQDM"},
+ "pagesIncludingCount": 10, "availableSizesCount": 4}, "imageId": "CDAFB350F666045DFCC4C46D448D88C2623FD2EA",
+ "accentColor": "154274"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=8DB58A6E04EDE65C791BADE3C9F52D92C6363356&simid=607992330356984967",
+ "name": "Sanctuaries Go To Barcelona!", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.opZjrotxVK8XzQ6WwDB0lwAAAA&pid=Api",
+ "datePublished": "2014-11-07T17:49:00.0000000Z", "contentUrl": "http:\/\/sanctuaries.noaa.gov\/news\/images\/barcelona3.jpg",
+ "hostPageUrl": "http:\/\/sanctuaries.noaa.gov\/news\/features\/1008_barcelona.html",
+ "contentSize": "11752 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "sanctuaries.noaa.gov\/news\/features\/1008_barcelona.html", "width": 250,
+ "height": 188, "thumbnail": {"width": 250, "height": 188}, "imageInsightsToken":
+ "ccid_opZjrotx*mid_8DB58A6E04EDE65C791BADE3C9F52D92C6363356*simid_607992330356984967*thid_OIP.opZjrotxVK8XzQ6WwDB0lwAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "8DB58A6E04EDE65C791BADE3C9F52D92C6363356", "accentColor": "3E528D"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=1904E42AE28EA3B5F1508941A0D1B6C9930A66DC&simid=608013478821956680",
+ "name": "Spangdahlem lt shares first-time marathon experience > Spangdahlem
+ Air Base > Display", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.NeZdg-Ti_Pz-idGQT8VGxgHaFj&pid=Api",
+ "datePublished": "2018-07-15T22:05:00.0000000Z", "contentUrl": "https:\/\/media.defense.gov\/2009\/Mar\/09\/2000613566\/780\/780\/0\/090301-F-0000R-148.JPG",
+ "hostPageUrl": "http:\/\/www.spangdahlem.af.mil\/News\/Commentaries\/Display\/Article\/296930\/spangdahlem-lt-shares-first-time-marathon-experience\/",
+ "contentSize": "108714 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.spangdahlem.af.mil\/News\/Commentaries\/Display\/Article\/296930...",
+ "width": 780, "height": 585, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_NeZdg+Ti*mid_1904E42AE28EA3B5F1508941A0D1B6C9930A66DC*simid_608013478821956680*thid_OIP.NeZdg-Ti!_Pz-idGQT8VGxgHaFj",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "1904E42AE28EA3B5F1508941A0D1B6C9930A66DC", "accentColor": "9F6B2C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=B7FDE023134A738697007907458EF2C489E789DE&simid=608009282609809292",
+ "name": "Beautiful Barcelona beckons travelers | Article | The United States
+ Army", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.lbcg_5wtkT-xmWaiUVS4TwHaNJ&pid=Api",
+ "datePublished": "2018-07-01T22:51:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361327\/original.jpg",
+ "hostPageUrl": "http:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/",
+ "contentSize": "386581 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers", "width":
+ 577, "height": 1024, "thumbnail": {"width": 474, "height": 841}, "imageInsightsToken":
+ "ccid_lbcg\/5wt*mid_B7FDE023134A738697007907458EF2C489E789DE*simid_608009282609809292*thid_OIP.lbcg!_5wtkT-xmWaiUVS4TwHaNJ",
+ "insightsMetadata": {"bestRepresentativeQuery": {"text": "Beautiful Barcelona",
+ "displayText": "Beautiful Barcelona", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Beautiful+Barcelona&id=B7FDE023134A738697007907458EF2C489E789DE&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 2}, "imageId": "B7FDE023134A738697007907458EF2C489E789DE",
+ "accentColor": "2A77A1"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=09ED5C20B96A58345061992CB72149FB8E8B8C00&simid=608048873623388365",
+ "name": "The World Factbook — Central Intelligence Agency", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.yk-fXFfE2TwtWOV6yhGHEQHaFj&pid=Api",
+ "datePublished": "2018-09-28T23:43:00.0000000Z", "contentUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/photo_gallery\/sp\/images\/SP_059.jpg",
+ "hostPageUrl": "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp.html",
+ "contentSize": "61344 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.cia.gov\/library\/publications\/the-world-factbook\/geos\/sp...",
+ "width": 640, "height": 480, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_yk+fXFfE*mid_09ED5C20B96A58345061992CB72149FB8E8B8C00*simid_608048873623388365*thid_OIP.yk-fXFfE2TwtWOV6yhGHEQHaFj",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "09ED5C20B96A58345061992CB72149FB8E8B8C00", "accentColor": "A0982B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=3407D57FAAB19FF8B667EDB8CA3DE73B8B924AB7&simid=60799897548019",
+ "name": "Beautiful Barcelona beckons travelers | Article | The United States
+ Army", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.woqA9kNlKusTTwArJrMO2gHaFh&pid=Api",
+ "datePublished": "2018-05-29T14:54:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361322\/size0.jpg",
+ "hostPageUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/?from=RSS",
+ "contentSize": "58814 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons...",
+ "width": 583, "height": 435, "thumbnail": {"width": 474, "height": 353}, "imageInsightsToken":
+ "ccid_woqA9kNl*mid_3407D57FAAB19FF8B667EDB8CA3DE73B8B924AB7*simid_60799897548019*thid_OIP.woqA9kNlKusTTwArJrMO2gHaFh",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 2},
+ "imageId": "3407D57FAAB19FF8B667EDB8CA3DE73B8B924AB7", "accentColor": "996A32"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=A4F4EBD807B723EDBD592CC07EE05ED57F62448B&simid=608014707167265139",
+ "name": "Consulado General de Estados Unidos en Barcelona | Embajada de EE.UU.
+ en España y Andorra", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.CpB04nUDWfhd6Re-_meAyAHaDc&pid=Api",
+ "datePublished": "2018-06-21T16:36:00.0000000Z", "contentUrl": "https:\/\/es.usembassy.gov\/wp-content\/uploads\/sites\/260\/2015\/10\/ACB_7007-1140x530.jpg",
+ "hostPageUrl": "https:\/\/es.usembassy.gov\/es\/embassy-consulates-es\/barcelona-es\/",
+ "contentSize": "116482 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/es.usembassy.gov\/es\/embassy-consulates-es\/barcelona-es", "width":
+ 1140, "height": 530, "thumbnail": {"width": 474, "height": 220}, "imageInsightsToken":
+ "ccid_CpB04nUD*mid_A4F4EBD807B723EDBD592CC07EE05ED57F62448B*simid_608014707167265139*thid_OIP.CpB04nUDWfhd6Re-!_meAyAHaDc",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 4, "availableSizesCount":
+ 1}, "imageId": "A4F4EBD807B723EDBD592CC07EE05ED57F62448B", "accentColor":
+ "4D5933"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=B7FDE023134A738697008B78B37963B42A6DA7A2&simid=608011198154934377",
+ "name": "Beautiful Barcelona beckons travelers | Article | The United States
+ Army", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.KVdd2ZudMJbjbaz2gmgBGAHaJ7&pid=Api",
+ "datePublished": "2018-07-01T22:51:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361323\/original.jpg",
+ "hostPageUrl": "http:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/",
+ "contentSize": "567189 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers", "width":
+ 764, "height": 1024, "thumbnail": {"width": 474, "height": 635}, "imageInsightsToken":
+ "ccid_KVdd2Zud*mid_B7FDE023134A738697008B78B37963B42A6DA7A2*simid_608011198154934377*thid_OIP.KVdd2ZudMJbjbaz2gmgBGAHaJ7",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 2},
+ "imageId": "B7FDE023134A738697008B78B37963B42A6DA7A2", "accentColor": "323214"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=3407D57FAAB19FF8B6676792A62EBAEADD7C089E&simid=607996659698503154",
+ "name": "Beautiful Barcelona beckons travelers | Article | The United States
+ Army", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.Sjo4Q8QSLI9Z-l9hszOlqgAAAA&pid=Api",
+ "datePublished": "2018-05-29T14:54:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361324\/size0.jpg",
+ "hostPageUrl": "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/?from=RSS",
+ "contentSize": "27877 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons...",
+ "width": 244, "height": 435, "thumbnail": {"width": 244, "height": 435}, "imageInsightsToken":
+ "ccid_Sjo4Q8QS*mid_3407D57FAAB19FF8B6676792A62EBAEADD7C089E*simid_607996659698503154*thid_OIP.Sjo4Q8QSLI9Z-l9hszOlqgAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 2},
+ "imageId": "3407D57FAAB19FF8B6676792A62EBAEADD7C089E", "accentColor": "886C44"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=D74130502E15461A214608D1F77251C30C2316A7&simid=607989087654315380",
+ "name": "Parks and Recreation | After School, Recreation & Community Services
+ Programs", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.koTV3-v1B50RiGa9EqsIaAHaK5&pid=Api",
+ "datePublished": "2018-03-12T20:45:00.0000000Z", "contentUrl": "https:\/\/www.fresno.gov\/parks\/wp-content\/uploads\/sites\/14\/2016\/11\/FRESNO-AD.jpg",
+ "hostPageUrl": "https:\/\/www.fresno.gov\/parks\/activities-recreational-programs\/",
+ "contentSize": "1684061 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.fresno.gov\/parks\/activities-recreational-programs", "width":
+ 1252, "height": 1843, "thumbnail": {"width": 474, "height": 697}, "imageInsightsToken":
+ "ccid_koTV3+v1*mid_D74130502E15461A214608D1F77251C30C2316A7*simid_607989087654315380*thid_OIP.koTV3-v1B50RiGa9EqsIaAHaK5",
+ "insightsMetadata": {"bestRepresentativeQuery": {"text": "Jensen Sports Park
+ and West Fresno CA", "displayText": "Jensen Sports Park and West Fresno CA",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Jensen+Sports+Park+and+West+Fresno+CA&id=D74130502E15461A214608D1F77251C30C2316A7&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "D74130502E15461A214608D1F77251C30C2316A7",
+ "accentColor": "0C4992"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=B7FDE023134A73869700F27A579AEF260E05BEA1&simid=607990895822242692",
+ "name": "Beautiful Barcelona beckons travelers | Article | The United States
+ Army", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.jfrZ7j6yS54oCIyFQlMKzAAAAA&pid=Api",
+ "datePublished": "2018-07-01T22:51:00.0000000Z", "contentUrl": "https:\/\/www.army.mil\/e2\/c\/images\/2014\/09\/04\/361328\/size0.jpg",
+ "hostPageUrl": "http:\/\/www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers\/",
+ "contentSize": "33649 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.army.mil\/article\/133067\/Beautiful_Barcelona_beckons_travelers", "width":
+ 243, "height": 435, "thumbnail": {"width": 243, "height": 435}, "imageInsightsToken":
+ "ccid_jfrZ7j6y*mid_B7FDE023134A73869700F27A579AEF260E05BEA1*simid_607990895822242692*thid_OIP.jfrZ7j6yS54oCIyFQlMKzAAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 2},
+ "imageId": "B7FDE023134A73869700F27A579AEF260E05BEA1", "accentColor": "257DA6"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=9FCB2543EC6F2F798746BC7E9F6B9D94A713D473&simid=608053580846139500",
+ "name": "Development Division | Beaverton, OR - Official Website", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.3KITG3CRbmgYUiAMt1B45QAAAA&pid=Api",
+ "datePublished": "2018-07-01T12:49:00.0000000Z", "contentUrl": "http:\/\/www.beavertonoregon.gov\/ImageRepository\/Document?documentID=14583",
+ "hostPageUrl": "http:\/\/www.beavertonoregon.gov\/index.aspx?NID=1560", "contentSize":
+ "54631 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "www.beavertonoregon.gov\/index.aspx?NID=1560",
+ "width": 390, "height": 300, "thumbnail": {"width": 390, "height": 300}, "imageInsightsToken":
+ "ccid_3KITG3CR*mid_9FCB2543EC6F2F798746BC7E9F6B9D94A713D473*simid_608053580846139500*thid_OIP.3KITG3CRbmgYUiAMt1B45QAAAA",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 1},
+ "imageId": "9FCB2543EC6F2F798746BC7E9F6B9D94A713D473", "accentColor": "B1871A"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=8AA7539C620C03F995A0A10E2B622D7AD0740341&simid=608007504454749783",
+ "name": "The Barcelona | Beaverton, OR - Official Website", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.VCvnp7eTMg_88gENn7y67AHaE7&pid=Api",
+ "datePublished": "2013-05-11T17:09:00.0000000Z", "contentUrl": "http:\/\/www.beavertonoregon.gov\/ImageRepository\/Path?filePath=%2fDocuments%5cContent%5c598%5c1199%5c1214%5c1230%2fBarcelona-name-above-the-main-entrance.jpg",
+ "hostPageUrl": "http:\/\/www.beavertonoregon.gov\/index.aspx?NID=1279", "contentSize":
+ "31862 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "www.beavertonoregon.gov\/index.aspx?NID=1279",
+ "width": 600, "height": 399, "thumbnail": {"width": 474, "height": 315}, "imageInsightsToken":
+ "ccid_VCvnp7eT*mid_8AA7539C620C03F995A0A10E2B622D7AD0740341*simid_608007504454749783*thid_OIP.VCvnp7eTMg!_88gENn7y67AHaE7",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 1},
+ "imageId": "8AA7539C620C03F995A0A10E2B622D7AD0740341", "accentColor": "6D4524"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=barcelona+(site%3agov+OR+site%3amil)&id=7EA72A570DBEB16446D0A9645A42E22F9ED2B1F0&simid=608041623711515610",
+ "name": "Creative Ambassador: Andrea Ariel | AustinTexas.gov - The Official
+ Website of the City of Austin", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.Au-J-Rg4J-cuetbscVGp5gHaFh&pid=Api",
+ "datePublished": "2018-06-15T05:02:00.0000000Z", "contentUrl": "http:\/\/www.austintexas.gov\/sites\/default\/files\/files\/EGRSO\/ariel_barcelona.jpg",
+ "hostPageUrl": "http:\/\/www.austintexas.gov\/blog\/creative-ambassador-andrea-ariel",
+ "contentSize": "310137 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.austintexas.gov\/blog\/creative-ambassador-andrea-ariel", "width": 600,
+ "height": 447, "thumbnail": {"width": 474, "height": 353}, "imageInsightsToken":
+ "ccid_Au+J+Rg4*mid_7EA72A570DBEB16446D0A9645A42E22F9ED2B1F0*simid_608041623711515610*thid_OIP.Au-J-Rg4J-cuetbscVGp5gHaFh",
+ "insightsMetadata": {"pagesIncludingCount": 1, "availableSizesCount": 1},
+ "imageId": "7EA72A570DBEB16446D0A9645A42E22F9ED2B1F0", "accentColor": "A0682B"}],
+ "queryExpansions": [{"text": "FC Barcelona", "displayText": "FC", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=FC+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Venezuela", "displayText": "Venezuela", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Venezuela&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venezuela%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Venezuela&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venezuela%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Venezuela&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spain", "displayText": "Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Las Ramblas Barcelona", "displayText": "Las Ramblas", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Las+Ramblas+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Las+Ramblas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Las+Ramblas+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Las+Ramblas%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Las+Ramblas+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Gaudi Barcelona", "displayText": "Gaudi", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Gaudi+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gaudi%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Gaudi+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gaudi%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Gaudi+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sagrada Familia Barcelona", "displayText": "Sagrada Familia", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Sagrada+Familia+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sagrada+Familia%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sagrada+Familia+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sagrada+Familia%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sagrada+Familia+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Park Guell Barcelona", "displayText": "Park Guell", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Park+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Park+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Park+Guell+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Chair", "displayText": "Chair", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Chair&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Chair&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Chair%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Chair&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Gothic Quarter Barcelona", "displayText": "Gothic Quarter", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Gothic+Quarter+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gothic+Quarter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Gothic+Quarter+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Gothic+Quarter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Gothic+Quarter+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Statues", "displayText": "Statues", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Statues&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statues%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Statues&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Statues%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Statues&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Cathedral", "displayText": "Cathedral", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Cathedral&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cathedral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Cathedral&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cathedral%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Cathedral&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Monuments", "displayText": "Monuments", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Monuments&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Monuments%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Monuments&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Monuments%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Monuments&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Montjuic Barcelona", "displayText": "Montjuic", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Montjuic+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montjuic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Montjuic+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montjuic%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Montjuic+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "La Pedrera Barcelona", "displayText": "La Pedrera", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=La+Pedrera+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Pedrera%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=La+Pedrera+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Pedrera%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=La+Pedrera+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Camp Nou Barcelona", "displayText": "Camp Nou", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Camp+Nou+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Camp+Nou%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Camp+Nou+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Camp+Nou%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Camp+Nou+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Neymar Barcelona", "displayText": "Neymar", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Neymar+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neymar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Neymar+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neymar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Neymar+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Dani Alves Barcelona", "displayText": "Dani Alves", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Dani+Alves+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dani+Alves%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Dani+Alves+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Dani+Alves%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Dani+Alves+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona La Liga", "displayText": "La Liga", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+La+Liga&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Liga%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+La+Liga&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Liga%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+La+Liga&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Pavilion", "displayText": "Pavilion", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Pavilion&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pavilion%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Pavilion&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pavilion%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Pavilion&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Casa Batllo Barcelona", "displayText": "Casa Batllo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Casa+Batllo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Batllo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Casa+Batllo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Batllo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Casa+Batllo+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Real Madrid vs Barcelona", "displayText": "Real Madrid vs", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Real+Madrid+vs+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Real+Madrid+vs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Real+Madrid+vs+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Real+Madrid+vs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Real+Madrid+vs+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Architecture", "displayText": "Architecture", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Architecture&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Architecture%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Architecture&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Architecture%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Architecture&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Landscape", "displayText": "Landscape", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Landscape&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscape%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Landscape&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscape%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Landscape&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Skyline", "displayText": "Skyline", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Skyline&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Skyline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Skyline&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Skyline%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Skyline&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Aquarium", "displayText": "Aquarium", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Aquarium&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Aquarium%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Aquarium&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Aquarium%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Aquarium&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Zoo", "displayText": "Zoo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Zoo&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Zoo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Zoo&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Zoo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Zoo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Animals", "displayText": "Animals", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Animals&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animals%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Animals&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animals%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Animals&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Montserrat Barcelona", "displayText": "Montserrat", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Montserrat+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montserrat%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Montserrat+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Montserrat%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Montserrat+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Airport", "displayText": "Airport", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Airport&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Airport%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Airport&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Airport%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Airport&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "W Hotel Barcelona", "displayText": "W Hotel", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=W+Hotel+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22W+Hotel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=W+Hotel+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22W+Hotel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=W+Hotel+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Casa Mila Barcelona", "displayText": "Casa Mila", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Casa+Mila+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Mila%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Casa+Mila+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Casa+Mila%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Casa+Mila+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "La Boqueria Barcelona", "displayText": "La Boqueria", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=La+Boqueria+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Boqueria%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=La+Boqueria+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22La+Boqueria%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=La+Boqueria+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Tibidabo Barcelona", "displayText": "Tibidabo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Tibidabo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tibidabo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Tibidabo+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tibidabo%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Tibidabo+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Neighborhoods", "displayText": "Neighborhoods", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Neighborhoods&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neighborhoods%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Neighborhoods&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neighborhoods%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Neighborhoods&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Barrios", "displayText": "Barrios", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Barrios&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barrios%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Barrios&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barrios%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Barrios&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Streets", "displayText": "Streets", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Streets&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Streets%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Streets&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Streets%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Streets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "El Barcelona", "displayText": "El", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=El+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22El%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=El+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22El%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=El+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spanish", "displayText": "Spanish", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spanish&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Spanish&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spanish%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Spanish&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Ciudad", "displayText": "Ciudad", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Ciudad&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ciudad%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Ciudad&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ciudad%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Ciudad&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Parque Guell Barcelona", "displayText": "Parque Guell", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Parque+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Parque+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Parque+Guell+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Parque+Guell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Parque+Guell+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "barcelona", "suggestions": [{"text": "Seville,
+ Spain", "displayText": "Seville, Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Seville%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Seville%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Seville%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Seville%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Seville%2c+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Paris", "displayText": "Paris", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Paris&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paris%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Paris&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paris%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Paris&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Rome", "displayText": "Rome", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Rome&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Rome&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rome%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Rome&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "London", "displayText": "London", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=London&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22London%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=London&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22London%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=London&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Malaga, Spain", "displayText": "Malaga, Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Malaga%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Malaga%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Malaga%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Malaga%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Malaga%2c+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Lisbon Portugal", "displayText": "Lisbon Portugal", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Lisbon+Portugal&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lisbon+Portugal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Lisbon+Portugal&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Lisbon+Portugal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Lisbon+Portugal&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Milan Italy", "displayText": "Milan Italy", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Milan+Italy&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Milan+Italy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Milan+Italy&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Milan+Italy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Milan+Italy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Granada, Spain", "displayText": "Granada, Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Granada%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Granada%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Granada%2c+Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Granada%2c+Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Granada%2c+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Classis of Amsterdam", "displayText": "Classis of Amsterdam", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Classis+of+Amsterdam&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classis+of+Amsterdam%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Classis+of+Amsterdam&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Classis+of+Amsterdam%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Classis+of+Amsterdam&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Berlin Germany", "displayText": "Berlin Germany", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Berlin+Germany&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Berlin+Germany%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Berlin+Germany&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Berlin+Germany%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Berlin+Germany&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Istanbul", "displayText": "Istanbul", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Istanbul&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Istanbul%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Istanbul&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Istanbul%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Istanbul&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Prague", "displayText": "Prague", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Prague&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Prague%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Prague&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Prague%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Prague&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Park Güell", "displayText": "Park Güell", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Park+G%c3%bcell&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+G%c3%bcell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Park+G%c3%bcell&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Park+G%c3%bcell%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Park+G%c3%bcell&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "FC Barcelona", "displayText": "FC Barcelona", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC+Barcelona%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=FC+Barcelona&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22FC+Barcelona%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=FC+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Spain", "displayText": "Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Spain&tq=%7b%22pq%22%3a%22barcelona+(site%3agov+OR+site%3amil)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22barcelona%22%2c%22pv%22%3a%22barcelona%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3agov%22%2c%22pv%22%3a%22(site%3agov%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22OR%22%2c%22pv%22%3a%22OR%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22site%3amil)%22%2c%22pv%22%3a%22site%3amil)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Spain%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:gov", "suggestions": []}, {"pivot": "OR", "suggestions":
+ []}, {"pivot": "site:mil)", "suggestions": []}], "relatedSearches": [{"text":
+ "FC Barcelona", "displayText": "FC Barcelona", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=FC+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=FC+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Soccer", "displayText": "Barcelona Soccer", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Soccer&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Soccer",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Soccer&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Logo", "displayText": "Barcelona Logo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Logo&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spain", "displayText": "Barcelona Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spain&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Spain",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Map", "displayText": "Barcelona Map", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Map&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Map",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Map&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Team", "displayText": "Barcelona Team", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Team&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Team",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Team&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spain Beaches", "displayText": "Barcelona Spain Beaches",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spain+Beaches&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Spain+Beaches",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Spain+Beaches&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Spain Attractions", "displayText": "Barcelona Spain Attractions",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Spain+Attractions&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Spain+Attractions",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Spain+Attractions&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Madrid", "displayText": "Madrid", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Madrid&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Madrid",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Madrid&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Real Madrid", "displayText": "Real Madrid", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Real+Madrid&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Real+Madrid",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Real+Madrid&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Messi", "displayText": "Messi", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Messi&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Messi",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Messi&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Soccer Team", "displayText": "Barcelona Soccer Team",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Soccer+Team&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Soccer+Team",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Soccer+Team&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona City", "displayText": "Barcelona City", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+City&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+City",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+City&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Flag", "displayText": "Barcelona Flag", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Flag&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Flag",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Flag&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Soccer Logo", "displayText": "Barcelona Soccer Logo",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Soccer+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Soccer+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Soccer+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Messi Barcelona", "displayText": "Messi Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Messi+Barcelona&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Messi+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Messi+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Wallpaper", "displayText": "Barcelona Wallpaper", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Wallpaper&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Wallpaper",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Wallpaper&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Spain", "displayText": "Spain", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Spain&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Spain",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Valencia", "displayText": "Valencia", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Valencia&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Valencia",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Valencia&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Beaches", "displayText": "Barcelona Beaches", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Beaches&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Beaches",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Beaches&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Hotels", "displayText": "Barcelona Hotels", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Hotels&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Hotels",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Hotels&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Catalonia", "displayText": "Catalonia", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Catalonia&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Catalonia",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Catalonia&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ibiza", "displayText": "Ibiza", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ibiza&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ibiza",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Ibiza&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sagrada Familia Barcelona", "displayText": "Sagrada Familia Barcelona",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sagrada+Familia+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sagrada+Familia+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sagrada+Familia+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Gaudi Barcelona", "displayText": "Gaudi Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Gaudi+Barcelona&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Gaudi+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Gaudi+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Jersey", "displayText": "Barcelona Jersey", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Jersey&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Jersey",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Jersey&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Club Barcelona", "displayText": "Club Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Club+Barcelona&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Club+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Club+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Streets", "displayText": "Barcelona Streets", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Streets&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Streets",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Streets&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Food", "displayText": "Barcelona Food", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Food&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Food",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Food&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Cathedral", "displayText": "Barcelona Cathedral", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Cathedral&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Cathedral",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Barcelona+Cathedral&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Stadium", "displayText": "Barcelona Stadium", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Stadium&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Stadium",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Stadium&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Valencia Spain", "displayText": "Valencia Spain", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Valencia+Spain&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Valencia+Spain",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Valencia+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "FCB", "displayText": "FCB", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=FCB&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=FCB",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=FCB&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sagrada Familia", "displayText": "Sagrada Familia", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Sagrada+Familia&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sagrada+Familia",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Sagrada+Familia&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Football", "displayText": "Barcelona Football", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Football&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Football",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Football&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Players", "displayText": "Barcelona Players", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Players&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Players",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barcelona+Players&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Football Club", "displayText": "Barcelona Football Club",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Barcelona+Football+Club&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Football+Club",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Barcelona+Football+Club&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Park Guell Barcelona", "displayText": "Park Guell Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Park+Guell+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Park+Guell+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Park+Guell+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Escudo Barcelona", "displayText": "Escudo Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Escudo+Barcelona&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Escudo+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Escudo+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona People", "displayText": "Barcelona People", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+People&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+People",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+People&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Port of Barcelona", "displayText": "Port of Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Port+of+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Port+of+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Port+of+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "University of Barcelona", "displayText": "University of Barcelona",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=University+of+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=University+of+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=University+of+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Real Madrid vs Barcelona", "displayText": "Real Madrid vs Barcelona",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Real+Madrid+vs+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Real+Madrid+vs+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Real+Madrid+vs+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "FC Barcelona Logo", "displayText": "FC Barcelona Logo", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=FC+Barcelona+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=FC+Barcelona+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Barcelona Scenery", "displayText": "Barcelona Scenery", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Barcelona+Scenery&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Barcelona+Scenery",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Barcelona+Scenery&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Food in Barcelona Spain", "displayText": "Food in Barcelona Spain",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Food+in+Barcelona+Spain&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Food+in+Barcelona+Spain",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Food+in+Barcelona+Spain&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fotos De Barcelona", "displayText": "Fotos De Barcelona", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Fotos+De+Barcelona&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Fotos+De+Barcelona",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Fotos+De+Barcelona&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "FC Barcelona Soccer", "displayText": "FC Barcelona Soccer", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=FC+Barcelona+Soccer&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=FC+Barcelona+Soccer",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=FC+Barcelona+Soccer&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}'
+ http_version:
+ recorded_at: Mon, 08 Oct 2018 18:25:39 GMT
+recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Video_news_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Video_news_search.yml
index f719176e39..65cc302919 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Video_news_search.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Video_news_search.yml
@@ -634,4 +634,1351 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:45:31 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=video%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4309'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:22 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=309AEA8A192664481BCBE62618F1657E; path=/; expires=Sat, 14-Dec-2019 22:41:23
+ GMT; domain=bingapis.com
+ - MUIDB=309AEA8A192664481BCBE62618F1657E; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:23 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:22 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=B46AE939FC494D718A2B1062F083E744&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:22 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:22
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1EA10BAF633168D23C69070362E66910; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:23 GMT; domain=bingapis.com
+ - _SS=SID=1EA10BAF633168D23C69070362E66910; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BB2FB958E73248FEA4984E77F9BBF8F1
+ X-Msedge-Clientid:
+ - 309AEA8A192664481BCBE62618F1657E
+ X-Msapi-Userstate:
+ - 806a
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BB2FB958E73248FEA4984E77F9BBF8F1 Ref B: CO1EDGE0908 Ref C: 2018-11-19T22:41:23Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:22 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=4293CF9F1AF54FB6B60B8E96F1F0C57E&CID=309AEA8A192664481BCBE62618F1657E&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=4293CF9F1AF54FB6B60B8E96F1F0C57E&CID=309AEA8A192664481BCBE62618F1657E&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=video+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5429.1", "totalEstimatedMatches": 28500000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "NASA Video Gallery | NASA", "url": "https:\/\/www.nasa.gov\/multimedia\/videogallery\/index.html",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "NASA"}], "displayUrl":
+ "https:\/\/www.nasa.gov\/multimedia\/videogallery", "snippet": "Watch
+ or download the latest launch videos, mission updates, animations, This Week
+ @NASA, ScienceCast and more.", "dateLastCrawled": "2018-11-16T02:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Videos
+ | Idaho Fish and Game", "url": "https:\/\/idfg.idaho.gov\/media\/video", "urlPingSuffix":
+ "DevEx,5072.1", "displayUrl": "https:\/\/idfg.idaho.gov\/media\/video",
+ "snippet": "Fish and Game Video Playlists | Fish & Game Video Loading
+ Video... Loading Video Playlist... Fish and Game Video Playlists. Skip
+ to main content. Idaho » Department of Fish and Game. Buy a License; Idaho
+ Fish and Game ... Videos from Idaho Fish and Game''s YouTube Channel.",
+ "dateLastCrawled": "2018-11-14T23:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Videos : U.S. Bureau of Labor Statistics", "url": "https:\/\/www.bls.gov\/video\/",
+ "urlPingSuffix": "DevEx,5086.1", "displayUrl": "https:\/\/www.bls.gov\/video",
+ "snippet": "The U.S. Bureau of Labor Statistics has many sources of data
+ on pay and benefits. Ingredients for Multifactor Productivity. ... This video
+ discusses BLS projections of occupational openings from workers who leave
+ an occupation permanently. Introduction to the Producer Price Index.", "dateLastCrawled":
+ "2018-11-12T20:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Video | Newsroom | Office of Inspector General | U.S ...", "url":
+ "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp", "urlPingSuffix": "DevEx,5100.1",
+ "displayUrl": "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp", "snippet":
+ "Video Eye on Oversight: Cybersecurity October 9, 2018. OIG recognizes Protecting
+ HHS Data, Systems, and Beneficiaries from Cybersecurity Threats as a top management
+ and performance challenge facing HHS.", "dateLastCrawled": "2018-11-10T03:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Video
+ | Congress.gov | Library of Congress", "url": "https:\/\/www.congress.gov\/video",
+ "urlPingSuffix": "DevEx,5114.1", "about": [{"name": "Library of Congress"}],
+ "displayUrl": "https:\/\/www.congress.gov\/video", "snippet": "All video
+ on Congress.gov plus links to resources, including House and Senate video.
+ Two-Minute Tips A series of short videos designed to highlight useful features
+ of Congress.gov. The Legislative Process Brief videos about introducing legislation,
+ committee and House and Senate consideration, conference committees, and presidential
+ vetoes.", "dateLastCrawled": "2018-11-09T00:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Videos | DOJ | Department of Justice", "url": "https:\/\/www.justice.gov\/videos",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/www.justice.gov\/videos",
+ "snippet": "Filter by video category. Events (137) Apply Events filter ;
+ Press Conferences & Statements (167) ... Videos . Email updates. Keywords
+ . Items per page . U.S. Charges Russian GRU Officers with International Hacking
+ and Related Influence and Disinformation Operations.", "dateLastCrawled":
+ "2018-10-10T12:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "NOAA''s National Ocean Service: Ocean Video", "url": "https:\/\/oceanservice.noaa.gov\/video\/",
+ "urlPingSuffix": "DevEx,5145.1", "displayUrl": "https:\/\/oceanservice.noaa.gov\/video",
+ "snippet": "The Coral Reef Economy 5 Oct 2017. Coral reefs are one of Earth’s
+ most productive ecosystems — both in terms of biology and cold, hard cash.
+ Healthy coral reef ecosystems do everything from supporting millions of jobs
+ to protecting lives and valuable coastal infrastructure, like hotels and roads,
+ from storms and waves.", "dateLastCrawled": "2018-11-13T16:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Options
+ for Consideration Active Shooter Preparedness Video", "url": "https:\/\/www.dhs.gov\/options-consideration-active-shooter-preparedness-video",
+ "urlPingSuffix": "DevEx,5161.1", "displayUrl": "https:\/\/www.dhs.gov\/options-consideration-active-shooter...",
+ "snippet": "The Options for Consideration video demonstrates possible actions
+ that individuals can take if confronted with an active shooter scenario. This
+ instructive video reviews the choices of running, hiding, or as an option
+ of last resort, fighting the shooter.", "dateLastCrawled": "2018-11-08T03:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Videos
+ - Jet Propulsion Laboratory", "url": "https:\/\/www.jpl.nasa.gov\/video\/",
+ "urlPingSuffix": "DevEx,5175.1", "displayUrl": "https:\/\/www.jpl.nasa.gov\/video",
+ "snippet": "Find out more in this 60-second video from NASA''s Jet Propulsion
+ Laboratory. March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base.
+ March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base NASA''s InSight
+ spacecraft arrived at Vandenberg Air Force Base, California, to begin final
+ preparations for launch. ...", "dateLastCrawled": "2018-11-15T23:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Videos
+ | Products | SRS", "url": "http:\/\/www.srs.fs.usda.gov\/video\/", "urlPingSuffix":
+ "DevEx,5189.1", "displayUrl": "www.srs.fs.usda.gov\/video", "snippet": "Southern
+ Research Station: Caring for the Land. Check out this video highlighting
+ some of the people and science that makes the Southern Research Station part
+ of the leading organization for research on natural resource management and
+ sustainability in the United States.", "dateLastCrawled": "2018-11-09T02:51:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Videos
+ — FBI", "url": "https:\/\/www.fbi.gov\/news\/videos", "urlPingSuffix": "DevEx,5204.1",
+ "displayUrl": "https:\/\/www.fbi.gov\/news\/videos", "snippet": "A webpage
+ compiling the various videos pertaining to the stories, press releases,
+ and wanted person information on FBI.gov.", "dateLastCrawled": "2018-11-16T14:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "OSHA
+ Videos | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/video\/",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.osha.gov\/video",
+ "snippet": "Thank You for Visiting Our Website You are exiting the Department
+ of Labor''s Web server. The Department of Labor does not endorse, takes no
+ responsibility for, and exercises no control over the linked organization
+ or its views, or contents, nor does it vouch for the accuracy or accessibility
+ of the information contained on the destination server.", "dateLastCrawled":
+ "2018-11-10T01:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "NSSL Video", "url": "https:\/\/www.nssl.noaa.gov\/news\/video\/",
+ "urlPingSuffix": "DevEx,5232.1", "about": [{"name": "National Severe Storms
+ Laboratory"}], "displayUrl": "https:\/\/www.nssl.noaa.gov\/news\/video",
+ "snippet": "This is the focus of researchers at the National Severe Storms
+ Laboratory. This brief video, featuring NSSL Director, Dr. Jeff Kimpel,
+ provides an overview of the research conducted at NSSL, highlighting the three
+ main topics of weather radar, hydrometeorology, and forecast and warning improvements.",
+ "dateLastCrawled": "2018-11-13T08:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Videos | Rover Readies for Second Drilling", "url": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "urlPingSuffix": "DevEx,5244.1", "displayUrl": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "snippet": "Captioned Video: › download. Ogv Format: › download › Online
+ Video Catalog. You Might Also Like November brings planets, an asteroid,
+ a comet and the Leonids What''s Up - November 2018. When NASA''s InSight descends
+ to the Red Planet on Nov. 26, 2018, it is guaranteed to be a white-knuckle
+ event. InSight Landing on Mars ...", "dateLastCrawled": "2018-11-17T11:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Impact
+ Texas Teen Drivers", "url": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD\/",
+ "urlPingSuffix": "DevEx,5258.1", "displayUrl": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD",
+ "snippet": "Course Overview. Discover why Impact Texas Teen Drivers was
+ created and how this program is implemented into a driver''s license learning
+ curriculum to positively impact highway safety.", "dateLastCrawled": "2018-11-15T01:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Video",
+ "url": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm", "urlPingSuffix":
+ "DevEx,5273.1", "displayUrl": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm",
+ "snippet": "Video interviews, press events, trainings, and seminars | Provided
+ online by the NIEHS to cover the latest topics within the institute. Video
+ interviews, press events, trainings, and seminars | Provided online by the
+ NIEHS to cover the latest topics within the institute", "dateLastCrawled":
+ "2018-11-16T06:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "The Fed - Videos", "url": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "urlPingSuffix": "DevEx,5287.1", "displayUrl": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "snippet": "The Federal Reserve Board of Governors in Washington DC. Board
+ of Governors of the Federal Reserve System. The Federal Reserve, the central
+ bank of the United States, provides the nation with a safe, flexible, and
+ stable monetary and financial system.", "dateLastCrawled": "2018-11-13T07:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Video
+ - wpafb.af.mil", "url": "https:\/\/www.wpafb.af.mil\/News\/Video\/", "urlPingSuffix":
+ "DevEx,5299.1", "displayUrl": "https:\/\/www.wpafb.af.mil\/News\/Video",
+ "snippet": "The 14th Annual Pumpkin Chuck event took place behind the National
+ Museum of the United States Air Force, Wright-Patteson Air Force Base, Ohio,
+ November 5, 2018.", "dateLastCrawled": "2018-11-16T05:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Alaskan Way
+ Viaduct - Program Videos", "url": "http:\/\/www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "snippet": "Raw video: Testing fire systems in the new tunnel (June 2018).
+ Narrated video: The smart systems in the new tunnel are designed to work
+ together to keep traffic moving safely (March 2018). Time-lapse video: Crews
+ place the final deck segment for the tunnel''s lower deck (March 2018).",
+ "dateLastCrawled": "2018-11-13T20:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Resources | Videos", "url": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos\/index.html",
+ "urlPingSuffix": "DevEx,5327.1", "displayUrl": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos",
+ "snippet": "In this video, Amanda talks about being rushed to the hospital,
+ where her baby was born 2 months early, at just 3 pounds. Amanda’s “Smoking,
+ Family, and Pain” Story Amanda tried her first cigarette when she was in elementary
+ school.", "dateLastCrawled": "2018-11-12T10:57:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:23 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=video%20usgovernment_channel_id%205%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3789'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:24 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=074AF1C70197619B344AFD6B004060FA; path=/; expires=Sat, 14-Dec-2019 22:41:24
+ GMT; domain=bingapis.com
+ - MUIDB=074AF1C70197619B344AFD6B004060FA; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:24 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:24 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=52280BD548EF409FA1C75C2821FBF96C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:24 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:24
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3F988ED765C76B7902F2827B64106AFD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:24 GMT; domain=bingapis.com
+ - _SS=SID=3F988ED765C76B7902F2827B64106AFD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 77CD441E91C54C15AA5F24ABBB4215EB
+ X-Msedge-Clientid:
+ - 074AF1C70197619B344AFD6B004060FA
+ X-Msapi-Userstate:
+ - f53f
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 77CD441E91C54C15AA5F24ABBB4215EB Ref B: CO1EDGE0407 Ref C: 2018-11-19T22:41:24Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:24 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A8D86908FAC249F79968068C5B817FDD&CID=074AF1C70197619B344AFD6B004060FA&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A8D86908FAC249F79968068C5B817FDD&CID=074AF1C70197619B344AFD6B004060FA&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=video+usgovernment_channel_id+5+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5409.1", "totalEstimatedMatches": 18, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "October
+ 13, 2006 FEMA Emergency Management Higher ...", "url": "https:\/\/training.fema.gov\/hiedu\/arrpt\/2006\/october\/oct%2013,%2006.doc",
+ "urlPingSuffix": "DevEx,5052.1", "displayUrl": "https:\/\/training.fema.gov\/hiedu\/arrpt\/2006\/october\/oct
+ 13, 06.doc", "snippet": "And this time around, it is a video abusing the
+ man who epitomised all that is best in mankind: love, compassion and generosity.
+ Clearly, even if the Muslims are prepared to forgive and forget those targeting
+ their faith and the Prophet, they are not willing to let go of the past themselves....
+ Clearly, there is a method in the madness.", "dateLastCrawled": "2018-11-15T18:27:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Wayne''s
+ Bibliography - FEMA", "url": "http:\/\/training.fema.gov\/hiedu\/docs\/wayne%20bibliography.doc",
+ "urlPingSuffix": "DevEx,5065.1", "displayUrl": "training.fema.gov\/hiedu\/docs\/wayne
+ bibliography.doc", "snippet": "Adventures of the Disaster Dudes – Master (2
+ copies of video) American Red Cross. A Year of Healing: The American Red
+ Cross Response to Hurricanes Katrina, Rita and Wilma.", "dateLastCrawled":
+ "2018-11-10T02:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "www.science.gov", "url": "https:\/\/www.science.gov\/topicpages\/i\/integrated+photonic+qubit.html",
+ "urlPingSuffix": "DevEx,5083.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/i\/integrated+photonic+qubit.html",
+ "snippet": "Integrated photonic quantum gates for polarization qubits. PubMed.
+ Crespi, Andrea; Ramponi, Roberta; Osellame, Roberto; Sansoni, Linda; Bongioanni,
+ Irene; Sciarrino ...", "dateLastCrawled": "2018-11-03T13:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "communication
+ support system: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/c\/communication+support+system.html",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/c\/communication+support+system.html",
+ "snippet": "Capable of providing Internet access, voice over Internet protocol,
+ e-mail, video teleconferencing, broadcast television, and other high-bandwidth
+ communications, the systems have provided communication during the wildfires
+ in California, after Hurricane Katrina in Mississippi, and following the 2010
+ Haiti earthquake.", "dateLastCrawled": "2018-11-05T22:39:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "spacecraft water
+ systems: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/s\/spacecraft+water+systems.html",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/s\/spacecraft+water+systems.html",
+ "snippet": "The IGDS was sized to iodinate the drinking water nominally consumed
+ by six men, 4.5 to 13.6 kg (10 to 30 lb) water per man-day with a + or -
+ 10 to 20% variation with iodine (I2) levels of 0.5 to 20 parts per million
+ (ppm).", "dateLastCrawled": "2018-11-03T04:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "processive run length: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/p\/processive+run+length.html",
+ "urlPingSuffix": "DevEx,5135.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/p\/processive+run+length.html",
+ "snippet": "Thirteen subjects were video-recorded as they ran at self-selected
+ slow and fast paces. Runners targeted a specific distance before the curb
+ for foot placement, and lengthened their step over the curb (p0.0001) regardless
+ of where the step over the curb was initiated.", "dateLastCrawled": "2018-11-03T06:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "www.science.gov",
+ "url": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma-associated+herpes",
+ "urlPingSuffix": "DevEx,5152.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma-associated+herpes",
+ "snippet": "Kaposi ''s Sarcoma Associated-Herpes Virus (KSHV) Seroprevalence
+ in Pregnant Women in South Africa. PubMed Central. 2010-01-01. Background
+ Factors previously associated with Kaposi", "dateLastCrawled": "2018-10-15T15:09:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "chemical
+ communication system: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/c\/chemical+communication+system.html",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/c\/chemical+communication+system...",
+ "snippet": "Secure video communications system. DOEpatents. Smith, Robert
+ L. 1991-01-01. A secure video communications system having at least one
+ command network formed by a combination of subsystems. The combination of
+ subsystems to include a video subsystem, an audio subsystem, a communications
+ subsystem, and a control subsystem.", "dateLastCrawled": "2018-10-27T00:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "fully
+ integrated assessment: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/f\/fully+integrated+assessment.html",
+ "urlPingSuffix": "DevEx,5186.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/f\/fully+integrated+assessment.html",
+ "snippet": "The resonators dimensions are 1x1x10.5 mm3 and 1x1x8.5 mm3
+ for green and infrared configurations, respectively. Presented laser devices,
+ with total dimensions of 40x52x120 mm3, are fully equipped with driving electronics,
+ pump diode, optical and mechanical components.", "dateLastCrawled": "2018-11-12T13:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "DrugFacts:
+ Synthetic Cathinones (\"Bath Salts\") | National ...", "url": "https:\/\/www.drugabuse.gov\/publications\/drugfacts\/synthetic-cathinones-bath-salts",
+ "urlPingSuffix": "DevEx,5202.1", "about": [{"name": "Bath salts"}, {"name":
+ "Bath salts"}], "displayUrl": "https:\/\/www.drugabuse.gov\/publications\/drugfacts\/synthetic...",
+ "snippet": "What are synthetic cathinones? Synthetic cathinones, more commonly
+ known as \"bath salts,\" are human-made stimulants chemically related to cathinone,
+ a substance found in the khat plant.", "dateLastCrawled": "2018-11-16T09:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "human-rated
+ spacecraft systems: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/h\/human-rated+spacecraft+systems.html",
+ "urlPingSuffix": "DevEx,5219.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/h\/human-rated+spacecraft...",
+ "snippet": "A video tape of one of our autonomous power systems using co-operating
+ expert systems, and advanced hardware will be presented. ... (May 5, 1961),
+ seventy-five manned entries have been made resulting in significant progress
+ in the understanding and development of Thermal Protection Systems (TPS) for
+ manned rated spacecraft.", "dateLastCrawled": "2018-10-26T22:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "absolute
+ parallelism 1929-1932: Topics by Science.gov", "url": "http:\/\/www.science.gov\/topicpages\/a\/absolute+parallelism+1929-1932.html",
+ "urlPingSuffix": "DevEx,5236.1", "displayUrl": "www.science.gov\/topicpages\/a\/absolute+parallelism+1929-1932.html",
+ "snippet": "A parallel version of CLIPS 5.1 has been developed to run on
+ Intel Hypercubes. The user interface is the same as that for CLIPS with some
+ added commands to allow for parallel calls. A complete version of CLIPS runs
+ on each node of the hypercube.", "dateLastCrawled": "2018-10-28T00:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "www.science.gov",
+ "url": "http:\/\/www.science.gov\/topicpages\/p\/parallel+discrete-ordinates+transport.html",
+ "urlPingSuffix": "DevEx,5254.1", "displayUrl": "www.science.gov\/topicpages\/p\/parallel+discrete-ordinates+transport...",
+ "snippet": "Solution of the within-group multidimensional discrete ordinates
+ transport equations on massively parallel architectures. NASA Astrophysics
+ Data System (ADS) Zerr, Robert Joseph.", "dateLastCrawled": "2018-09-16T02:51:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "parallel
+ cdm software: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/p\/parallel+cdm+software.html",
+ "urlPingSuffix": "DevEx,5272.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/p\/parallel+cdm+software.html",
+ "snippet": "Sample records for parallel cdm software ... implements parallel
+ processing for nearly real-time creation of panoramic mosaics of images of
+ terrain acquired by video cameras on an exploratory robotic vehicle (e.g.,
+ a Mars rover). Because the original images are typically acquired at various
+ camera positions and orientations, it is necessary to ...", "dateLastCrawled":
+ "2018-11-10T10:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "kaposi sarcoma herpes: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma+herpes",
+ "urlPingSuffix": "DevEx,5290.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma+herpes",
+ "snippet": "We have determined the 5{prime} and 3{prime} untranslated region
+ of the unspliced ORF11 transcript and identified both the transcription start
+ site and the transcription termination site. Coremore » promoter region, representing
+ ORF11 promoter activity, was mapped to a 159nt fragment 5{prime} most proximal
+ to the transcription start site.", "dateLastCrawled": "2018-09-18T09:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "wfii
+ parallel archive: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/w\/wfii+parallel+archive.html",
+ "urlPingSuffix": "DevEx,5307.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/w\/wfii+parallel+archive.html",
+ "snippet": "A parallel version of CLIPS 5.1 has been developed to run on
+ Intel Hypercubes. The user interface is the same as that for CLIPS with some
+ added commands to allow for parallel calls. A complete version of CLIPS runs
+ on each node of the hypercube. The system has been instrumented to display
+ the time spent in the match, recognize, and act cycles ...", "dateLastCrawled":
+ "2018-11-08T03:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "www.science.gov", "url": "https:\/\/www.science.gov\/topicpages\/s\/suicide+gene+herpes.html",
+ "urlPingSuffix": "DevEx,5324.1", "displayUrl": "https:\/\/www.science.gov\/topicpages\/s\/suicide+gene+herpes.html",
+ "snippet": "Suicide and the selfish gene. PubMed. Satora, Leszek. 2005-01-01.
+ The application of an evolutionary perspective to human behaviour generates
+ philosophical, political and scientif", "dateLastCrawled": "2018-10-26T09:24:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:24 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=video%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '4313'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:25 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3FFECEC7734E63702D19C26B72996280; path=/; expires=Sat, 14-Dec-2019 22:41:25
+ GMT; domain=bingapis.com
+ - MUIDB=3FFECEC7734E63702D19C26B72996280; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:25 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:25 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=EE1D9EFE657A4513AC7D125B44E469FF&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:25 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:25
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=04464B64A3636B78016B47C8A2B46ADD; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:25 GMT; domain=bingapis.com
+ - _SS=SID=04464B64A3636B78016B47C8A2B46ADD; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 063AD6A1F678416085690E3F1CC252FF
+ X-Msedge-Clientid:
+ - 3FFECEC7734E63702D19C26B72996280
+ X-Msapi-Userstate:
+ - f889
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 063AD6A1F678416085690E3F1CC252FF Ref B: CO1EDGE0414 Ref C: 2018-11-19T22:41:25Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:25 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=6D7FB7FE7092441795B0B5986CEEEB10&CID=3FFECEC7734E63702D19C26B72996280&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=6D7FB7FE7092441795B0B5986CEEEB10&CID=3FFECEC7734E63702D19C26B72996280&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=video+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5429.1", "totalEstimatedMatches": 28500000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "NASA Video Gallery | NASA", "url": "https:\/\/www.nasa.gov\/multimedia\/videogallery\/index.html",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "NASA"}], "displayUrl":
+ "https:\/\/www.nasa.gov\/multimedia\/videogallery", "snippet": "Watch
+ or download the latest launch videos, mission updates, animations, This Week
+ @NASA, ScienceCast and more.", "dateLastCrawled": "2018-11-16T02:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Videos
+ | Idaho Fish and Game", "url": "https:\/\/idfg.idaho.gov\/media\/video", "urlPingSuffix":
+ "DevEx,5072.1", "displayUrl": "https:\/\/idfg.idaho.gov\/media\/video",
+ "snippet": "Fish and Game Video Playlists | Fish & Game Video Loading
+ Video... Loading Video Playlist... Fish and Game Video Playlists. Skip
+ to main content. Idaho » Department of Fish and Game. Buy a License; Idaho
+ Fish and Game ... Videos from Idaho Fish and Game''s YouTube Channel.",
+ "dateLastCrawled": "2018-11-14T23:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Videos : U.S. Bureau of Labor Statistics", "url": "https:\/\/www.bls.gov\/video\/",
+ "urlPingSuffix": "DevEx,5086.1", "displayUrl": "https:\/\/www.bls.gov\/video",
+ "snippet": "The U.S. Bureau of Labor Statistics has many sources of data
+ on pay and benefits. Ingredients for Multifactor Productivity. ... This video
+ discusses BLS projections of occupational openings from workers who leave
+ an occupation permanently. Introduction to the Producer Price Index.", "dateLastCrawled":
+ "2018-11-12T20:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Video | Newsroom | Office of Inspector General | U.S ...", "url":
+ "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp", "urlPingSuffix": "DevEx,5100.1",
+ "displayUrl": "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp", "snippet":
+ "Video Eye on Oversight: Cybersecurity October 9, 2018. OIG recognizes Protecting
+ HHS Data, Systems, and Beneficiaries from Cybersecurity Threats as a top management
+ and performance challenge facing HHS.", "dateLastCrawled": "2018-11-10T03:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Video
+ | Congress.gov | Library of Congress", "url": "https:\/\/www.congress.gov\/video",
+ "urlPingSuffix": "DevEx,5114.1", "about": [{"name": "Library of Congress"}],
+ "displayUrl": "https:\/\/www.congress.gov\/video", "snippet": "All video
+ on Congress.gov plus links to resources, including House and Senate video.
+ Two-Minute Tips A series of short videos designed to highlight useful features
+ of Congress.gov. The Legislative Process Brief videos about introducing legislation,
+ committee and House and Senate consideration, conference committees, and presidential
+ vetoes.", "dateLastCrawled": "2018-11-09T00:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Videos | DOJ | Department of Justice", "url": "https:\/\/www.justice.gov\/videos",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/www.justice.gov\/videos",
+ "snippet": "Filter by video category. Events (137) Apply Events filter ;
+ Press Conferences & Statements (167) ... Videos . Email updates. Keywords
+ . Items per page . U.S. Charges Russian GRU Officers with International Hacking
+ and Related Influence and Disinformation Operations.", "dateLastCrawled":
+ "2018-10-10T12:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "NOAA''s National Ocean Service: Ocean Video", "url": "https:\/\/oceanservice.noaa.gov\/video\/",
+ "urlPingSuffix": "DevEx,5145.1", "displayUrl": "https:\/\/oceanservice.noaa.gov\/video",
+ "snippet": "The Coral Reef Economy 5 Oct 2017. Coral reefs are one of Earth’s
+ most productive ecosystems — both in terms of biology and cold, hard cash.
+ Healthy coral reef ecosystems do everything from supporting millions of jobs
+ to protecting lives and valuable coastal infrastructure, like hotels and roads,
+ from storms and waves.", "dateLastCrawled": "2018-11-13T16:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Options
+ for Consideration Active Shooter Preparedness Video", "url": "https:\/\/www.dhs.gov\/options-consideration-active-shooter-preparedness-video",
+ "urlPingSuffix": "DevEx,5161.1", "displayUrl": "https:\/\/www.dhs.gov\/options-consideration-active-shooter...",
+ "snippet": "The Options for Consideration video demonstrates possible actions
+ that individuals can take if confronted with an active shooter scenario. This
+ instructive video reviews the choices of running, hiding, or as an option
+ of last resort, fighting the shooter.", "dateLastCrawled": "2018-11-08T03:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Videos
+ - Jet Propulsion Laboratory", "url": "https:\/\/www.jpl.nasa.gov\/video\/",
+ "urlPingSuffix": "DevEx,5175.1", "displayUrl": "https:\/\/www.jpl.nasa.gov\/video",
+ "snippet": "Find out more in this 60-second video from NASA''s Jet Propulsion
+ Laboratory. March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base.
+ March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base NASA''s InSight
+ spacecraft arrived at Vandenberg Air Force Base, California, to begin final
+ preparations for launch. ...", "dateLastCrawled": "2018-11-15T23:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Videos
+ | Products | SRS", "url": "http:\/\/www.srs.fs.usda.gov\/video\/", "urlPingSuffix":
+ "DevEx,5189.1", "displayUrl": "www.srs.fs.usda.gov\/video", "snippet": "Southern
+ Research Station: Caring for the Land. Check out this video highlighting
+ some of the people and science that makes the Southern Research Station part
+ of the leading organization for research on natural resource management and
+ sustainability in the United States.", "dateLastCrawled": "2018-11-09T02:51:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Videos
+ — FBI", "url": "https:\/\/www.fbi.gov\/news\/videos", "urlPingSuffix": "DevEx,5204.1",
+ "displayUrl": "https:\/\/www.fbi.gov\/news\/videos", "snippet": "A webpage
+ compiling the various videos pertaining to the stories, press releases,
+ and wanted person information on FBI.gov.", "dateLastCrawled": "2018-11-16T14:01:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "OSHA
+ Videos | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/video\/",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.osha.gov\/video",
+ "snippet": "Thank You for Visiting Our Website You are exiting the Department
+ of Labor''s Web server. The Department of Labor does not endorse, takes no
+ responsibility for, and exercises no control over the linked organization
+ or its views, or contents, nor does it vouch for the accuracy or accessibility
+ of the information contained on the destination server.", "dateLastCrawled":
+ "2018-11-10T01:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "NSSL Video", "url": "https:\/\/www.nssl.noaa.gov\/news\/video\/",
+ "urlPingSuffix": "DevEx,5232.1", "about": [{"name": "National Severe Storms
+ Laboratory"}], "displayUrl": "https:\/\/www.nssl.noaa.gov\/news\/video",
+ "snippet": "This is the focus of researchers at the National Severe Storms
+ Laboratory. This brief video, featuring NSSL Director, Dr. Jeff Kimpel,
+ provides an overview of the research conducted at NSSL, highlighting the three
+ main topics of weather radar, hydrometeorology, and forecast and warning improvements.",
+ "dateLastCrawled": "2018-11-13T08:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Videos | Rover Readies for Second Drilling", "url": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "urlPingSuffix": "DevEx,5244.1", "displayUrl": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "snippet": "Captioned Video: › download. Ogv Format: › download › Online
+ Video Catalog. You Might Also Like November brings planets, an asteroid,
+ a comet and the Leonids What''s Up - November 2018. When NASA''s InSight descends
+ to the Red Planet on Nov. 26, 2018, it is guaranteed to be a white-knuckle
+ event. InSight Landing on Mars ...", "dateLastCrawled": "2018-11-17T11:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Impact
+ Texas Teen Drivers", "url": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD\/",
+ "urlPingSuffix": "DevEx,5258.1", "displayUrl": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD",
+ "snippet": "Course Overview. Discover why Impact Texas Teen Drivers was
+ created and how this program is implemented into a driver''s license learning
+ curriculum to positively impact highway safety.", "dateLastCrawled": "2018-11-15T01:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Video",
+ "url": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm", "urlPingSuffix":
+ "DevEx,5273.1", "displayUrl": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm",
+ "snippet": "Video interviews, press events, trainings, and seminars | Provided
+ online by the NIEHS to cover the latest topics within the institute. Video
+ interviews, press events, trainings, and seminars | Provided online by the
+ NIEHS to cover the latest topics within the institute", "dateLastCrawled":
+ "2018-11-16T06:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "The Fed - Videos", "url": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "urlPingSuffix": "DevEx,5287.1", "displayUrl": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "snippet": "The Federal Reserve Board of Governors in Washington DC. Board
+ of Governors of the Federal Reserve System. The Federal Reserve, the central
+ bank of the United States, provides the nation with a safe, flexible, and
+ stable monetary and financial system.", "dateLastCrawled": "2018-11-13T07:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Video
+ - wpafb.af.mil", "url": "https:\/\/www.wpafb.af.mil\/News\/Video\/", "urlPingSuffix":
+ "DevEx,5299.1", "displayUrl": "https:\/\/www.wpafb.af.mil\/News\/Video",
+ "snippet": "The 14th Annual Pumpkin Chuck event took place behind the National
+ Museum of the United States Air Force, Wright-Patteson Air Force Base, Ohio,
+ November 5, 2018.", "dateLastCrawled": "2018-11-16T05:45:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Alaskan Way
+ Viaduct - Program Videos", "url": "http:\/\/www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "snippet": "Raw video: Testing fire systems in the new tunnel (June 2018).
+ Narrated video: The smart systems in the new tunnel are designed to work
+ together to keep traffic moving safely (March 2018). Time-lapse video: Crews
+ place the final deck segment for the tunnel''s lower deck (March 2018).",
+ "dateLastCrawled": "2018-11-13T20:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Resources | Videos", "url": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos\/index.html",
+ "urlPingSuffix": "DevEx,5327.1", "displayUrl": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos",
+ "snippet": "In this video, Amanda talks about being rushed to the hospital,
+ where her baby was born 2 months early, at just 3 pounds. Amanda’s “Smoking,
+ Family, and Pain” Story Amanda tried her first cigarette when she was in elementary
+ school.", "dateLastCrawled": "2018-11-12T10:57:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:25 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=video%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:34 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 74BB989A27FC4DDC9D7C5498D2F02E3C
+ Bingapis-Sessionid:
+ - 2179F26531F84A25AD9CF85677EFC2D9
+ X-Msedge-Clientid:
+ - 363E6B1CA287613029EF67B0A3CB609B
+ X-Msapi-Userstate:
+ - c97c
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=228,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 74BB989A27FC4DDC9D7C5498D2F02E3C Ref B: BY3EDGE0417 Ref C: 2018-11-19T22:42:34Z'
+ Apim-Request-Id:
+ - bcce3ec4-710f-4958-a042-ccfb2519218f
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:34 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "video
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=video+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 28500000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "NASA Video Gallery | NASA", "url": "https:\/\/www.nasa.gov\/multimedia\/videogallery\/index.html",
+ "about": [{"name": "NASA"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.nasa.gov\/multimedia\/videogallery",
+ "snippet": "Watch or download the latest launch videos, mission updates, animations,
+ This Week @NASA, ScienceCast and more.", "dateLastCrawled": "2018-11-16T02:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Videos | Idaho Fish and Game", "url": "https:\/\/idfg.idaho.gov\/media\/video",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/idfg.idaho.gov\/media\/video",
+ "snippet": "Fish and Game Video Playlists | Fish & Game Video Loading
+ Video... Loading Video Playlist... Fish and Game Video Playlists. Skip
+ to main content. Idaho » Department of Fish and Game. Buy a License; Idaho
+ Fish and Game ... Videos from Idaho Fish and Game''s YouTube Channel.",
+ "dateLastCrawled": "2018-11-14T23:23:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Videos : U.S. Bureau of Labor Statistics", "url": "https:\/\/www.bls.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bls.gov\/video",
+ "snippet": "The U.S. Bureau of Labor Statistics has many sources of data
+ on pay and benefits. Ingredients for Multifactor Productivity. ... This video
+ discusses BLS projections of occupational openings from workers who leave
+ an occupation permanently. Introduction to the Producer Price Index.", "dateLastCrawled":
+ "2018-11-12T20:39:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "Video | Newsroom | Office of Inspector General | U.S ...", "url": "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp",
+ "snippet": "Video Eye on Oversight: Cybersecurity October 9, 2018. OIG recognizes
+ Protecting HHS Data, Systems, and Beneficiaries from Cybersecurity Threats
+ as a top management and performance challenge facing HHS.", "dateLastCrawled":
+ "2018-11-10T03:57:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "Video | Congress.gov | Library of Congress", "url": "https:\/\/www.congress.gov\/video",
+ "about": [{"name": "Library of Congress"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.congress.gov\/video", "snippet": "All video on Congress.gov
+ plus links to resources, including House and Senate video. Two-Minute Tips
+ A series of short videos designed to highlight useful features of Congress.gov.
+ The Legislative Process Brief videos about introducing legislation, committee
+ and House and Senate consideration, conference committees, and presidential
+ vetoes.", "dateLastCrawled": "2018-11-09T00:00:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Videos | DOJ | Department of Justice", "url": "https:\/\/www.justice.gov\/videos",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.justice.gov\/videos",
+ "snippet": "Filter by video category. Events (137) Apply Events filter ;
+ Press Conferences & Statements (167) ... Videos . Email updates. Keywords
+ . Items per page . U.S. Charges Russian GRU Officers with International Hacking
+ and Related Influence and Disinformation Operations.", "dateLastCrawled":
+ "2018-10-10T12:59:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "NOAA''s National Ocean Service: Ocean Video", "url": "https:\/\/oceanservice.noaa.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/oceanservice.noaa.gov\/video",
+ "snippet": "The Coral Reef Economy 5 Oct 2017. Coral reefs are one of Earth’s
+ most productive ecosystems — both in terms of biology and cold, hard cash.
+ Healthy coral reef ecosystems do everything from supporting millions of jobs
+ to protecting lives and valuable coastal infrastructure, like hotels and roads,
+ from storms and waves.", "dateLastCrawled": "2018-11-13T16:13:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Options for Consideration Active Shooter Preparedness Video",
+ "url": "https:\/\/www.dhs.gov\/options-consideration-active-shooter-preparedness-video",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dhs.gov\/options-consideration-active-shooter...",
+ "snippet": "The Options for Consideration video demonstrates possible actions
+ that individuals can take if confronted with an active shooter scenario. This
+ instructive video reviews the choices of running, hiding, or as an option
+ of last resort, fighting the shooter.", "dateLastCrawled": "2018-11-08T03:16:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Videos - Jet Propulsion Laboratory", "url": "https:\/\/www.jpl.nasa.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.jpl.nasa.gov\/video",
+ "snippet": "Find out more in this 60-second video from NASA''s Jet Propulsion
+ Laboratory. March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base.
+ March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base NASA''s InSight
+ spacecraft arrived at Vandenberg Air Force Base, California, to begin final
+ preparations for launch. ...", "dateLastCrawled": "2018-11-15T23:46:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Videos | Products | SRS", "url": "http:\/\/www.srs.fs.usda.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "www.srs.fs.usda.gov\/video", "snippet":
+ "Southern Research Station: Caring for the Land. Check out this video highlighting
+ some of the people and science that makes the Southern Research Station part
+ of the leading organization for research on natural resource management and
+ sustainability in the United States.", "dateLastCrawled": "2018-11-09T02:51:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Videos — FBI", "url": "https:\/\/www.fbi.gov\/news\/videos", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.fbi.gov\/news\/videos", "snippet":
+ "A webpage compiling the various videos pertaining to the stories, press
+ releases, and wanted person information on FBI.gov.", "dateLastCrawled":
+ "2018-11-16T14:01:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "OSHA Videos | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.osha.gov\/video",
+ "snippet": "Thank You for Visiting Our Website You are exiting the Department
+ of Labor''s Web server. The Department of Labor does not endorse, takes no
+ responsibility for, and exercises no control over the linked organization
+ or its views, or contents, nor does it vouch for the accuracy or accessibility
+ of the information contained on the destination server.", "dateLastCrawled":
+ "2018-11-10T01:31:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "NSSL Video", "url": "https:\/\/www.nssl.noaa.gov\/news\/video\/", "about":
+ [{"name": "National Severe Storms Laboratory"}], "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.nssl.noaa.gov\/news\/video", "snippet": "This
+ is the focus of researchers at the National Severe Storms Laboratory. This
+ brief video, featuring NSSL Director, Dr. Jeff Kimpel, provides an overview
+ of the research conducted at NSSL, highlighting the three main topics of weather
+ radar, hydrometeorology, and forecast and warning improvements.", "dateLastCrawled":
+ "2018-11-13T08:22:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "Videos | Rover Readies for Second Drilling", "url": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "snippet": "Captioned Video: › download. Ogv Format: › download › Online
+ Video Catalog. You Might Also Like November brings planets, an asteroid,
+ a comet and the Leonids What''s Up - November 2018. When NASA''s InSight descends
+ to the Red Planet on Nov. 26, 2018, it is guaranteed to be a white-knuckle
+ event. InSight Landing on Mars ...", "dateLastCrawled": "2018-11-17T11:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Impact Texas Teen Drivers", "url": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD",
+ "snippet": "Course Overview. Discover why Impact Texas Teen Drivers was
+ created and how this program is implemented into a driver''s license learning
+ curriculum to positively impact highway safety.", "dateLastCrawled": "2018-11-15T01:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Video", "url": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm",
+ "snippet": "Video interviews, press events, trainings, and seminars | Provided
+ online by the NIEHS to cover the latest topics within the institute. Video
+ interviews, press events, trainings, and seminars | Provided online by the
+ NIEHS to cover the latest topics within the institute", "dateLastCrawled":
+ "2018-11-16T06:04:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "The Fed - Videos", "url": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "snippet": "The Federal Reserve Board of Governors in Washington DC. Board
+ of Governors of the Federal Reserve System. The Federal Reserve, the central
+ bank of the United States, provides the nation with a safe, flexible, and
+ stable monetary and financial system.", "dateLastCrawled": "2018-11-13T07:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Video - wpafb.af.mil", "url": "https:\/\/www.wpafb.af.mil\/News\/Video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.wpafb.af.mil\/News\/Video",
+ "snippet": "The 14th Annual Pumpkin Chuck event took place behind the National
+ Museum of the United States Air Force, Wright-Patteson Air Force Base, Ohio,
+ November 5, 2018.", "dateLastCrawled": "2018-11-16T05:45:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Alaskan Way Viaduct - Program Videos", "url": "http:\/\/www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "isFamilyFriendly": true, "displayUrl": "www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "snippet": "Raw video: Testing fire systems in the new tunnel (June 2018).
+ Narrated video: The smart systems in the new tunnel are designed to work
+ together to keep traffic moving safely (March 2018). Time-lapse video: Crews
+ place the final deck segment for the tunnel''s lower deck (March 2018).",
+ "dateLastCrawled": "2018-11-13T20:59:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Resources | Videos", "url": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos\/index.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos",
+ "snippet": "In this video, Amanda talks about being rushed to the hospital,
+ where her baby was born 2 months early, at just 3 pounds. Amanda’s “Smoking,
+ Family, and Pain” Story Amanda tried her first cigarette when she was in elementary
+ school.", "dateLastCrawled": "2018-11-12T10:57:00.0000000Z", "language": "en",
+ "isNavigational": false}]}, "rankingResponse": {"mainline": {"items": [{"answerType":
+ "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:34 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=video%20usgovernment_channel_id%205%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:36 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 6E4F176002FF4C44B3BD2C5660BC61A9
+ Bingapis-Sessionid:
+ - F3420A8D6C5B4AB9B93B4086E9FDDF19
+ X-Msedge-Clientid:
+ - 2C6521CC8B646B5F33822D608A286A1C
+ X-Msapi-Userstate:
+ - 777c
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=163,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 6E4F176002FF4C44B3BD2C5660BC61A9 Ref B: BY3EDGE0306 Ref C: 2018-11-19T22:42:36Z'
+ Apim-Request-Id:
+ - 9a9d37bb-0917-4826-b9ae-b206662b829b
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:36 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "video
+ usgovernment_channel_id 5 (site:gov OR site:mil)"}, "webPages": {"webSearchUrl":
+ "https:\/\/www.bing.com\/search?q=video+usgovernment_channel_id+5+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 18, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "October 13, 2006 FEMA Emergency Management Higher ...", "url": "https:\/\/training.fema.gov\/hiedu\/arrpt\/2006\/october\/oct%2013,%2006.doc",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/training.fema.gov\/hiedu\/arrpt\/2006\/october\/oct
+ 13, 06.doc", "snippet": "And this time around, it is a video abusing the
+ man who epitomised all that is best in mankind: love, compassion and generosity.
+ Clearly, even if the Muslims are prepared to forgive and forget those targeting
+ their faith and the Prophet, they are not willing to let go of the past themselves....
+ Clearly, there is a method in the madness.", "dateLastCrawled": "2018-11-15T18:27:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Wayne''s Bibliography - FEMA", "url": "http:\/\/training.fema.gov\/hiedu\/docs\/wayne%20bibliography.doc",
+ "isFamilyFriendly": true, "displayUrl": "training.fema.gov\/hiedu\/docs\/wayne
+ bibliography.doc", "snippet": "Adventures of the Disaster Dudes – Master (2
+ copies of video) American Red Cross. A Year of Healing: The American Red
+ Cross Response to Hurricanes Katrina, Rita and Wilma.", "dateLastCrawled":
+ "2018-11-10T02:30:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "www.science.gov", "url": "https:\/\/www.science.gov\/topicpages\/i\/integrated+photonic+qubit.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/i\/integrated+photonic+qubit.html",
+ "snippet": "Integrated photonic quantum gates for polarization qubits. PubMed.
+ Crespi, Andrea; Ramponi, Roberta; Osellame, Roberto; Sansoni, Linda; Bongioanni,
+ Irene; Sciarrino ...", "dateLastCrawled": "2018-11-03T13:49:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "communication support system: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/c\/communication+support+system.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/c\/communication+support+system.html",
+ "snippet": "Capable of providing Internet access, voice over Internet protocol,
+ e-mail, video teleconferencing, broadcast television, and other high-bandwidth
+ communications, the systems have provided communication during the wildfires
+ in California, after Hurricane Katrina in Mississippi, and following the 2010
+ Haiti earthquake.", "dateLastCrawled": "2018-11-05T22:39:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "spacecraft water systems: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/s\/spacecraft+water+systems.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/s\/spacecraft+water+systems.html",
+ "snippet": "The IGDS was sized to iodinate the drinking water nominally consumed
+ by six men, 4.5 to 13.6 kg (10 to 30 lb) water per man-day with a + or -
+ 10 to 20% variation with iodine (I2) levels of 0.5 to 20 parts per million
+ (ppm).", "dateLastCrawled": "2018-11-03T04:45:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "processive run length: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/p\/processive+run+length.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/p\/processive+run+length.html",
+ "snippet": "Thirteen subjects were video-recorded as they ran at self-selected
+ slow and fast paces. Runners targeted a specific distance before the curb
+ for foot placement, and lengthened their step over the curb (p0.0001) regardless
+ of where the step over the curb was initiated.", "dateLastCrawled": "2018-11-03T06:31:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "www.science.gov", "url": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma-associated+herpes",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma-associated+herpes",
+ "snippet": "Kaposi ''s Sarcoma Associated-Herpes Virus (KSHV) Seroprevalence
+ in Pregnant Women in South Africa. PubMed Central. 2010-01-01. Background
+ Factors previously associated with Kaposi", "dateLastCrawled": "2018-10-15T15:09:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "chemical communication system: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/c\/chemical+communication+system.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/c\/chemical+communication+system...",
+ "snippet": "Secure video communications system. DOEpatents. Smith, Robert
+ L. 1991-01-01. A secure video communications system having at least one
+ command network formed by a combination of subsystems. The combination of
+ subsystems to include a video subsystem, an audio subsystem, a communications
+ subsystem, and a control subsystem.", "dateLastCrawled": "2018-10-27T00:33:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "fully integrated assessment: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/f\/fully+integrated+assessment.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/f\/fully+integrated+assessment.html",
+ "snippet": "The resonators dimensions are 1x1x10.5 mm3 and 1x1x8.5 mm3
+ for green and infrared configurations, respectively. Presented laser devices,
+ with total dimensions of 40x52x120 mm3, are fully equipped with driving electronics,
+ pump diode, optical and mechanical components.", "dateLastCrawled": "2018-11-12T13:37:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "DrugFacts: Synthetic Cathinones (\"Bath Salts\") | National ...",
+ "url": "https:\/\/www.drugabuse.gov\/publications\/drugfacts\/synthetic-cathinones-bath-salts",
+ "about": [{"name": "Bath salts"}, {"name": "Bath salts"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.drugabuse.gov\/publications\/drugfacts\/synthetic...",
+ "snippet": "What are synthetic cathinones? Synthetic cathinones, more commonly
+ known as \"bath salts,\" are human-made stimulants chemically related to cathinone,
+ a substance found in the khat plant.", "dateLastCrawled": "2018-11-16T09:29:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "human-rated spacecraft systems: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/h\/human-rated+spacecraft+systems.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/h\/human-rated+spacecraft...",
+ "snippet": "A video tape of one of our autonomous power systems using co-operating
+ expert systems, and advanced hardware will be presented. ... (May 5, 1961),
+ seventy-five manned entries have been made resulting in significant progress
+ in the understanding and development of Thermal Protection Systems (TPS) for
+ manned rated spacecraft.", "dateLastCrawled": "2018-10-26T22:02:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "absolute parallelism 1929-1932: Topics by Science.gov", "url": "http:\/\/www.science.gov\/topicpages\/a\/absolute+parallelism+1929-1932.html",
+ "isFamilyFriendly": true, "displayUrl": "www.science.gov\/topicpages\/a\/absolute+parallelism+1929-1932.html",
+ "snippet": "A parallel version of CLIPS 5.1 has been developed to run on
+ Intel Hypercubes. The user interface is the same as that for CLIPS with some
+ added commands to allow for parallel calls. A complete version of CLIPS runs
+ on each node of the hypercube.", "dateLastCrawled": "2018-10-28T00:10:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "www.science.gov", "url": "http:\/\/www.science.gov\/topicpages\/p\/parallel+discrete-ordinates+transport.html",
+ "isFamilyFriendly": true, "displayUrl": "www.science.gov\/topicpages\/p\/parallel+discrete-ordinates+transport...",
+ "snippet": "Solution of the within-group multidimensional discrete ordinates
+ transport equations on massively parallel architectures. NASA Astrophysics
+ Data System (ADS) Zerr, Robert Joseph.", "dateLastCrawled": "2018-09-16T02:51:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "parallel cdm software: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/p\/parallel+cdm+software.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/p\/parallel+cdm+software.html",
+ "snippet": "Sample records for parallel cdm software ... implements parallel
+ processing for nearly real-time creation of panoramic mosaics of images of
+ terrain acquired by video cameras on an exploratory robotic vehicle (e.g.,
+ a Mars rover). Because the original images are typically acquired at various
+ camera positions and orientations, it is necessary to ...", "dateLastCrawled":
+ "2018-11-10T10:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "kaposi sarcoma herpes: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma+herpes",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/k\/kaposi+sarcoma+herpes",
+ "snippet": "We have determined the 5{prime} and 3{prime} untranslated region
+ of the unspliced ORF11 transcript and identified both the transcription start
+ site and the transcription termination site. Coremore » promoter region, representing
+ ORF11 promoter activity, was mapped to a 159nt fragment 5{prime} most proximal
+ to the transcription start site.", "dateLastCrawled": "2018-09-18T09:31:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "wfii parallel archive: Topics by Science.gov", "url": "https:\/\/www.science.gov\/topicpages\/w\/wfii+parallel+archive.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/w\/wfii+parallel+archive.html",
+ "snippet": "A parallel version of CLIPS 5.1 has been developed to run on
+ Intel Hypercubes. The user interface is the same as that for CLIPS with some
+ added commands to allow for parallel calls. A complete version of CLIPS runs
+ on each node of the hypercube. The system has been instrumented to display
+ the time spent in the match, recognize, and act cycles ...", "dateLastCrawled":
+ "2018-11-08T03:58:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "www.science.gov", "url": "https:\/\/www.science.gov\/topicpages\/s\/suicide+gene+herpes.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.science.gov\/topicpages\/s\/suicide+gene+herpes.html",
+ "snippet": "Suicide and the selfish gene. PubMed. Satora, Leszek. 2005-01-01.
+ The application of an evolutionary perspective to human behaviour generates
+ philosophical, political and scientif", "dateLastCrawled": "2018-10-26T09:24:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:36 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=video%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:37 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - DBA304F8FC8349149DA657B0609663DD
+ Bingapis-Sessionid:
+ - 0D836F5767FC4B46B02989A20617B6C9
+ X-Msedge-Clientid:
+ - 22CA9E893B606576360492253A2C6407
+ X-Msapi-Userstate:
+ - 3f05
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=120,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: DBA304F8FC8349149DA657B0609663DD Ref B: BY3EDGE0310 Ref C: 2018-11-19T22:42:37Z'
+ Apim-Request-Id:
+ - bec96bd0-d7ac-42c0-8b96-648aa327cf98
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:36 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "video
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=video+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 28500000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "NASA Video Gallery | NASA", "url": "https:\/\/www.nasa.gov\/multimedia\/videogallery\/index.html",
+ "about": [{"name": "NASA"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.nasa.gov\/multimedia\/videogallery",
+ "snippet": "Watch or download the latest launch videos, mission updates, animations,
+ This Week @NASA, ScienceCast and more.", "dateLastCrawled": "2018-11-16T02:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Videos | Idaho Fish and Game", "url": "https:\/\/idfg.idaho.gov\/media\/video",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/idfg.idaho.gov\/media\/video",
+ "snippet": "Fish and Game Video Playlists | Fish & Game Video Loading
+ Video... Loading Video Playlist... Fish and Game Video Playlists. Skip
+ to main content. Idaho » Department of Fish and Game. Buy a License; Idaho
+ Fish and Game ... Videos from Idaho Fish and Game''s YouTube Channel.",
+ "dateLastCrawled": "2018-11-14T23:23:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Videos : U.S. Bureau of Labor Statistics", "url": "https:\/\/www.bls.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bls.gov\/video",
+ "snippet": "The U.S. Bureau of Labor Statistics has many sources of data
+ on pay and benefits. Ingredients for Multifactor Productivity. ... This video
+ discusses BLS projections of occupational openings from workers who leave
+ an occupation permanently. Introduction to the Producer Price Index.", "dateLastCrawled":
+ "2018-11-12T20:39:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "Video | Newsroom | Office of Inspector General | U.S ...", "url": "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/oig.hhs.gov\/newsroom\/video\/index.asp",
+ "snippet": "Video Eye on Oversight: Cybersecurity October 9, 2018. OIG recognizes
+ Protecting HHS Data, Systems, and Beneficiaries from Cybersecurity Threats
+ as a top management and performance challenge facing HHS.", "dateLastCrawled":
+ "2018-11-10T03:57:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "Video | Congress.gov | Library of Congress", "url": "https:\/\/www.congress.gov\/video",
+ "about": [{"name": "Library of Congress"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.congress.gov\/video", "snippet": "All video on Congress.gov
+ plus links to resources, including House and Senate video. Two-Minute Tips
+ A series of short videos designed to highlight useful features of Congress.gov.
+ The Legislative Process Brief videos about introducing legislation, committee
+ and House and Senate consideration, conference committees, and presidential
+ vetoes.", "dateLastCrawled": "2018-11-09T00:00:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Videos | DOJ | Department of Justice", "url": "https:\/\/www.justice.gov\/videos",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.justice.gov\/videos",
+ "snippet": "Filter by video category. Events (137) Apply Events filter ;
+ Press Conferences & Statements (167) ... Videos . Email updates. Keywords
+ . Items per page . U.S. Charges Russian GRU Officers with International Hacking
+ and Related Influence and Disinformation Operations.", "dateLastCrawled":
+ "2018-10-10T12:59:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "NOAA''s National Ocean Service: Ocean Video", "url": "https:\/\/oceanservice.noaa.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/oceanservice.noaa.gov\/video",
+ "snippet": "The Coral Reef Economy 5 Oct 2017. Coral reefs are one of Earth’s
+ most productive ecosystems — both in terms of biology and cold, hard cash.
+ Healthy coral reef ecosystems do everything from supporting millions of jobs
+ to protecting lives and valuable coastal infrastructure, like hotels and roads,
+ from storms and waves.", "dateLastCrawled": "2018-11-13T16:13:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Options for Consideration Active Shooter Preparedness Video",
+ "url": "https:\/\/www.dhs.gov\/options-consideration-active-shooter-preparedness-video",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dhs.gov\/options-consideration-active-shooter...",
+ "snippet": "The Options for Consideration video demonstrates possible actions
+ that individuals can take if confronted with an active shooter scenario. This
+ instructive video reviews the choices of running, hiding, or as an option
+ of last resort, fighting the shooter.", "dateLastCrawled": "2018-11-08T03:16:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Videos - Jet Propulsion Laboratory", "url": "https:\/\/www.jpl.nasa.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.jpl.nasa.gov\/video",
+ "snippet": "Find out more in this 60-second video from NASA''s Jet Propulsion
+ Laboratory. March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base.
+ March 7, 2018. Mars InSight Arrives at Vandenberg Air Force Base NASA''s InSight
+ spacecraft arrived at Vandenberg Air Force Base, California, to begin final
+ preparations for launch. ...", "dateLastCrawled": "2018-11-15T23:46:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Videos | Products | SRS", "url": "http:\/\/www.srs.fs.usda.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "www.srs.fs.usda.gov\/video", "snippet":
+ "Southern Research Station: Caring for the Land. Check out this video highlighting
+ some of the people and science that makes the Southern Research Station part
+ of the leading organization for research on natural resource management and
+ sustainability in the United States.", "dateLastCrawled": "2018-11-09T02:51:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Videos — FBI", "url": "https:\/\/www.fbi.gov\/news\/videos", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.fbi.gov\/news\/videos", "snippet":
+ "A webpage compiling the various videos pertaining to the stories, press
+ releases, and wanted person information on FBI.gov.", "dateLastCrawled":
+ "2018-11-16T14:01:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "OSHA Videos | Occupational Safety and Health Administration", "url": "https:\/\/www.osha.gov\/video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.osha.gov\/video",
+ "snippet": "Thank You for Visiting Our Website You are exiting the Department
+ of Labor''s Web server. The Department of Labor does not endorse, takes no
+ responsibility for, and exercises no control over the linked organization
+ or its views, or contents, nor does it vouch for the accuracy or accessibility
+ of the information contained on the destination server.", "dateLastCrawled":
+ "2018-11-10T01:31:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "NSSL Video", "url": "https:\/\/www.nssl.noaa.gov\/news\/video\/", "about":
+ [{"name": "National Severe Storms Laboratory"}], "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.nssl.noaa.gov\/news\/video", "snippet": "This
+ is the focus of researchers at the National Severe Storms Laboratory. This
+ brief video, featuring NSSL Director, Dr. Jeff Kimpel, provides an overview
+ of the research conducted at NSSL, highlighting the three main topics of weather
+ radar, hydrometeorology, and forecast and warning improvements.", "dateLastCrawled":
+ "2018-11-13T08:22:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "Videos | Rover Readies for Second Drilling", "url": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.jpl.nasa.gov\/video\/index.php?id=1217",
+ "snippet": "Captioned Video: › download. Ogv Format: › download › Online
+ Video Catalog. You Might Also Like November brings planets, an asteroid,
+ a comet and the Leonids What''s Up - November 2018. When NASA''s InSight descends
+ to the Red Planet on Nov. 26, 2018, it is guaranteed to be a white-knuckle
+ event. InSight Landing on Mars ...", "dateLastCrawled": "2018-11-17T11:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Impact Texas Teen Drivers", "url": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/impacttexasdrivers.dps.texas.gov\/ITTD",
+ "snippet": "Course Overview. Discover why Impact Texas Teen Drivers was
+ created and how this program is implemented into a driver''s license learning
+ curriculum to positively impact highway safety.", "dateLastCrawled": "2018-11-15T01:12:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Video", "url": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.niehs.nih.gov\/news\/video\/index.cfm",
+ "snippet": "Video interviews, press events, trainings, and seminars | Provided
+ online by the NIEHS to cover the latest topics within the institute. Video
+ interviews, press events, trainings, and seminars | Provided online by the
+ NIEHS to cover the latest topics within the institute", "dateLastCrawled":
+ "2018-11-16T06:04:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "The Fed - Videos", "url": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.federalreserve.gov\/videos.htm",
+ "snippet": "The Federal Reserve Board of Governors in Washington DC. Board
+ of Governors of the Federal Reserve System. The Federal Reserve, the central
+ bank of the United States, provides the nation with a safe, flexible, and
+ stable monetary and financial system.", "dateLastCrawled": "2018-11-13T07:40:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Video - wpafb.af.mil", "url": "https:\/\/www.wpafb.af.mil\/News\/Video\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.wpafb.af.mil\/News\/Video",
+ "snippet": "The 14th Annual Pumpkin Chuck event took place behind the National
+ Museum of the United States Air Force, Wright-Patteson Air Force Base, Ohio,
+ November 5, 2018.", "dateLastCrawled": "2018-11-16T05:45:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Alaskan Way Viaduct - Program Videos", "url": "http:\/\/www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "isFamilyFriendly": true, "displayUrl": "www.wsdot.wa.gov\/Projects\/Viaduct\/Library\/Videos",
+ "snippet": "Raw video: Testing fire systems in the new tunnel (June 2018).
+ Narrated video: The smart systems in the new tunnel are designed to work
+ together to keep traffic moving safely (March 2018). Time-lapse video: Crews
+ place the final deck segment for the tunnel''s lower deck (March 2018).",
+ "dateLastCrawled": "2018-11-13T20:59:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Resources | Videos", "url": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos\/index.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.cdc.gov\/tobacco\/campaign\/tips\/resources\/videos",
+ "snippet": "In this video, Amanda talks about being rushed to the hospital,
+ where her baby was born 2 months early, at just 3 pounds. Amanda’s “Smoking,
+ Family, and Pain” Story Amanda tried her first cigarette when she was in elementary
+ school.", "dateLastCrawled": "2018-11-12T10:57:00.0000000Z", "language": "en",
+ "isNavigational": false}]}, "rankingResponse": {"mainline": {"items": [{"answerType":
+ "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:37 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Web_search.yml b/features/vcr_cassettes/Searches_using_mobile_device/Web_search.yml
index ef464510c9..d444410fbe 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Web_search.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Web_search.yml
@@ -1578,4 +1578,1960 @@ http_interactions:
string: ''
http_version:
recorded_at: Thu, 22 Feb 2018 09:16:31 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=president%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3482'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:04 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=095668F5E6B2606B202D6459E765613F; path=/; expires=Sat, 14-Dec-2019 22:41:04
+ GMT; domain=bingapis.com
+ - MUIDB=095668F5E6B2606B202D6459E765613F; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:04 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:04 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CAA15441C9D940F88A94487207DC4BF1&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:04 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:04
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3D5285AB0E9B601B263289070F4C61F4; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:04 GMT; domain=bingapis.com
+ - _SS=SID=3D5285AB0E9B601B263289070F4C61F4; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 424561978EB5418F94E2F7D9BAEE60EA
+ X-Msedge-Clientid:
+ - '095668F5E6B2606B202D6459E765613F'
+ X-Msapi-Userstate:
+ - '0437'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 424561978EB5418F94E2F7D9BAEE60EA Ref B: CO1EDGE0110 Ref C: 2018-11-19T22:41:04Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:03 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=053D46CCE6D24305BE4B1FFBBE490FE9&CID=095668F5E6B2606B202D6459E765613F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=053D46CCE6D24305BE4B1FFBBE490FE9&CID=095668F5E6B2606B202D6459E765613F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5414.1", "totalEstimatedMatches": 20800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "Which President served as a lieutenant colonel in the Spanish-American
+ war? Who was the first Democrat elected after the Civil War? Who introduced
+ Social Security?", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Donald J. Trump
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5072.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past.", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Presidents, Vice Presidents, and First Ladies of the ...", "url":
+ "https:\/\/www.usa.gov\/presidents", "urlPingSuffix": "DevEx,5102.1", "displayUrl":
+ "https:\/\/www.usa.gov\/presidents", "snippet": "The president of the
+ United States is the head of state of the U.S., the chief executive of the
+ federal government, and Commander-in-Chief of the armed forces. The United
+ States was the first nation to create the office of president as the head
+ of state in a modern republic. The Constitution ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Andrew
+ Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "urlPingSuffix": "DevEx,5116.1", "about": [{"name": "Andrew Jackson"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5130.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Write a letter to the President. Here are a few simple things you can do
+ to make sure your message gets to the White House as quickly as possible.",
+ "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "President''s Management Agenda - whitehouse.gov", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents-Management-Agenda.pdf",
+ "urlPingSuffix": "DevEx,5141.1", "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents...",
+ "snippet": "President’s Management Agenda 1. Most Americans may not think
+ about the Federal Government every day—but when they need Government services,
+ they expect them to work.", "dateLastCrawled": "2018-11-11T11:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "The Executive
+ Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "urlPingSuffix": "DevEx,5154.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5168.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5181.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Donald J. Trump’s 500 Days of American Greatness ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-500-days-american-greatness\/",
+ "urlPingSuffix": "DevEx,5193.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "500 DAYS: In his first 500 days in office, President Donald
+ J. Trump has achieved results domestically and internationally for the American
+ people. Since taking office, President Trump has ...", "dateLastCrawled":
+ "2018-11-15T04:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "George W. Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-w-bush\/",
+ "urlPingSuffix": "DevEx,5207.1", "about": [{"name": "George W. Bush"}, {"name":
+ "George H. W. Bush"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-w-bush",
+ "snippet": "George W. Bush, America’s 43rd President (2001-2009), was
+ transformed into a wartime President in the aftermath of the airborne terrorist
+ attacks on September 11, 2001, facing the “greatest ...", "dateLastCrawled":
+ "2018-11-14T23:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Statement from the President | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/statement-from-the-president-4\/",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.whitehouse.gov\/...\/statement-from-the-president-4",
+ "snippet": "As President, it is my duty to protect the interests of working
+ men and women, farmers, ranchers, businesses, and our country itself.", "dateLastCrawled":
+ "2018-11-13T18:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5231.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Theodore Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/theodore-roosevelt\/",
+ "urlPingSuffix": "DevEx,5245.1", "about": [{"name": "Theodore Roosevelt"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/theodore-roosevelt",
+ "snippet": "With the assassination of President William McKinley, Theodore
+ Roosevelt, not quite 43, became the 26th and youngest President in the
+ Nation’s history (1901-1909). He brought new excitement and ...", "dateLastCrawled":
+ "2018-11-12T08:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "urlPingSuffix": "DevEx,5260.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=OIP.aG0TZL5mYu7l8KPSj0gG8wHaEL&pid=Api",
+ "about": [{"name": "Barack Obama"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama",
+ "snippet": "Barack Obama served as the 44th President of the United States.
+ His story is the American story — values from the heartland, a middle-class
+ upbringing in a strong family, hard work and education ...", "dateLastCrawled":
+ "2018-11-15T04:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Get Involved | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.whitehouse.gov\/get-involved",
+ "snippet": "Write the President, receive updates from the Administration,
+ or apply to one of the White House’s prestigious Internship or Fellowship
+ Programs.", "dateLastCrawled": "2018-11-15T17:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Press Conference by President Trump | The White House", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/press-conference-president-trump\/",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www.whitehouse.gov\/...\/press-conference-president-trump",
+ "snippet": "THE PRESIDENT: Well, my expectation about China is that China
+ is a great country with a great leader, and a friend of mine. And I really
+ believe that he’s happy that we’ve made this kind of ...", "dateLastCrawled":
+ "2018-11-16T10:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "President''s Budget | The White House", "url": "https:\/\/www.whitehouse.gov\/omb\/budget\/",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "2018 United States federal
+ budget"}], "displayUrl": "https:\/\/www.whitehouse.gov\/omb\/budget", "snippet":
+ "Mid-Session Review FY 2019 Addendum to the President’s FY19 Budget to Account
+ for the Bipartisan Budget Act of 2018 An American Budget – President’s Budget
+ FY 2019 Major Savings and Reforms ...", "dateLastCrawled": "2018-11-12T22:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "The President''s
+ Management Agenda | The White House", "url": "https:\/\/www.whitehouse.gov\/omb\/management\/pma\/",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "https:\/\/www.whitehouse.gov\/omb\/management\/pma",
+ "snippet": "The President’s Management Agenda lays the foundation needed
+ to address the critical challenges where Government as a whole still operates
+ in the past. This is one of many steps to building a ...", "dateLastCrawled":
+ "2018-11-16T09:31:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:04 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=20&q=president%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3867'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:05 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3897DA02D5DB60840DD7D6AED40C61C1; path=/; expires=Sat, 14-Dec-2019 22:41:05
+ GMT; domain=bingapis.com
+ - MUIDB=3897DA02D5DB60840DD7D6AED40C61C1; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:05 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:05 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=68F20FC8C9C8417E98AAF429B105A5AE&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:05 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:05
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3CDE91AB65226ACC1BEF9D0764F56B30; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:05 GMT; domain=bingapis.com
+ - _SS=SID=3CDE91AB65226ACC1BEF9D0764F56B30; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 845E3DD506B3479CAFEC7B6968969598
+ X-Msedge-Clientid:
+ - 3897DA02D5DB60840DD7D6AED40C61C1
+ X-Msapi-Userstate:
+ - '9092'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 845E3DD506B3479CAFEC7B6968969598 Ref B: CO1EDGE0418 Ref C: 2018-11-19T22:41:05Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=B8142EED04FE4FD6ACA2BE08A2CD1449&CID=3897DA02D5DB60840DD7D6AED40C61C1&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=B8142EED04FE4FD6ACA2BE08A2CD1449&CID=3897DA02D5DB60840DD7D6AED40C61C1&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5419.1", "totalEstimatedMatches": 20800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "The President''s Management Agenda | The White House", "url": "https:\/\/www.whitehouse.gov\/omb\/management\/pma\/",
+ "urlPingSuffix": "DevEx,5058.1", "displayUrl": "https:\/\/www.whitehouse.gov\/omb\/management\/pma",
+ "snippet": "The President’s Management Agenda lays the foundation needed
+ to address the critical challenges where Government as a whole still operates
+ in the past. This is one of many steps to building a ...", "dateLastCrawled":
+ "2018-11-16T09:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Franklin D. Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-d-roosevelt\/",
+ "urlPingSuffix": "DevEx,5072.1", "about": [{"name": "Franklin D. Roosevelt"},
+ {"name": "Franklin D. Roosevelt"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-d-roosevelt",
+ "snippet": "President Wilson appointed him Assistant Secretary of the Navy,
+ and he was the Democratic nominee for Vice President in 1920. In the summer
+ of 1921, when he was 39, disaster hit-he was stricken ...", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Vice President Mike Pence | The White House", "url": "https:\/\/www.whitehouse.gov\/vice-president-mike-pence\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "Mike Pence"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/vice-president-mike-pence", "snippet":
+ "Michael R. Pence is the 48th and current Vice President of the United States.
+ Michael R. Pence was born in Columbus, Indiana, on June 7, 1959, one of six
+ children born to Edward and Nancy Pence.", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Remarks
+ by President Trump at a Meeting with the National ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-meeting-national-space-council-signing-space-policy-directive-3\/",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "THE PRESIDENT: Thank you very much, everybody. Thank you very
+ much. This is an incredible time for our country. I would say that our economy
+ — and many of you know that very well — is doing ...", "dateLastCrawled":
+ "2018-11-16T01:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "The Opioid Crisis | The White House", "url": "https:\/\/www.whitehouse.gov\/opioids\/",
+ "urlPingSuffix": "DevEx,5112.1", "about": [{"name": "Opioid"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/opioids", "snippet": "The Opioid Crisis.
+ More than 300,000 Americans have died from overdoses involving opioids since
+ 2000. President Donald J. Trump has mobilized his entire Administration
+ to address opioid abuse by ...", "dateLastCrawled": "2018-11-16T08:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "President
+ Donald J. Trump Names Recipients of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-names-recipients-presidential-medal-freedom\/",
+ "urlPingSuffix": "DevEx,5127.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "On Friday, November 16, 2018, President Donald J. Trump will
+ award the Presidential Medal of Freedom to 7 distinguished individuals. This
+ prestigious award is the Nation’s highest civilian honor ...", "dateLastCrawled":
+ "2018-11-13T02:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "President Donald J. Trump’s Blueprint To Lower Drug Prices ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-blueprint-lower-drug-prices\/",
+ "urlPingSuffix": "DevEx,5138.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "President Trump’s blueprint will seek to encourage innovation,
+ while also promoting better price competition and addressing foreign freeloading.
+ The Department of Health and Human Services (HHS ...", "dateLastCrawled":
+ "2018-11-13T23:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "President Trump''s Cabinet - The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "urlPingSuffix": "DevEx,5152.1", "about": [{"name": "Cabinet"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "President Donald J. Trump’s Cabinet includes Vice President
+ Mike Pence and the heads of the 15 executive departments – the Secretaries
+ of Agriculture, Commerce, Defense, Education, Energy ...", "dateLastCrawled":
+ "2018-11-15T17:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Lyndon B. Johnson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/lyndon-b-johnson\/",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Lyndon B. Johnson"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/lyndon-b-johnson",
+ "snippet": "In the 1960 campaign, Lyndon B. Johnson was elected Vice President
+ as John F. Kennedy’s running mate. On November 22, 1963, when Kennedy was
+ assassinated, Johnson was sworn in as the 36th United ...", "dateLastCrawled":
+ "2018-11-12T12:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "President Donald J. Trump is Ending United States ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-ending-united-states-participation-unacceptable-iran-deal\/",
+ "urlPingSuffix": "DevEx,5178.1", "about": [{"name": "Iran"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "ADDRESSING IRANIAN AGGRESSION: President Trump is committed
+ to ensuring Iran has no possible path to a nuclear weapon and is addressing
+ the threats posed by the regime’s malign activities.", "dateLastCrawled":
+ "2018-11-12T16:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Remarks by President Trump and President Duda of the ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-president-duda-republic-poland-joint-press-conference\/",
+ "urlPingSuffix": "DevEx,5190.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "PRESIDENT TRUMP: The trade deal with South Korea has been fully
+ renegotiated and is ready for signature. We may sign it at the United Nations
+ or shortly thereafter. That was a terrible deal for ...", "dateLastCrawled":
+ "2018-11-16T09:06:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "James Carter | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/james-carter\/",
+ "urlPingSuffix": "DevEx,5204.1", "about": [{"name": "Jimmy Carter"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/james-carter", "snippet":
+ "Jimmy Carter served as the 39th President of the United States from 1977
+ to 1981. He was awarded the 2002 Nobel Peace Prize for work to find peaceful
+ solutions to international conflicts, to ...", "dateLastCrawled": "2018-11-13T00:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "James
+ K. Polk | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/james-k-polk\/",
+ "urlPingSuffix": "DevEx,5218.1", "about": [{"name": "James K. Polk"}, {"name":
+ "James K. Polk"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/james-k-polk",
+ "snippet": "Often referred to as the first “dark horse,” James K. Polk was
+ the 11th President of the United States from 1845 to 1849, the last strong
+ President until the Civil War.", "dateLastCrawled": "2018-11-14T07:39:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Articles
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/articles\/", "urlPingSuffix":
+ "DevEx,5232.1", "displayUrl": "https:\/\/www.whitehouse.gov\/articles",
+ "snippet": "This president and our administration understand that veterans’
+ benefits are not entitlements – they’re earned. They are the ongoing compensation
+ for services rendered in the uniform of the ...", "dateLastCrawled": "2018-11-15T18:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Presidential
+ Election Process | USAGov", "url": "https:\/\/www.usa.gov\/election", "urlPingSuffix":
+ "DevEx,5248.1", "about": [{"name": "United States presidential election"},
+ {"name": "2016 United States presidential election"}, {"name": "2016 United
+ States presidential election"}], "displayUrl": "https:\/\/www.usa.gov\/election",
+ "snippet": "Overview of the Presidential Election Process An election for
+ president of the United States occurs every four years on Election Day,
+ held the first Tuesday after the first Monday in November. The next presidential
+ election will be held on November 3, 2020.", "dateLastCrawled": "2018-11-09T17:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "President
+ Donald J. Trump’s Initiative to Stop Opioid ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-initiative-stop-opioid-abuse-reduce-drug-supply-demand\/",
+ "urlPingSuffix": "DevEx,5260.1", "about": [{"name": "Opioid"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "President Trump’s Initiative to Stop Opioids Abuse and Reduce
+ Drug Supply and Demand will confront the driving forces behind the opioid
+ crisis.", "dateLastCrawled": "2018-11-14T17:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Joint Statement of President Donald J. Trump of the United ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/joint-statement-president-donald-j-trump-united-states-america-chairman-kim-jong-un-democratic-peoples-republic-korea-singapore-summit\/",
+ "urlPingSuffix": "DevEx,5272.1", "about": [{"name": "North Korea"}, {"name":
+ "Kim Jong-un"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/joint-statement...",
+ "snippet": "President Donald J. Trump of the United States of America and
+ Chairman Kim Jong Un of the State Affairs Commission of the Democratic People’s
+ Republic of Korea (DPRK) held a first, historic ...", "dateLastCrawled": "2018-11-15T02:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Presidential
+ Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "urlPingSuffix": "DevEx,5285.1", "about": [{"name": "Executive order"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Remarks
+ by President Trump and President Juncker of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-president-juncker-european-commission-joint-press-statements\/",
+ "urlPingSuffix": "DevEx,5297.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "PRESIDENT TRUMP: Well, thank you very much, Jean-Claude. And
+ I just want to conclude by saying this was a very big day for free and fair
+ trade. A very big day indeed.", "dateLastCrawled": "2018-11-15T12:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "President
+ - Ky. Council on Postsecondary Education", "url": "http:\/\/cpe.ky.gov\/aboutus\/president.html",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "cpe.ky.gov\/aboutus\/president.html",
+ "snippet": "He was named president of the Council in October 2018, following
+ the retirement of Robert L. King. He came to the Council in 2009 from Eastern
+ Kentucky University, where he held a variety of leadership positions, including
+ associate vice president for academic affairs, university programs.", "dateLastCrawled":
+ "2018-11-14T01:45:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:05 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=president%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3482'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:05 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0EC512FA0663623B24591E5607B46307; path=/; expires=Sat, 14-Dec-2019 22:41:05
+ GMT; domain=bingapis.com
+ - MUIDB=0EC512FA0663623B24591E5607B46307; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:05 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:05 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=8C75BC92679A4C21A2458C462CC17EB8&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:05 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:05
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=32BBD46231576A790861D8CE30806B4A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:05 GMT; domain=bingapis.com
+ - _SS=SID=32BBD46231576A790861D8CE30806B4A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 577AF0E016D9432082AACE69A6221D53
+ X-Msedge-Clientid:
+ - 0EC512FA0663623B24591E5607B46307
+ X-Msapi-Userstate:
+ - f9e3
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 577AF0E016D9432082AACE69A6221D53 Ref B: CO1EDGE0122 Ref C: 2018-11-19T22:41:05Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:05 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=13B9764568CF41FF9D4AA57CC3D17639&CID=0EC512FA0663623B24591E5607B46307&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=13B9764568CF41FF9D4AA57CC3D17639&CID=0EC512FA0663623B24591E5607B46307&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5414.1", "totalEstimatedMatches": 20800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "urlPingSuffix": "DevEx,5058.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "Which President served as a lieutenant colonel in the Spanish-American
+ war? Who was the first Democrat elected after the Civil War? Who introduced
+ Social Security?", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Donald J. Trump
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5072.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past.", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "The Administration
+ | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Presidents, Vice Presidents, and First Ladies of the ...", "url":
+ "https:\/\/www.usa.gov\/presidents", "urlPingSuffix": "DevEx,5102.1", "displayUrl":
+ "https:\/\/www.usa.gov\/presidents", "snippet": "The president of the
+ United States is the head of state of the U.S., the chief executive of the
+ federal government, and Commander-in-Chief of the armed forces. The United
+ States was the first nation to create the office of president as the head
+ of state in a modern republic. The Constitution ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Andrew
+ Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "urlPingSuffix": "DevEx,5116.1", "about": [{"name": "Andrew Jackson"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Write
+ or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5130.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Write a letter to the President. Here are a few simple things you can do
+ to make sure your message gets to the White House as quickly as possible.",
+ "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "President''s Management Agenda - whitehouse.gov", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents-Management-Agenda.pdf",
+ "urlPingSuffix": "DevEx,5141.1", "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents...",
+ "snippet": "President’s Management Agenda 1. Most Americans may not think
+ about the Federal Government every day—but when they need Government services,
+ they expect them to work.", "dateLastCrawled": "2018-11-11T11:41:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "The Executive
+ Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "urlPingSuffix": "DevEx,5154.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5168.1", "about": [{"name": "The White House"}, {"name": "whitehouse.gov"},
+ {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5181.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "President Donald J. Trump’s 500 Days of American Greatness ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-500-days-american-greatness\/",
+ "urlPingSuffix": "DevEx,5193.1", "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "500 DAYS: In his first 500 days in office, President Donald
+ J. Trump has achieved results domestically and internationally for the American
+ people. Since taking office, President Trump has ...", "dateLastCrawled":
+ "2018-11-15T04:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "George W. Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-w-bush\/",
+ "urlPingSuffix": "DevEx,5207.1", "about": [{"name": "George W. Bush"}, {"name":
+ "George H. W. Bush"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-w-bush",
+ "snippet": "George W. Bush, America’s 43rd President (2001-2009), was
+ transformed into a wartime President in the aftermath of the airborne terrorist
+ attacks on September 11, 2001, facing the “greatest ...", "dateLastCrawled":
+ "2018-11-14T23:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Statement from the President | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/statement-from-the-president-4\/",
+ "urlPingSuffix": "DevEx,5218.1", "displayUrl": "https:\/\/www.whitehouse.gov\/...\/statement-from-the-president-4",
+ "snippet": "As President, it is my duty to protect the interests of working
+ men and women, farmers, ranchers, businesses, and our country itself.", "dateLastCrawled":
+ "2018-11-13T18:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Briefing Statements Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
+ "urlPingSuffix": "DevEx,5231.1", "about": [{"name": "The White"}, {"name":
+ "White"}], "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements",
+ "snippet": "Get official White House briefings, statements, and remarks
+ from President Donald J. Trump and members of his Administration.", "dateLastCrawled":
+ "2018-11-16T10:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Theodore Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/theodore-roosevelt\/",
+ "urlPingSuffix": "DevEx,5245.1", "about": [{"name": "Theodore Roosevelt"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/theodore-roosevelt",
+ "snippet": "With the assassination of President William McKinley, Theodore
+ Roosevelt, not quite 43, became the 26th and youngest President in the
+ Nation’s history (1901-1909). He brought new excitement and ...", "dateLastCrawled":
+ "2018-11-12T08:12:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "urlPingSuffix": "DevEx,5260.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?id=OIP.aG0TZL5mYu7l8KPSj0gG8wHaEL&pid=Api",
+ "about": [{"name": "Barack Obama"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama",
+ "snippet": "Barack Obama served as the 44th President of the United States.
+ His story is the American story — values from the heartland, a middle-class
+ upbringing in a strong family, hard work and education ...", "dateLastCrawled":
+ "2018-11-15T04:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Get Involved | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/",
+ "urlPingSuffix": "DevEx,5274.1", "displayUrl": "https:\/\/www.whitehouse.gov\/get-involved",
+ "snippet": "Write the President, receive updates from the Administration,
+ or apply to one of the White House’s prestigious Internship or Fellowship
+ Programs.", "dateLastCrawled": "2018-11-15T17:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Press Conference by President Trump | The White House", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/press-conference-president-trump\/",
+ "urlPingSuffix": "DevEx,5286.1", "displayUrl": "https:\/\/www.whitehouse.gov\/...\/press-conference-president-trump",
+ "snippet": "THE PRESIDENT: Well, my expectation about China is that China
+ is a great country with a great leader, and a friend of mine. And I really
+ believe that he’s happy that we’ve made this kind of ...", "dateLastCrawled":
+ "2018-11-16T10:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "President''s Budget | The White House", "url": "https:\/\/www.whitehouse.gov\/omb\/budget\/",
+ "urlPingSuffix": "DevEx,5300.1", "about": [{"name": "2018 United States federal
+ budget"}], "displayUrl": "https:\/\/www.whitehouse.gov\/omb\/budget", "snippet":
+ "Mid-Session Review FY 2019 Addendum to the President’s FY19 Budget to Account
+ for the Bipartisan Budget Act of 2018 An American Budget – President’s Budget
+ FY 2019 Major Savings and Reforms ...", "dateLastCrawled": "2018-11-12T22:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "The President''s
+ Management Agenda | The White House", "url": "https:\/\/www.whitehouse.gov\/omb\/management\/pma\/",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "https:\/\/www.whitehouse.gov\/omb\/management\/pma",
+ "snippet": "The President’s Management Agenda lays the foundation needed
+ to address the critical challenges where Government as a whole still operates
+ in the past. This is one of many steps to building a ...", "dateLastCrawled":
+ "2018-11-16T09:31:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:05 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=presidente%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3652'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:06 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1B313D8D0B1C6AAD3EEE31210ACB6B44; path=/; expires=Sat, 14-Dec-2019 22:41:06
+ GMT; domain=bingapis.com
+ - MUIDB=1B313D8D0B1C6AAD3EEE31210ACB6B44; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:06 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:06 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=97AA7E313DEB47429773B1CCDA201448&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:06 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:06
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1F5B0AEDF71965E21C540641F6CE6489; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:06 GMT; domain=bingapis.com
+ - _SS=SID=1F5B0AEDF71965E21C540641F6CE6489; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 378D6735A425441DAD7021A067B93ED5
+ X-Msedge-Clientid:
+ - 1B313D8D0B1C6AAD3EEE31210ACB6B44
+ X-Msapi-Userstate:
+ - 2b3b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 378D6735A425441DAD7021A067B93ED5 Ref B: CO1EDGE0416 Ref C: 2018-11-19T22:41:06Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:06 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=232713622D0B472F9A46B92DBCFBE27C&CID=1B313D8D0B1C6AAD3EEE31210ACB6B44&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=232713622D0B472F9A46B92DBCFBE27C&CID=1B313D8D0B1C6AAD3EEE31210ACB6B44&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=presidente+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5421.1", "totalEstimatedMatches": 434000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "urlPingSuffix": "DevEx,5059.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "If you’re looking to learn more about the past Presidents who have led
+ our country, you’re in the right place. Take a look at our full set of biographies.
+ Then, quiz your friends.", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "The Executive
+ Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "urlPingSuffix": "DevEx,5073.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "Donald Trump"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past. His ...", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Presidents,
+ Vice Presidents, and First Ladies of the ...", "url": "https:\/\/www.usa.gov\/presidents",
+ "urlPingSuffix": "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/presidents",
+ "snippet": "The president of the United States is the head of state of the
+ U.S., the chief executive of the federal government, and Commander-in-Chief
+ of the armed forces. The United States was the first nation to create the
+ office of president as the head of state in a modern republic. The Constitution
+ ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Michael R. Pence | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/mike-pence\/",
+ "urlPingSuffix": "DevEx,5117.1", "about": [{"name": "Office of the Vice President
+ of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/people\/mike-pence",
+ "snippet": "Michael R. Pence is the 48th and current Vice President of the
+ United States. Michael R. Pence was born in Columbus, Indiana, on June 7,
+ 1959, one of six children born to Edward and Nancy Pence ...", "dateLastCrawled":
+ "2018-11-12T05:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "The Cabinet", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "urlPingSuffix": "DevEx,5131.1", "about": [{"name": "Cabinet"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "Established in Article II, Section 2 of the Constitution, the
+ Cabinet''s role is to advise the President on subjects related to each member''s
+ office.", "dateLastCrawled": "2018-11-15T17:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Write or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "urlPingSuffix": "DevEx,5145.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Here are a few simple things you can do to make sure your message gets to
+ the White House as quickly as possible. The President and the First Lady
+ strongly encourage all Americans to consider ...", "dateLastCrawled": "2018-11-16T02:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Gutiérrez:
+ “Mr. President, It Is Time For You To Resign ...", "url": "https:\/\/gutierrez.house.gov\/media-center\/press-releases\/guti-rrez-mr-president-it-time-you-resign",
+ "urlPingSuffix": "DevEx,5157.1", "displayUrl": "https:\/\/gutierrez.house.gov\/media-center\/press-releases\/guti-rrez...",
+ "snippet": "Today in a speech on the House floor, Rep. Luis V. Gutiérrez (D-IL)
+ said he has sent a letter to the President asking him to resign “for the good
+ of the United States and her people.” Holding a copy of the letter, sent today,
+ the Illinois Congressman and Member of the Judiciary Committee said, “It has
+ become clear… that for decades, the President led a vast criminal enterprise",
+ "dateLastCrawled": "2018-11-11T10:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Economic Report of the President February 2018", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/02\/ERP_2018_Final-FINAL.pdf",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/02\/ERP_2018...",
+ "snippet": "In his 1994 Economic Report of the President, President Clinton
+ promised to connect “every classroom, every library, and every hospital in
+ America” to the Internet by 2000.", "dateLastCrawled": "2018-11-13T14:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Lyndon
+ B. Johnson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/lyndon-b-johnson\/",
+ "urlPingSuffix": "DevEx,5182.1", "about": [{"name": "Lyndon B. Johnson"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/lyndon-b-johnson",
+ "snippet": "In the 1960 campaign, Lyndon B. Johnson was elected Vice President
+ as John F. Kennedy’s running mate. On November 22, 1963, when Kennedy was
+ assassinated, Johnson was sworn in as the 36th United ...", "dateLastCrawled":
+ "2018-11-12T12:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "The Administration | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "urlPingSuffix": "DevEx,5196.1", "about": [{"name": "Executive Office of the
+ President of the United States"}], "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Presidential Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "urlPingSuffix": "DevEx,5209.1", "about": [{"name": "Executive order"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Andrew
+ Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "urlPingSuffix": "DevEx,5223.1", "about": [{"name": "Andrew Jackson"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Contact
+ the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "urlPingSuffix": "DevEx,5236.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "George Washington | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-washington\/",
+ "urlPingSuffix": "DevEx,5250.1", "about": [{"name": "George Washington"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-washington",
+ "snippet": "On April 30, 1789, George Washington, standing on the balcony
+ of Federal Hall on Wall Street in New York, took his oath of office as the
+ first President of the United States. On April 30, 1789 ...", "dateLastCrawled":
+ "2018-11-15T22:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Presidential Vetoes | US House of Representatives: History ...",
+ "url": "http:\/\/history.house.gov\/Institution\/Presidential-Vetoes\/Presidential-Vetoes\/",
+ "urlPingSuffix": "DevEx,5264.1", "displayUrl": "history.house.gov\/Institution\/Presidential-Vetoes\/Presidential-Vetoes",
+ "snippet": "Article I, section 7 of the Constitution grants the President
+ the authority to veto legislation passed by Congress. This authority is one
+ of the most significant tools the President can employ to prevent the passage
+ of legislation. Even the threat of a veto can bring about changes in the content
+ of ...", "dateLastCrawled": "2018-11-16T04:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Franklin D. Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-d-roosevelt\/",
+ "urlPingSuffix": "DevEx,5278.1", "about": [{"name": "Franklin D. Roosevelt"},
+ {"name": "Franklin D. Roosevelt"}], "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-d-roosevelt",
+ "snippet": "Assuming the Presidency at the depth of the Great Depression as
+ our 32nd President (1933-1945), Franklin D. Roosevelt helped the American
+ people regain faith in themselves. Assuming the Presidency ...", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Andrew Johnson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-johnson\/",
+ "urlPingSuffix": "DevEx,5292.1", "about": [{"name": "Andrew Johnson"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-johnson", "snippet":
+ "With the assassination of President Abraham Lincoln, Andrew Johnson became
+ the 17th President of the United States (1865-1869), an old-fashioned southern
+ Jacksonian Democrat of pronounced states ...", "dateLastCrawled": "2018-11-13T02:23:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Ronald
+ Reagan | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/ronald-reagan\/",
+ "urlPingSuffix": "DevEx,5306.1", "about": [{"name": "Ronald Reagan"}], "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/ronald-reagan", "snippet":
+ "Ronald Reagan, originally an American actor and politician, became the
+ 40th President of the United States serving from 1981 to 1989. His term saw
+ a restoration of prosperity at home, with the ...", "dateLastCrawled": "2018-11-15T07:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "John
+ Adams | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/john-adams\/",
+ "urlPingSuffix": "DevEx,5320.1", "about": [{"name": "John Adams"}, {"name":
+ "John Adams"}], "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/john-adams",
+ "snippet": "John Adams, a remarkable political philosopher, served as the
+ second President of the United States (1797-1801), after serving as the first
+ Vice President under President George Washington ...", "dateLastCrawled":
+ "2018-11-16T08:36:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:06 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=hippopotamus%20(site:hippo.whitehouse.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '241'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:06 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1AAAAB8A7D7F6107096AA7267CA860C6; path=/; expires=Sat, 14-Dec-2019 22:41:06
+ GMT; domain=bingapis.com
+ - MUIDB=1AAAAB8A7D7F6107096AA7267CA860C6; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:06 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:06 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=89B4F4730F9C4B50AFF3EF6F75C72B13&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:06 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:06
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=084A8590D98262F523E5893CD8556371; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:06 GMT; domain=bingapis.com
+ - _SS=SID=084A8590D98262F523E5893CD8556371; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - BB43C0D49E0D4D3EACF09072100C82D6
+ X-Msedge-Clientid:
+ - 1AAAAB8A7D7F6107096AA7267CA860C6
+ X-Msapi-Userstate:
+ - '8056'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: BB43C0D49E0D4D3EACF09072100C82D6 Ref B: CO1EDGE0409 Ref C: 2018-11-19T22:41:06Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:06 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8E47AFD117644CFDB6247FEA2E55E49E&CID=1AAAAB8A7D7F6107096AA7267CA860C6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8E47AFD117644CFDB6247FEA2E55E49E&CID=1AAAAB8A7D7F6107096AA7267CA860C6&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:07 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=president%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:12 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 18E1A8F8445747C194DC0A9AE731E54D
+ Bingapis-Sessionid:
+ - 5891C8ADA9E446B3B1CE277FDFF4269E
+ X-Msedge-Clientid:
+ - 1FB3B9FE895564233CC0B552881965A9
+ X-Msapi-Userstate:
+ - ab5c
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=211,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 18E1A8F8445747C194DC0A9AE731E54D Ref B: BY3EDGE0316 Ref C: 2018-11-19T22:42:13Z'
+ Apim-Request-Id:
+ - b1ccbed7-657a-49e4-a6e7-8ba7885bb606
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:12 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "president
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 20800000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "Which President served as a lieutenant colonel in the Spanish-American
+ war? Who was the first Democrat elected after the Civil War? Who introduced
+ Social Security?", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "about": [{"name": "Donald Trump"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past.", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Presidents, Vice Presidents, and First Ladies of the ...", "url":
+ "https:\/\/www.usa.gov\/presidents", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/presidents", "snippet": "The president of the
+ United States is the head of state of the U.S., the chief executive of the
+ federal government, and Commander-in-Chief of the armed forces. The United
+ States was the first nation to create the office of president as the head
+ of state in a modern republic. The Constitution ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Get Involved | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/get-involved",
+ "snippet": "Write the President, receive updates from the Administration,
+ or apply to one of the White House’s prestigious Internship or Fellowship
+ Programs.", "dateLastCrawled": "2018-11-15T17:00:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "President Donald J. Trump’s 500 Days of American Greatness ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-500-days-american-greatness\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "500 DAYS: In his first 500 days in office, President Donald
+ J. Trump has achieved results domestically and internationally for the American
+ people. Since taking office, President Trump has ...", "dateLastCrawled":
+ "2018-11-15T04:13:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "The Administration | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "about": [{"name": "Executive Office of the President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "The White House", "url": "https:\/\/www.whitehouse.gov\/", "about": [{"name":
+ "The White House"}, {"name": "whitehouse.gov"}, {"name": "White House"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "about": [{"name": "Barack Obama"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama", "snippet":
+ "Barack Obama served as the 44th President of the United States. His story
+ is the American story — values from the heartland, a middle-class upbringing
+ in a strong family, hard work and education ...", "dateLastCrawled": "2018-11-15T04:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Write or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Write a letter to the President. Here are a few simple things you can do
+ to make sure your message gets to the White House as quickly as possible.",
+ "dateLastCrawled": "2018-11-16T02:34:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Statement from the President | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/statement-from-the-president-4\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/statement-from-the-president-4",
+ "snippet": "As President, it is my duty to protect the interests of working
+ men and women, farmers, ranchers, businesses, and our country itself.", "dateLastCrawled":
+ "2018-11-13T18:05:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "George W. Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-w-bush\/",
+ "about": [{"name": "George W. Bush"}, {"name": "George H. W. Bush"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-w-bush",
+ "snippet": "George W. Bush, America’s 43rd President (2001-2009), was
+ transformed into a wartime President in the aftermath of the airborne terrorist
+ attacks on September 11, 2001, facing the “greatest ...", "dateLastCrawled":
+ "2018-11-14T23:36:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "President''s Management Agenda - whitehouse.gov", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents-Management-Agenda.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/03\/Presidents...",
+ "snippet": "President’s Management Agenda 1. Most Americans may not think
+ about the Federal Government every day—but when they need Government services,
+ they expect them to work.", "dateLastCrawled": "2018-11-11T11:41:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Press Conference by President Trump | The White House", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/press-conference-president-trump\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/press-conference-president-trump",
+ "snippet": "THE PRESIDENT: Well, my expectation about China is that China
+ is a great country with a great leader, and a friend of mine. And I really
+ believe that he’s happy that we’ve made this kind of ...", "dateLastCrawled":
+ "2018-11-16T10:45:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "Remarks by President Trump and President Duda of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-president-duda-republic-poland-joint-press-conference\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "PRESIDENT TRUMP: The trade deal with South Korea has been fully
+ renegotiated and is ready for signature. We may sign it at the United Nations
+ or shortly thereafter. That was a terrible deal for ...", "dateLastCrawled":
+ "2018-11-16T09:06:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15", "name":
+ "Andrew Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "about": [{"name": "Andrew Jackson"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Vice President Mike Pence | The White House", "url": "https:\/\/www.whitehouse.gov\/vice-president-mike-pence\/",
+ "about": [{"name": "Mike Pence"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/vice-president-mike-pence", "snippet":
+ "Michael R. Pence is the 48th and current Vice President of the United States.
+ Michael R. Pence was born in Columbus, Indiana, on June 7, 1959, one of six
+ children born to Edward and Nancy Pence.", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Michael Picker, President - California Public Utilities ...", "url":
+ "http:\/\/www.cpuc.ca.gov\/picker\/", "about": [{"name": "Michael Picker"}],
+ "isFamilyFriendly": true, "displayUrl": "www.cpuc.ca.gov\/picker", "snippet":
+ "Michael Picker, President. Michael Picker was named President of the
+ California Public Utilities Commission (CPUC) on December 23, 2014, by Governor
+ Edmund G. Brown Jr., who first appointed President Picker as a Commissioner
+ on January 29, 2014.", "dateLastCrawled": "2018-11-15T23:28:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "The Executive Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "about": [{"name": "Executive Office of the President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "President''s Management Agenda - performance.gov", "url": "https:\/\/www.performance.gov\/PMA\/Presidents_Management_Agenda.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.performance.gov\/PMA\/Presidents_Management_Agenda.pdf",
+ "snippet": "The President’s Management Agenda lays out a long-term vision
+ for modernizing . the Federal Government in key areas that will improve the
+ ability of agencies to deliver mission outcomes, provide excellent service,
+ and effectively steward taxpayer dollars . on behalf of the American people.",
+ "dateLastCrawled": "2018-11-16T04:21:00.0000000Z", "language": "en", "isNavigational":
+ false}]}, "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages",
+ "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:13 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=20&q=president%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:13 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - A9196257664A4D84A118303F9F6C7D90
+ Bingapis-Sessionid:
+ - 0B456DABC0ED48E7ABBE773050DE2F5F
+ X-Msedge-Clientid:
+ - 353D61A1E1A96D481A976D0DE0E56CDA
+ X-Msapi-Userstate:
+ - '9801'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=203,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: A9196257664A4D84A118303F9F6C7D90 Ref B: BY3EDGE0408 Ref C: 2018-11-19T22:42:13Z'
+ Apim-Request-Id:
+ - 3815d00e-c08c-4bf9-b271-03a086ed3a71
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:13 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "president
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 20800000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "The President''s Management Agenda | The White House", "url": "https:\/\/www.whitehouse.gov\/omb\/management\/pma\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/omb\/management\/pma",
+ "snippet": "The President’s Management Agenda lays the foundation needed
+ to address the critical challenges where Government as a whole still operates
+ in the past. This is one of many steps to building a ...", "dateLastCrawled":
+ "2018-11-16T09:31:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1", "name":
+ "Franklin D. Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-d-roosevelt\/",
+ "about": [{"name": "Franklin D. Roosevelt"}, {"name": "Franklin D. Roosevelt"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-d-roosevelt",
+ "snippet": "President Wilson appointed him Assistant Secretary of the Navy,
+ and he was the Democratic nominee for Vice President in 1920. In the summer
+ of 1921, when he was 39, disaster hit-he was stricken ...", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Vice President Mike Pence | The White House", "url": "https:\/\/www.whitehouse.gov\/vice-president-mike-pence\/",
+ "about": [{"name": "Mike Pence"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/vice-president-mike-pence", "snippet":
+ "Michael R. Pence is the 48th and current Vice President of the United States.
+ Michael R. Pence was born in Columbus, Indiana, on June 7, 1959, one of six
+ children born to Edward and Nancy Pence.", "dateLastCrawled": "2018-11-15T18:53:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Remarks by President Trump at a Meeting with the National ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-meeting-national-space-council-signing-space-policy-directive-3\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "THE PRESIDENT: Thank you very much, everybody. Thank you very
+ much. This is an incredible time for our country. I would say that our economy
+ — and many of you know that very well — is doing ...", "dateLastCrawled":
+ "2018-11-16T01:38:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "The Opioid Crisis | The White House", "url": "https:\/\/www.whitehouse.gov\/opioids\/",
+ "about": [{"name": "Opioid"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/opioids",
+ "snippet": "The Opioid Crisis. More than 300,000 Americans have died from
+ overdoses involving opioids since 2000. President Donald J. Trump has mobilized
+ his entire Administration to address opioid abuse by ...", "dateLastCrawled":
+ "2018-11-16T08:46:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "President Donald J. Trump Names Recipients of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-names-recipients-presidential-medal-freedom\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "On Friday, November 16, 2018, President Donald J. Trump will
+ award the Presidential Medal of Freedom to 7 distinguished individuals. This
+ prestigious award is the Nation’s highest civilian honor ...", "dateLastCrawled":
+ "2018-11-13T02:33:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "President Donald J. Trump’s Blueprint To Lower Drug Prices ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-blueprint-lower-drug-prices\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "President Trump’s blueprint will seek to encourage innovation,
+ while also promoting better price competition and addressing foreign freeloading.
+ The Department of Health and Human Services (HHS ...", "dateLastCrawled":
+ "2018-11-13T23:24:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "President Trump''s Cabinet - The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "about": [{"name": "Cabinet"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "President Donald J. Trump’s Cabinet includes Vice President
+ Mike Pence and the heads of the 15 executive departments – the Secretaries
+ of Agriculture, Commerce, Defense, Education, Energy ...", "dateLastCrawled":
+ "2018-11-15T17:49:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "Lyndon B. Johnson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/lyndon-b-johnson\/",
+ "about": [{"name": "Lyndon B. Johnson"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/lyndon-b-johnson", "snippet":
+ "In the 1960 campaign, Lyndon B. Johnson was elected Vice President as
+ John F. Kennedy’s running mate. On November 22, 1963, when Kennedy was assassinated,
+ Johnson was sworn in as the 36th United ...", "dateLastCrawled": "2018-11-12T12:36:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "President Donald J. Trump is Ending United States ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-ending-united-states-participation-unacceptable-iran-deal\/",
+ "about": [{"name": "Iran"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "ADDRESSING IRANIAN AGGRESSION: President Trump is committed
+ to ensuring Iran has no possible path to a nuclear weapon and is addressing
+ the threats posed by the regime’s malign activities.", "dateLastCrawled":
+ "2018-11-12T16:37:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Remarks by President Trump and President Duda of the ...", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-president-duda-republic-poland-joint-press-conference\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "PRESIDENT TRUMP: The trade deal with South Korea has been fully
+ renegotiated and is ready for signature. We may sign it at the United Nations
+ or shortly thereafter. That was a terrible deal for ...", "dateLastCrawled":
+ "2018-11-16T09:06:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "James Carter | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/james-carter\/",
+ "about": [{"name": "Jimmy Carter"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/james-carter", "snippet":
+ "Jimmy Carter served as the 39th President of the United States from 1977
+ to 1981. He was awarded the 2002 Nobel Peace Prize for work to find peaceful
+ solutions to international conflicts, to ...", "dateLastCrawled": "2018-11-13T00:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "James K. Polk | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/james-k-polk\/",
+ "about": [{"name": "James K. Polk"}, {"name": "James K. Polk"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/james-k-polk",
+ "snippet": "Often referred to as the first “dark horse,” James K. Polk was
+ the 11th President of the United States from 1845 to 1849, the last strong
+ President until the Civil War.", "dateLastCrawled": "2018-11-14T07:39:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Articles | The White House", "url": "https:\/\/www.whitehouse.gov\/articles\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/articles",
+ "snippet": "This president and our administration understand that veterans’
+ benefits are not entitlements – they’re earned. They are the ongoing compensation
+ for services rendered in the uniform of the ...", "dateLastCrawled": "2018-11-15T18:36:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Presidential Election Process | USAGov", "url": "https:\/\/www.usa.gov\/election",
+ "about": [{"name": "United States presidential election"}, {"name": "2016
+ United States presidential election"}, {"name": "2016 United States presidential
+ election"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/election",
+ "snippet": "Overview of the Presidential Election Process An election for
+ president of the United States occurs every four years on Election Day,
+ held the first Tuesday after the first Monday in November. The next presidential
+ election will be held on November 3, 2020.", "dateLastCrawled": "2018-11-09T17:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "President Donald J. Trump’s Initiative to Stop Opioid ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trumps-initiative-stop-opioid-abuse-reduce-drug-supply-demand\/",
+ "about": [{"name": "Opioid"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "President Trump’s Initiative to Stop Opioids Abuse and Reduce
+ Drug Supply and Demand will confront the driving forces behind the opioid
+ crisis.", "dateLastCrawled": "2018-11-14T17:21:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Joint Statement of President Donald J. Trump of the United ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/joint-statement-president-donald-j-trump-united-states-america-chairman-kim-jong-un-democratic-peoples-republic-korea-singapore-summit\/",
+ "about": [{"name": "North Korea"}, {"name": "Kim Jong-un"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/joint-statement...",
+ "snippet": "President Donald J. Trump of the United States of America and
+ Chairman Kim Jong Un of the State Affairs Commission of the Democratic People’s
+ Republic of Korea (DPRK) held a first, historic ...", "dateLastCrawled": "2018-11-15T02:59:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Presidential Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "about": [{"name": "Executive order"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Remarks by President Trump and President Juncker of the ...",
+ "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president-trump-president-juncker-european-commission-joint-press-statements\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/remarks-president...",
+ "snippet": "PRESIDENT TRUMP: Well, thank you very much, Jean-Claude. And
+ I just want to conclude by saying this was a very big day for free and fair
+ trade. A very big day indeed.", "dateLastCrawled": "2018-11-15T12:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "President - Ky. Council on Postsecondary Education", "url": "http:\/\/cpe.ky.gov\/aboutus\/president.html",
+ "isFamilyFriendly": true, "displayUrl": "cpe.ky.gov\/aboutus\/president.html",
+ "snippet": "He was named president of the Council in October 2018, following
+ the retirement of Robert L. King. He came to the Council in 2009 from Eastern
+ Kentucky University, where he held a variety of leadership positions, including
+ associate vice president for academic affairs, university programs.", "dateLastCrawled":
+ "2018-11-14T01:45:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:14 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=president%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:14 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 9FF2A0C0ED9D4B11BFF20964EAA17412
+ Bingapis-Sessionid:
+ - 0C8CB41D7733464999172DAB303627DD
+ X-Msedge-Clientid:
+ - 10710FA7287A62F825A2030B293663B9
+ X-Msapi-Userstate:
+ - 115e
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=221,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 9FF2A0C0ED9D4B11BFF20964EAA17412 Ref B: BY3EDGE0319 Ref C: 2018-11-19T22:42:14Z'
+ Apim-Request-Id:
+ - 71c7fd96-47f1-4f59-9e6a-8b5f6caf0f51
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:14 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "president
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=president+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 20800000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "Which President served as a lieutenant colonel in the Spanish-American
+ war? Who was the first Democrat elected after the Civil War? Who introduced
+ Social Security?", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "about": [{"name": "Donald Trump"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past.", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "The Administration | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "about": [{"name": "Executive Office of the President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "Barack Obama | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/barack-obama\/",
+ "about": [{"name": "Barack Obama"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/barack-obama", "snippet":
+ "Barack Obama served as the 44th President of the United States. His story
+ is the American story — values from the heartland, a middle-class upbringing
+ in a strong family, hard work and education ...", "dateLastCrawled": "2018-11-15T04:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "George W. Bush | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-w-bush\/",
+ "about": [{"name": "George W. Bush"}, {"name": "George H. W. Bush"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/george-w-bush",
+ "snippet": "George W. Bush, America’s 43rd President (2001-2009), was
+ transformed into a wartime President in the aftermath of the airborne terrorist
+ attacks on September 11, 2001, facing the “greatest ...", "dateLastCrawled":
+ "2018-11-14T23:36:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "The White House", "url": "https:\/\/www.whitehouse.gov\/", "about": [{"name":
+ "The White House"}, {"name": "whitehouse.gov"}, {"name": "White House"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of ...", "dateLastCrawled":
+ "2018-11-16T14:40:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "Statement from the President | The White House", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/statement-from-the-president-4\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/statement-from-the-president-4",
+ "snippet": "As President, it is my duty to protect the interests of working
+ men and women, farmers, ranchers, businesses, and our country itself.", "dateLastCrawled":
+ "2018-11-13T18:05:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7", "name":
+ "Presidents, Vice Presidents, and First Ladies of the ...", "url": "https:\/\/www.usa.gov\/presidents",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/presidents",
+ "snippet": "The president of the United States is the head of state of the
+ U.S., the chief executive of the federal government, and Commander-in-Chief
+ of the armed forces. The United States was the first nation to create the
+ office of president as the head of state in a modern republic. The Constitution
+ ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "The Executive Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "about": [{"name": "Executive Office of the President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Write or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Write a letter to the President. Here are a few simple things you can do
+ to make sure your message gets to the White House as quickly as possible.",
+ "dateLastCrawled": "2018-11-16T02:34:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Andrew Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "about": [{"name": "Andrew Jackson"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Franklin D. Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-d-roosevelt\/",
+ "about": [{"name": "Franklin D. Roosevelt"}, {"name": "Franklin D. Roosevelt"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-d-roosevelt",
+ "snippet": "President Wilson appointed him Assistant Secretary of the Navy,
+ and he was the Democratic nominee for Vice President in 1920. In the summer
+ of 1921, when he was 39, disaster hit-he was stricken ...", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13", "name":
+ "Theodore Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/theodore-roosevelt\/",
+ "about": [{"name": "Theodore Roosevelt"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/theodore-roosevelt",
+ "snippet": "With the assassination of President William McKinley, Theodore
+ Roosevelt, not quite 43, became the 26th and youngest President in the
+ Nation’s history (1901-1909). He brought new excitement and ...", "dateLastCrawled":
+ "2018-11-12T08:12:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "James Carter | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/james-carter\/",
+ "about": [{"name": "Jimmy Carter"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/james-carter", "snippet":
+ "Jimmy Carter served as the 39th President of the United States from 1977
+ to 1981. He was awarded the 2002 Nobel Peace Prize for work to find peaceful
+ solutions to international conflicts, to ...", "dateLastCrawled": "2018-11-13T00:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Pardon Information and Instructions | PARDON | Department ...",
+ "url": "https:\/\/www.justice.gov\/pardon\/pardon-information-and-instructions",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.justice.gov\/pardon\/pardon-information-and-instructions",
+ "snippet": "Pardon Information and Instructions. ... may be pardoned by
+ the President. In addition, the President''s pardon power extends to convictions
+ adjudicated in the Superior Court of the District of Columbia and military
+ court-martial proceedings. However, the President cannot pardon a state
+ criminal offense. ...", "dateLastCrawled": "2018-11-02T21:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Michael R. Pence | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/mike-pence\/",
+ "about": [{"name": "Office of the Vice President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/people\/mike-pence",
+ "snippet": "Michael R. Pence is the 48th and current Vice President of
+ the United States. Michael R. Pence was born in Columbus, Indiana, on June
+ 7, 1959, one of six children born to Edward and Nancy Pence.", "dateLastCrawled":
+ "2018-11-12T05:38:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "The President''s Volunteer Service Award", "url": "https:\/\/www.presidentialserviceawards.gov\/",
+ "about": [{"name": "President''s Volunteer Service Award"}, {"name": "President''s
+ Volunteer Service Award"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.presidentialserviceawards.gov",
+ "snippet": "The President’s Volunteer Service Award (PVSA) is the premier
+ volunteer awards program, encouraging citizens to live a life of service through
+ presidential gratitude and national recognition.", "dateLastCrawled": "2018-11-11T04:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "President Donald J. Trump Names Recipients of the ...", "url":
+ "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j-trump-names-recipients-presidential-medal-freedom\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/briefings-statements\/president-donald-j...",
+ "snippet": "On Friday, November 16, 2018, President Donald J. Trump will
+ award the Presidential Medal of Freedom to 7 distinguished individuals. This
+ prestigious award is the Nation’s highest civilian honor ...", "dateLastCrawled":
+ "2018-11-13T02:33:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "Michael Picker, President - California Public Utilities ...", "url": "http:\/\/www.cpuc.ca.gov\/picker\/",
+ "about": [{"name": "Michael Picker"}], "isFamilyFriendly": true, "displayUrl":
+ "www.cpuc.ca.gov\/picker", "snippet": "Michael Picker, President. Michael
+ Picker was named President of the California Public Utilities Commission
+ (CPUC) on December 23, 2014, by Governor Edmund G. Brown Jr., who first appointed
+ President Picker as a Commissioner on January 29, 2014.", "dateLastCrawled":
+ "2018-11-15T23:28:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:14 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=presidente%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:15 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 55195731B1D74FB888576F86FCFEC6D4
+ Bingapis-Sessionid:
+ - CEB72A89DABD4AD1A6D7F8FAD5025DD8
+ X-Msedge-Clientid:
+ - 267666DF14B16C2406A36A7315FD6D15
+ X-Msapi-Userstate:
+ - 79e1
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=182,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 55195731B1D74FB888576F86FCFEC6D4 Ref B: BY3EDGE0319 Ref C: 2018-11-19T22:42:15Z'
+ Apim-Request-Id:
+ - 723ce30e-20a6-4511-b77e-6c2ffee5057f
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:14 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "presidente
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=presidente+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 434000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Presidents | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents", "snippet":
+ "If you’re looking to learn more about the past Presidents who have led
+ our country, you’re in the right place. Take a look at our full set of biographies.
+ Then, quiz your friends.", "dateLastCrawled": "2018-11-12T05:18:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "The Executive Branch | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch\/",
+ "about": [{"name": "Executive Office of the President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/the-executive-branch",
+ "snippet": "The power of the Executive Branch is vested in the President
+ of the United States, who also acts as head of state and Commander-in-Chief
+ of the armed forces. The President is responsible for ...", "dateLastCrawled":
+ "2018-11-13T00:11:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Donald J. Trump | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/donald-j-trump\/",
+ "about": [{"name": "Donald Trump"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/people\/donald-j-trump", "snippet": "Donald
+ J. Trump is the 45th President of the United States. He believes the United
+ States has incredible potential and will go on to exceed even its remarkable
+ achievements of the past. His ...", "dateLastCrawled": "2018-11-16T06:06:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Presidents, Vice Presidents, and First Ladies of the ...", "url":
+ "https:\/\/www.usa.gov\/presidents", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/presidents", "snippet": "The president of the
+ United States is the head of state of the U.S., the chief executive of the
+ federal government, and Commander-in-Chief of the armed forces. The United
+ States was the first nation to create the office of president as the head
+ of state in a modern republic. The Constitution ...", "dateLastCrawled": "2018-11-15T14:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Michael R. Pence | The White House", "url": "https:\/\/www.whitehouse.gov\/people\/mike-pence\/",
+ "about": [{"name": "Office of the Vice President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/people\/mike-pence",
+ "snippet": "Michael R. Pence is the 48th and current Vice President of the
+ United States. Michael R. Pence was born in Columbus, Indiana, on June 7,
+ 1959, one of six children born to Edward and Nancy Pence ...", "dateLastCrawled":
+ "2018-11-12T05:38:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "The Cabinet", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet\/",
+ "about": [{"name": "Cabinet"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration\/the-cabinet",
+ "snippet": "Established in Article II, Section 2 of the Constitution, the
+ Cabinet''s role is to advise the President on subjects related to each member''s
+ office.", "dateLastCrawled": "2018-11-15T17:49:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Write or Call the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/get-involved\/write-or-call", "snippet":
+ "Here are a few simple things you can do to make sure your message gets to
+ the White House as quickly as possible. The President and the First Lady
+ strongly encourage all Americans to consider ...", "dateLastCrawled": "2018-11-16T02:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Gutiérrez: “Mr. President, It Is Time For You To Resign ...", "url":
+ "https:\/\/gutierrez.house.gov\/media-center\/press-releases\/guti-rrez-mr-president-it-time-you-resign",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/gutierrez.house.gov\/media-center\/press-releases\/guti-rrez...",
+ "snippet": "Today in a speech on the House floor, Rep. Luis V. Gutiérrez (D-IL)
+ said he has sent a letter to the President asking him to resign “for the good
+ of the United States and her people.” Holding a copy of the letter, sent today,
+ the Illinois Congressman and Member of the Judiciary Committee said, “It has
+ become clear… that for decades, the President led a vast criminal enterprise",
+ "dateLastCrawled": "2018-11-11T10:40:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Economic Report of the President February 2018", "url": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/02\/ERP_2018_Final-FINAL.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/wp-content\/uploads\/2018\/02\/ERP_2018...",
+ "snippet": "In his 1994 Economic Report of the President, President Clinton
+ promised to connect “every classroom, every library, and every hospital in
+ America” to the Internet by 2000.", "dateLastCrawled": "2018-11-13T14:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Lyndon B. Johnson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/lyndon-b-johnson\/",
+ "about": [{"name": "Lyndon B. Johnson"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/lyndon-b-johnson", "snippet":
+ "In the 1960 campaign, Lyndon B. Johnson was elected Vice President as John
+ F. Kennedy’s running mate. On November 22, 1963, when Kennedy was assassinated,
+ Johnson was sworn in as the 36th United ...", "dateLastCrawled": "2018-11-12T12:36:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "The Administration | The White House", "url": "https:\/\/www.whitehouse.gov\/the-trump-administration\/",
+ "about": [{"name": "Executive Office of the President of the United States"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/the-trump-administration",
+ "snippet": "President Donald J. Trump promised that he would bring the best
+ and brightest from across the country—not just inside Washington—to build
+ his Administration. The President, alongside the Vice ...", "dateLastCrawled":
+ "2018-11-13T17:44:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Presidential Actions Archive | The White House", "url": "https:\/\/www.whitehouse.gov\/presidential-actions\/",
+ "about": [{"name": "Executive order"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/presidential-actions", "snippet": "Access
+ all official actions from President Donald J. Trump, including nominations,
+ Executive Orders, and Proclamations.", "dateLastCrawled": "2018-11-15T10:02:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Andrew Jackson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-jackson\/",
+ "about": [{"name": "Andrew Jackson"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-jackson", "snippet":
+ "Andrew Jackson was the seventh President of the United States from 1829
+ to 1837, seeking to act as the direct representative of the common man. More
+ nearly than any of his predecessors, Andrew ...", "dateLastCrawled": "2018-11-13T06:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Contact the White House | The White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-11-13T16:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "George Washington | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/george-washington\/",
+ "about": [{"name": "George Washington"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/george-washington", "snippet":
+ "On April 30, 1789, George Washington, standing on the balcony of Federal
+ Hall on Wall Street in New York, took his oath of office as the first President
+ of the United States. On April 30, 1789 ...", "dateLastCrawled": "2018-11-15T22:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Presidential Vetoes | US House of Representatives: History ...",
+ "url": "http:\/\/history.house.gov\/Institution\/Presidential-Vetoes\/Presidential-Vetoes\/",
+ "isFamilyFriendly": true, "displayUrl": "history.house.gov\/Institution\/Presidential-Vetoes\/Presidential-Vetoes",
+ "snippet": "Article I, section 7 of the Constitution grants the President
+ the authority to veto legislation passed by Congress. This authority is one
+ of the most significant tools the President can employ to prevent the passage
+ of legislation. Even the threat of a veto can bring about changes in the content
+ of ...", "dateLastCrawled": "2018-11-16T04:11:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Franklin D. Roosevelt | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/franklin-d-roosevelt\/",
+ "about": [{"name": "Franklin D. Roosevelt"}, {"name": "Franklin D. Roosevelt"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov\/...\/presidents\/franklin-d-roosevelt",
+ "snippet": "Assuming the Presidency at the depth of the Great Depression as
+ our 32nd President (1933-1945), Franklin D. Roosevelt helped the American
+ people regain faith in themselves. Assuming the Presidency ...", "dateLastCrawled":
+ "2018-11-13T23:34:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Andrew Johnson | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/andrew-johnson\/",
+ "about": [{"name": "Andrew Johnson"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/andrew-johnson", "snippet":
+ "With the assassination of President Abraham Lincoln, Andrew Johnson became
+ the 17th President of the United States (1865-1869), an old-fashioned southern
+ Jacksonian Democrat of pronounced states ...", "dateLastCrawled": "2018-11-13T02:23:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Ronald Reagan | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/ronald-reagan\/",
+ "about": [{"name": "Ronald Reagan"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/...\/presidents\/ronald-reagan", "snippet":
+ "Ronald Reagan, originally an American actor and politician, became the
+ 40th President of the United States serving from 1981 to 1989. His term saw
+ a restoration of prosperity at home, with the ...", "dateLastCrawled": "2018-11-15T07:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "John Adams | The White House", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/john-adams\/",
+ "about": [{"name": "John Adams"}, {"name": "John Adams"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.whitehouse.gov\/about-the-white-house\/presidents\/john-adams",
+ "snippet": "John Adams, a remarkable political philosopher, served as the
+ second President of the United States (1797-1801), after serving as the first
+ Vice President under President George Washington ...", "dateLastCrawled":
+ "2018-11-16T08:36:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:15 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=hippopotamus%20(site:hippo.whitehouse.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:15 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 130ADDAEAA8E45809EFEC557B81C3C11
+ Bingapis-Sessionid:
+ - 19969A73461B4DE2853200457D63A7A3
+ X-Msedge-Clientid:
+ - 2147D888C75868ED2074D424C614699B
+ X-Msapi-Userstate:
+ - fb71
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=120,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 130ADDAEAA8E45809EFEC557B81C3C11 Ref B: BY3EDGE0521 Ref C: 2018-11-19T22:42:15Z'
+ Apim-Request-Id:
+ - 6fe71fef-4646-4169-9371-ad322f503fdc
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:14 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "hippopotamus
+ (site:hippo.whitehouse.gov)"}, "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:16 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/Web_search_using_Bing_engine.yml b/features/vcr_cassettes/Searches_using_mobile_device/Web_search_using_Bing_engine.yml
index 94d5c2e4d7..7e00b73d67 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/Web_search_using_Bing_engine.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/Web_search_using_Bing_engine.yml
@@ -416,4 +416,913 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:37 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=agency%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3956'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:06 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=05B7A3E03E2A6CA8339DAF4C3FFD6D04; path=/; expires=Sat, 14-Dec-2019 22:42:06
+ GMT; domain=bingapis.com
+ - MUIDB=05B7A3E03E2A6CA8339DAF4C3FFD6D04; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:06 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:06 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F61301B1ED6B4D5B9B0C1F36AC13783A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:42:06 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:06
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3EAD8A74B0CF6F35127586D8B1186E94; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:06 GMT; domain=bingapis.com
+ - _SS=SID=3EAD8A74B0CF6F35127586D8B1186E94; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 29C8B5332F3C48D0A94CEDE4219565B6
+ X-Msedge-Clientid:
+ - 05B7A3E03E2A6CA8339DAF4C3FFD6D04
+ X-Msapi-Userstate:
+ - '4204'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 29C8B5332F3C48D0A94CEDE4219565B6 Ref B: CO1EDGE0422 Ref C: 2018-11-19T22:42:06Z'
+ Date:
+ - Mon, 19 Nov 2018 22:42:06 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=33F89C28D51047F1AD209FF27802EDA1&CID=05B7A3E03E2A6CA8339DAF4C3FFD6D04&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=33F89C28D51047F1AD209FF27802EDA1&CID=05B7A3E03E2A6CA8339DAF4C3FFD6D04&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=agency+(site%3a.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5420.1", "totalEstimatedMatches": 29800000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Agency - post.ca.gov", "url": "https:\/\/post.ca.gov\/agency", "urlPingSuffix":
+ "DevEx,5060.1", "displayUrl": "https:\/\/post.ca.gov\/agency", "snippet":
+ "With a PASS account, you can use one password to access POST''s online services
+ - including your POST Profile, Continuing Professional Training (CPT) status,
+ and news customized for your location and occupation", "dateLastCrawled":
+ "2018-11-15T10:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "CA.Gov : Agencies", "url": "http:\/\/www.ca.gov\/Agencies", "urlPingSuffix":
+ "DevEx,5074.1", "about": [{"name": "North Carolina"}], "displayUrl": "www.ca.gov\/Agencies",
+ "snippet": "Search for adult inmates currently in a California Department
+ of Corrections and Rehabilitation institution. Find a State Job Access state
+ civil service examinations, apply for vacancies, and track your application
+ status. ... Find an Agency. Agency Search: Search. Show Filters .", "dateLastCrawled":
+ "2018-11-15T20:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "About the Agency | FEMA.gov", "url": "https:\/\/www.fema.gov\/about-agency",
+ "urlPingSuffix": "DevEx,5088.1", "about": [{"name": "Federal Emergency Management
+ Agency"}, {"name": "Federal Emergency Management Agency"}], "displayUrl":
+ "https:\/\/www.fema.gov\/about", "snippet": "On April 1, 1979, President
+ Jimmy Carter signed the executive order that created the Federal Emergency
+ Management Agency (FEMA). From day one, FEMA has remained committed to protecting
+ and serving the American people. That commitment to the people we serve and
+ the belief in our survivor centric mission will never change.", "dateLastCrawled":
+ "2018-11-09T14:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Passport Agencies - State", "url": "https:\/\/travel.state.gov\/content\/travel\/en\/passports\/requirements\/where-to-apply\/passport-agencies.html",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/travel.state.gov\/...\/where-to-apply\/passport-agencies.html",
+ "snippet": "Passport Agencies Proof of immediate international travel ,
+ the Expedited Fee , and an appointment are required for each application submitted
+ in person at a Passport Agency or Center. You can make an appointment online
+ in a few minutes.", "dateLastCrawled": "2018-11-11T22:30:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Agencies | The
+ State of New York", "url": "https:\/\/www.ny.gov\/agencies", "urlPingSuffix":
+ "DevEx,5120.1", "about": [{"name": "New York"}], "displayUrl": "https:\/\/www.ny.gov\/agencies",
+ "snippet": "The State of New York does not imply approval of the listed
+ destinations, warrant the accuracy of any information set out in those destinations,
+ or endorse any opinions expressed therein.", "dateLastCrawled": "2018-11-13T14:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "The Texas
+ Education Agency", "url": "https:\/\/tea.texas.gov\/Home\/", "urlPingSuffix":
+ "DevEx,5132.1", "displayUrl": "https:\/\/tea.texas.gov\/Home", "snippet":
+ "The latest news from the Texas Education Agency is available through news
+ releases, online correspondence, mailing lists, and other posted information.
+ Finance & Funding. Final FIRST Ratings Announced. The 2017-18 final financial
+ accountability ratings for more than 1,100 school districts and charters across
+ the state are now available.", "dateLastCrawled": "2018-11-18T21:11:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Agency
+ | California Natural Resources Agency", "url": "http:\/\/resources.ca.gov\/agency\/",
+ "urlPingSuffix": "DevEx,5146.1", "displayUrl": "resources.ca.gov\/agency",
+ "snippet": "The California Natural Resources Agency leads and coordinates
+ both the administration''s climate adaptation policy and its natural resources
+ climate policy. California EcoRestore. California EcoRestore is an initiative
+ to help coordinate and advance at least 30,000 acres of critical habitat restoration
+ in the Sacramento - San Joaquin Delta over ...", "dateLastCrawled": "2018-11-12T18:52:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Agencies
+ | Georgia.gov", "url": "https:\/\/georgia.gov\/agency-list", "urlPingSuffix":
+ "DevEx,5159.1", "about": [{"name": "Georgia"}], "displayUrl": "https:\/\/georgia.gov\/agency-list",
+ "snippet": "You are here. Home » Agencies. Agencies", "dateLastCrawled":
+ "2018-11-14T20:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "urlPingSuffix": "DevEx,5173.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet":
+ "Find the right agency to help me A-Z Index of U.S. Government Agencies
+ Find contact information for federal government departments, agencies, and
+ government-sponsored enterprises.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "A-Z Index
+ of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5189.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Welcome to the
+ CIA Web Site — Central Intelligence Agency", "url": "https:\/\/www.cia.gov\/index.html",
+ "urlPingSuffix": "DevEx,5203.1", "about": [{"name": "Special Activities Division"},
+ {"name": "Central Intelligence Agency"}], "displayUrl": "https:\/\/www.cia.gov",
+ "snippet": "The Central Intelligence Agency (CIA) today released the third
+ of six sets of declassified daily intelligence reports President Harry Truman
+ received from CIA and its predecessor organization, the Central Intelligence
+ Group, between 1946 and 1951.", "dateLastCrawled": "2018-11-15T21:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Home
+ | FEMA.gov", "url": "https:\/\/www.fema.gov\/", "urlPingSuffix": "DevEx,5215.1",
+ "displayUrl": "https:\/\/www.fema.gov", "snippet": "Individuals or businesses
+ that suffered damages from Hurricane Michael can check their eligibility for
+ different types of disaster assistance online, by calling 800-621-3362, or
+ by visiting a disaster recovery center.", "dateLastCrawled": "2018-11-06T16:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Agencies
+ - West Virginia", "url": "https:\/\/www.wv.gov\/agencies\/Pages\/default.aspx",
+ "urlPingSuffix": "DevEx,5230.1", "about": [{"name": "West Virginia"}], "displayUrl":
+ "https:\/\/www.wv.gov\/agencies\/Pages\/default.aspx", "snippet": "The
+ West Virginia Water Development Authority (WDA) is the agency that coordinates
+ the financing and closing for all infrastructure loans and economic development
+ loans and provides financing for the design, construction, improvement and
+ acquisiti...", "dateLastCrawled": "2018-11-12T22:33:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Agency for
+ Healthcare Research & Quality", "url": "https:\/\/www.ahrq.gov\/", "urlPingSuffix":
+ "DevEx,5241.1", "displayUrl": "https:\/\/www.ahrq.gov", "snippet": "AHRQ
+ invests in research and evidence to make health care safer and improve quality.",
+ "dateLastCrawled": "2018-11-19T22:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Pay.gov - Home", "url": "https:\/\/www.pay.gov\/agency\/", "urlPingSuffix":
+ "DevEx,5255.1", "displayUrl": "https:\/\/www.pay.gov\/agency", "snippet":
+ "Pay.gov provides U.S. Government agencies flexible online and offline internet-based
+ services that allow them to securely collect funds electronically. Agency
+ customers benefit from the ability to easily make and manage their payments
+ 24 hour-a-day, 365 days-a-year (excepting regular maintenance windows).",
+ "dateLastCrawled": "2018-11-04T04:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Agencies | USDA", "url": "https:\/\/www.usda.gov\/our-agency\/agencies",
+ "urlPingSuffix": "DevEx,5271.1", "displayUrl": "https:\/\/www.usda.gov\/our-agency\/agencies",
+ "snippet": "The Farm Service Agency implements agricultural policy, administers
+ credit and loan programs, and manages conservation, commodity, disaster and
+ farm marketing programs through a national network of offices.", "dateLastCrawled":
+ "2018-11-14T18:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Agency Information - Public Utility Commission of Texas", "url":
+ "http:\/\/www.puc.texas.gov\/agency\/Default.aspx", "urlPingSuffix": "DevEx,5283.1",
+ "displayUrl": "www.puc.texas.gov\/agency\/Default.aspx", "snippet": "The
+ PUC makes extensive use of Adobe''s Acrobat PDF format Download a free copy
+ of the Acrobat Reader here.", "dateLastCrawled": "2018-11-16T11:38:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Agencies
+ - Commonwealth of Virginia", "url": "https:\/\/www.virginia.gov\/agencies\/",
+ "urlPingSuffix": "DevEx,5296.1", "about": [{"name": "Virginia"}], "displayUrl":
+ "https:\/\/www.virginia.gov\/agencies", "snippet": "The agency also
+ collects Virginia''s fuel tax, monitors the state''s trucking industry and
+ serves as Virginia''s Highway Safety Office. In addition, the agency effectively
+ enforces motoring and transportation-related tax laws, and efficiently collects
+ and distributes transportation-related revenues.", "dateLastCrawled": "2018-11-16T00:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "State
+ of North Carolina: Agencies", "url": "https:\/\/www.nc.gov\/agencies", "urlPingSuffix":
+ "DevEx,5309.1", "about": [{"name": "North Carolina"}], "displayUrl": "https:\/\/www.nc.gov\/agencies",
+ "snippet": "Full list of state government agencies in North Carolina, with
+ links and contacts.", "dateLastCrawled": "2018-11-16T03:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "AgencyWeb",
+ "url": "https:\/\/agencyweb.elpasotexas.gov\/index.cfm", "urlPingSuffix":
+ "DevEx,5321.1", "displayUrl": "https:\/\/agencyweb.elpasotexas.gov\/index.cfm",
+ "snippet": "Login: Your internet browser is not supported. Microsoft Internet
+ Explorer v5.0 and above are supported.", "dateLastCrawled": "2018-11-16T08:32:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:07 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=agency%20(site:www.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '3619'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:07 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=28741D0262E8649A06A411AE633F6508; path=/; expires=Sat, 14-Dec-2019 22:42:07
+ GMT; domain=bingapis.com
+ - MUIDB=28741D0262E8649A06A411AE633F6508; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:42:07 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:07 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=EC47A69D63EA402C8728077DC564E0E3&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:42:07 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:42:07
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3B1FB49BC1FE6330166BB837C029621D; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:42:07 GMT; domain=bingapis.com
+ - _SS=SID=3B1FB49BC1FE6330166BB837C029621D; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - E95B8EACFCDD4A39A82B70205713C0C2
+ X-Msedge-Clientid:
+ - 28741D0262E8649A06A411AE633F6508
+ X-Msapi-Userstate:
+ - '7791'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: E95B8EACFCDD4A39A82B70205713C0C2 Ref B: CO1EDGE0514 Ref C: 2018-11-19T22:42:07Z'
+ Date:
+ - Mon, 19 Nov 2018 22:42:07 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=072AEDD6714D46749BB79863EAE9E313&CID=28741D0262E8649A06A411AE633F6508&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=072AEDD6714D46749BB79863EAE9E313&CID=28741D0262E8649A06A411AE633F6508&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=agency+(site%3awww.usa.gov%2f)",
+ "webSearchUrlPingSuffix": "DevEx,5457.1", "totalEstimatedMatches": 62600,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "A-Z Index of U.S. Government Departments and Agencies", "url": "https:\/\/www.usa.gov\/federal-agencies\/a",
+ "urlPingSuffix": "DevEx,5060.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies",
+ "snippet": "The .gov means it''s official. Federal government websites often
+ end in .gov or .mil. Before sharing sensitive information, make sure you''re
+ on a federal government site. This site is secure. The https:\/\/ ensures
+ that you are connecting to the official website and that any information you
+ provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Government Agencies
+ and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "urlPingSuffix": "DevEx,5074.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet":
+ "Find the right agency to help me A-Z Index of U.S. Government Agencies
+ Find contact information for federal government departments, agencies, and
+ government-sponsored enterprises.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Internal
+ Revenue Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/internal-revenue-service",
+ "urlPingSuffix": "DevEx,5090.1", "about": [{"name": "Internal Revenue Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/internal-revenue-service",
+ "snippet": "The Internal Revenue Service (IRS) administers and enforces
+ U.S. federal tax laws. Agency Details Acronym: IRS. Website: Internal Revenue
+ Service (IRS) Contact: Contact the Internal Revenue Service. Help With
+ Tax Questions. Taxpayer Advocate Service. Report Tax Fraud. IRS Hotlines.",
+ "dateLastCrawled": "2018-11-12T12:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Filing a Consumer Complaint | USAGov", "url": "https:\/\/www.usa.gov\/consumer-complaints",
+ "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/www.usa.gov\/consumer-complaints",
+ "snippet": "File a complaint with your local consumer protection offices or
+ the state regulatory agency or licensing board that has jurisdiction over
+ the seller. Notify the Better Business Bureau (BBB) in your area about your
+ problem.", "dateLastCrawled": "2018-11-12T07:19:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Farm Service Agency | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/farm-service-agency",
+ "urlPingSuffix": "DevEx,5122.1", "about": [{"name": "Farm Service Agency"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/farm-service-agency",
+ "snippet": "Farm Service Agency. The Farm Service Agency supports farms
+ and farming communities with programs including disaster relief, conservation
+ programs, commodity price guarantee programs, and loan programs.", "dateLastCrawled":
+ "2018-11-14T20:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "U.S. Agency for Global Media | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-agency-for-global-media",
+ "urlPingSuffix": "DevEx,5136.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-agency-for-global-media",
+ "snippet": "U.S. Agency for Global Media. The U.S. Agency for Global Media,
+ formerly known as the Broadcasting Board of Governors, broadcasts news and
+ information about the United States and the world to audiences abroad.", "dateLastCrawled":
+ "2018-11-13T12:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "USA - Official Guide to Government Information and Services", "url":
+ "https:\/\/www.usa.gov\/", "urlPingSuffix": "DevEx,5149.1", "about": [{"name":
+ "United States"}], "displayUrl": "https:\/\/www.usa.gov", "snippet": "USA.gov
+ can help you start your search for government information by topic and agency.",
+ "dateLastCrawled": "2018-11-16T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Complaints Against the Government | USAGov", "url": "https:\/\/www.usa.gov\/complaint-against-government",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.usa.gov\/complaint-against-government",
+ "snippet": "If you are unable to resolve an issue with a federal government
+ agency, contact the office of the Inspector General (IG) of that agency.
+ State Government Agencies. To file a complaint against a state, local or
+ tribal government agency, contact the agency directly.", "dateLastCrawled":
+ "2018-11-16T10:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Credit Reports and Scores | USAGov", "url": "https:\/\/www.usa.gov\/credit-reports",
+ "urlPingSuffix": "DevEx,5181.1", "displayUrl": "https:\/\/www.usa.gov\/credit-reports",
+ "snippet": "A credit reporting agency (CRA) is a company that collects information
+ about where you live and work, how you pay your bills, whether or not you
+ have been sued, arrested, or filed for bankruptcy. All of this information
+ is combined together in a credit report.", "dateLastCrawled": "2018-11-15T17:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "State
+ Consumer Protection Offices | USAGov", "url": "https:\/\/www.usa.gov\/state-consumer",
+ "urlPingSuffix": "DevEx,5197.1", "about": [{"name": "Protection"}], "displayUrl":
+ "https:\/\/www.usa.gov\/state-consumer", "snippet": "The .gov means it''s
+ official. Federal government websites often end in .gov or .mil. Before sharing
+ sensitive information, make sure you''re on a federal government site. This
+ site is secure. The https:\/\/ ensures that you are connecting to the official
+ website and that any information you provide is ...", "dateLastCrawled": "2018-11-15T05:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Independent
+ Agencies | USAGov", "url": "https:\/\/www.usa.gov\/independent-agencies",
+ "urlPingSuffix": "DevEx,5212.1", "displayUrl": "https:\/\/www.usa.gov\/independent-agencies",
+ "snippet": "Independent Agencies. Independent establishments are created
+ by Congress to address concerns that go beyond the scope of ordinary legislation.
+ These agencies are responsible for keeping the government and economy running
+ smoothly.", "dateLastCrawled": "2018-11-13T22:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "urlPingSuffix": "DevEx,5228.1", "about": [{"name": "Federal government of
+ the United States"}], "displayUrl": "https:\/\/www.usa.gov\/branches-of-government",
+ "snippet": "The Founding Fathers, the framers of the U.S. Constitution, wanted
+ to form a government that did not allow one person to have too much control.
+ With this in mind, they wrote the Constitution to provide for a separation
+ of powers, or three separate branches of government. Each branch has its
+ own ...", "dateLastCrawled": "2018-11-14T21:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "U.S. Department of Health and Human Services | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-health-and-human-services",
+ "urlPingSuffix": "DevEx,5243.1", "about": [{"name": "United States Department
+ of Health and Human Services"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-health-and...",
+ "snippet": "U.S. Department of Health and Human Services. The Department of
+ Health and Human Services protects the health of all Americans and provides
+ essential human services.", "dateLastCrawled": "2018-11-16T10:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Identity
+ Theft | USAGov", "url": "https:\/\/www.usa.gov\/identity-theft", "urlPingSuffix":
+ "DevEx,5259.1", "displayUrl": "https:\/\/www.usa.gov\/identity-theft", "snippet":
+ "Tax Identity Theft - Report this type of ID theft to the Internal Revenue
+ Service and your state’s Department of Taxation or Revenue. Report Identity
+ Theft to Other Organizations. ... Confirm that the credit reporting agency
+ will alert the other two credit reporting agencies.", "dateLastCrawled": "2018-11-16T10:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Auctions
+ and Sales | USAGov", "url": "https:\/\/www.usa.gov\/auctions-and-sales",
+ "urlPingSuffix": "DevEx,5275.1", "displayUrl": "https:\/\/www.usa.gov\/auctions-and-sales",
+ "snippet": "The General Services Administration (GSA) is the federal agency
+ responsible for selling developed surplus property. If you''re interested
+ in purchasing real property, contact the GSA''s Office of Real Property Utilization
+ and Disposal at 1-202-501-0084 .", "dateLastCrawled": "2018-11-13T19:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Getting
+ or Renewing a U.S. Passport | USAGov", "url": "https:\/\/www.usa.gov\/passport",
+ "urlPingSuffix": "DevEx,5291.1", "displayUrl": "https:\/\/www.usa.gov\/passport",
+ "snippet": "Requirements for expedited service at passport agency locations.
+ You must show proof of emergency or upcoming travel in person at one of 26
+ regional passport agencies. You must have an appointment. Call the National
+ Passport Information Center at 1-877-487-2778 to schedule one.", "dateLastCrawled":
+ "2018-11-13T22:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "Report Scams and Frauds | USAGov", "url": "https:\/\/www.usa.gov\/stop-scams-frauds",
+ "urlPingSuffix": "DevEx,5307.1", "displayUrl": "https:\/\/www.usa.gov\/stop-scams-frauds",
+ "snippet": "Welfare (TANF) fraud - Contact your nearest welfare agency or
+ call the HHS Inspector General at 1-800-HHS-TIPS (1-800-447-8477) to report
+ program fraud or abuse. Reporting fraud may not recover everything you lost,
+ but it does improve your chances of getting some of it back and avoiding future
+ losses.", "dateLastCrawled": "2018-11-14T23:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "urlPingSuffix": "DevEx,5323.1", "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "Marine Mammal Commission | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/marine-mammal-commission",
+ "urlPingSuffix": "DevEx,5339.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/marine-mammal-commission",
+ "snippet": "Marine Mammal Commission The Marine Mammal Commission provides
+ oversight of all marine mammal conservation policies and programs carried
+ out by federal regulatory agencies. Agency Details", "dateLastCrawled":
+ "2018-11-12T22:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "U.S. Department of Defense | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-defense",
+ "urlPingSuffix": "DevEx,5355.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-defense",
+ "snippet": "U.S. Department of Defense The Department of Defense provides
+ the military forces needed to deter war, and to protect the security of the
+ United States. Agency Details", "dateLastCrawled": "2018-11-13T14:05:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:08 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=agency%20(site:.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:19 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 2DD6646E9606421CBD5B6965E67F1255
+ Bingapis-Sessionid:
+ - 39CA308E4D59460DB429DCA005A6D06D
+ X-Msedge-Clientid:
+ - 0ADB43F1E238639C16CB4F5DE37462F8
+ X-Msapi-Userstate:
+ - d2a8
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=181,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 2DD6646E9606421CBD5B6965E67F1255 Ref B: BY3EDGE0316 Ref C: 2018-11-19T22:43:19Z'
+ Apim-Request-Id:
+ - 074ba1f9-6017-4887-8e2c-3b25398996fd
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:19 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "agency
+ (site:.gov)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=agency+(site%3a.gov)",
+ "totalEstimatedMatches": 29800000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Agency - post.ca.gov", "url": "https:\/\/post.ca.gov\/agency",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/post.ca.gov\/agency",
+ "snippet": "With a PASS account, you can use one password to access POST''s
+ online services - including your POST Profile, Continuing Professional Training
+ (CPT) status, and news customized for your location and occupation", "dateLastCrawled":
+ "2018-11-15T10:00:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1", "name":
+ "CA.Gov : Agencies", "url": "http:\/\/www.ca.gov\/Agencies", "about": [{"name":
+ "North Carolina"}], "isFamilyFriendly": true, "displayUrl": "www.ca.gov\/Agencies",
+ "snippet": "Search for adult inmates currently in a California Department
+ of Corrections and Rehabilitation institution. Find a State Job Access state
+ civil service examinations, apply for vacancies, and track your application
+ status. ... Find an Agency. Agency Search: Search. Show Filters .", "dateLastCrawled":
+ "2018-11-15T20:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "About the Agency | FEMA.gov", "url": "https:\/\/www.fema.gov\/about-agency",
+ "about": [{"name": "Federal Emergency Management Agency"}, {"name": "Federal
+ Emergency Management Agency"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.fema.gov\/about",
+ "snippet": "On April 1, 1979, President Jimmy Carter signed the executive
+ order that created the Federal Emergency Management Agency (FEMA). From
+ day one, FEMA has remained committed to protecting and serving the American
+ people. That commitment to the people we serve and the belief in our survivor
+ centric mission will never change.", "dateLastCrawled": "2018-11-09T14:50:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Passport Agencies - State", "url": "https:\/\/travel.state.gov\/content\/travel\/en\/passports\/requirements\/where-to-apply\/passport-agencies.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/travel.state.gov\/...\/where-to-apply\/passport-agencies.html",
+ "snippet": "Passport Agencies Proof of immediate international travel ,
+ the Expedited Fee , and an appointment are required for each application submitted
+ in person at a Passport Agency or Center. You can make an appointment online
+ in a few minutes.", "dateLastCrawled": "2018-11-11T22:30:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Agencies | The State of New York", "url": "https:\/\/www.ny.gov\/agencies",
+ "about": [{"name": "New York"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ny.gov\/agencies",
+ "snippet": "The State of New York does not imply approval of the listed
+ destinations, warrant the accuracy of any information set out in those destinations,
+ or endorse any opinions expressed therein.", "dateLastCrawled": "2018-11-13T14:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "The Texas Education Agency", "url": "https:\/\/tea.texas.gov\/Home\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/tea.texas.gov\/Home",
+ "snippet": "The latest news from the Texas Education Agency is available
+ through news releases, online correspondence, mailing lists, and other posted
+ information. Finance & Funding. Final FIRST Ratings Announced. The 2017-18
+ final financial accountability ratings for more than 1,100 school districts
+ and charters across the state are now available.", "dateLastCrawled": "2018-11-18T21:11:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Agency | California Natural Resources Agency", "url": "http:\/\/resources.ca.gov\/agency\/",
+ "isFamilyFriendly": true, "displayUrl": "resources.ca.gov\/agency", "snippet":
+ "The California Natural Resources Agency leads and coordinates both the
+ administration''s climate adaptation policy and its natural resources climate
+ policy. California EcoRestore. California EcoRestore is an initiative to help
+ coordinate and advance at least 30,000 acres of critical habitat restoration
+ in the Sacramento - San Joaquin Delta over ...", "dateLastCrawled": "2018-11-12T18:52:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Agencies | Georgia.gov", "url": "https:\/\/georgia.gov\/agency-list",
+ "about": [{"name": "Georgia"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/georgia.gov\/agency-list",
+ "snippet": "You are here. Home » Agencies. Agencies", "dateLastCrawled":
+ "2018-11-14T20:50:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet": "Find
+ the right agency to help me A-Z Index of U.S. Government Agencies Find contact
+ information for federal government departments, agencies, and government-sponsored
+ enterprises.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The .gov means it''s
+ official. Federal government websites often end in .gov or .mil. Before sharing
+ sensitive information, make sure you''re on a federal government site. This
+ site is secure. The https:\/\/ ensures that you are connecting to the official
+ website and that any information you provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Welcome to the CIA Web Site — Central Intelligence Agency", "url":
+ "https:\/\/www.cia.gov\/index.html", "about": [{"name": "Special Activities
+ Division"}, {"name": "Central Intelligence Agency"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.cia.gov", "snippet": "The Central Intelligence
+ Agency (CIA) today released the third of six sets of declassified daily intelligence
+ reports President Harry Truman received from CIA and its predecessor organization,
+ the Central Intelligence Group, between 1946 and 1951.", "dateLastCrawled":
+ "2018-11-15T21:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Home | FEMA.gov", "url": "https:\/\/www.fema.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.fema.gov", "snippet": "Individuals or
+ businesses that suffered damages from Hurricane Michael can check their eligibility
+ for different types of disaster assistance online, by calling 800-621-3362,
+ or by visiting a disaster recovery center.", "dateLastCrawled": "2018-11-06T16:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Agencies - West Virginia", "url": "https:\/\/www.wv.gov\/agencies\/Pages\/default.aspx",
+ "about": [{"name": "West Virginia"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.wv.gov\/agencies\/Pages\/default.aspx", "snippet": "The
+ West Virginia Water Development Authority (WDA) is the agency that coordinates
+ the financing and closing for all infrastructure loans and economic development
+ loans and provides financing for the design, construction, improvement and
+ acquisiti...", "dateLastCrawled": "2018-11-12T22:33:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Agency for Healthcare Research & Quality", "url": "https:\/\/www.ahrq.gov\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ahrq.gov", "snippet":
+ "AHRQ invests in research and evidence to make health care safer and improve
+ quality.", "dateLastCrawled": "2018-11-19T22:15:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "Pay.gov - Home", "url": "https:\/\/www.pay.gov\/agency\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.pay.gov\/agency", "snippet": "Pay.gov
+ provides U.S. Government agencies flexible online and offline internet-based
+ services that allow them to securely collect funds electronically. Agency
+ customers benefit from the ability to easily make and manage their payments
+ 24 hour-a-day, 365 days-a-year (excepting regular maintenance windows).",
+ "dateLastCrawled": "2018-11-04T04:00:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Agencies | USDA", "url": "https:\/\/www.usda.gov\/our-agency\/agencies",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usda.gov\/our-agency\/agencies",
+ "snippet": "The Farm Service Agency implements agricultural policy, administers
+ credit and loan programs, and manages conservation, commodity, disaster and
+ farm marketing programs through a national network of offices.", "dateLastCrawled":
+ "2018-11-14T18:38:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "Agency Information - Public Utility Commission of Texas", "url": "http:\/\/www.puc.texas.gov\/agency\/Default.aspx",
+ "isFamilyFriendly": true, "displayUrl": "www.puc.texas.gov\/agency\/Default.aspx",
+ "snippet": "The PUC makes extensive use of Adobe''s Acrobat PDF format Download
+ a free copy of the Acrobat Reader here.", "dateLastCrawled": "2018-11-16T11:38:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Agencies - Commonwealth of Virginia", "url": "https:\/\/www.virginia.gov\/agencies\/",
+ "about": [{"name": "Virginia"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.virginia.gov\/agencies",
+ "snippet": "The agency also collects Virginia''s fuel tax, monitors the
+ state''s trucking industry and serves as Virginia''s Highway Safety Office.
+ In addition, the agency effectively enforces motoring and transportation-related
+ tax laws, and efficiently collects and distributes transportation-related
+ revenues.", "dateLastCrawled": "2018-11-16T00:42:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "State of North Carolina: Agencies", "url": "https:\/\/www.nc.gov\/agencies",
+ "about": [{"name": "North Carolina"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.nc.gov\/agencies", "snippet": "Full list of state government
+ agencies in North Carolina, with links and contacts.", "dateLastCrawled":
+ "2018-11-16T03:26:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "AgencyWeb", "url": "https:\/\/agencyweb.elpasotexas.gov\/index.cfm", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/agencyweb.elpasotexas.gov\/index.cfm",
+ "snippet": "Login: Your internet browser is not supported. Microsoft Internet
+ Explorer v5.0 and above are supported.", "dateLastCrawled": "2018-11-16T08:32:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:20 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=agency%20(site:www.usa.gov/)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:42:20 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 6C5A3C7FD73646488B1451340D1C9470
+ Bingapis-Sessionid:
+ - 6F93126C0D5547A5A8CFCF2D9EE3AF42
+ X-Msedge-Clientid:
+ - 14F5A336EFE667B61F25AF9AEEAA6603
+ X-Msapi-Userstate:
+ - 3be2
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=169,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 6C5A3C7FD73646488B1451340D1C9470 Ref B: BY3EDGE0408 Ref C: 2018-11-19T22:43:20Z'
+ Apim-Request-Id:
+ - a355c0d3-d35f-4773-9f72-d1bb6bdbd38d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:43:20 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "agency
+ (site:www.usa.gov\/)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=agency+(site%3awww.usa.gov%2f)",
+ "totalEstimatedMatches": 62600, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "A-Z Index of U.S. Government Departments and Agencies", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/a", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies", "snippet": "The .gov means it''s
+ official. Federal government websites often end in .gov or .mil. Before sharing
+ sensitive information, make sure you''re on a federal government site. This
+ site is secure. The https:\/\/ ensures that you are connecting to the official
+ website and that any information you provide is ...", "dateLastCrawled": "2018-11-11T03:18:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Government Agencies and Elected Officials | USAGov", "url": "https:\/\/www.usa.gov\/agencies",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/agencies", "snippet": "Find
+ the right agency to help me A-Z Index of U.S. Government Agencies Find contact
+ information for federal government departments, agencies, and government-sponsored
+ enterprises.", "dateLastCrawled": "2018-11-16T02:55:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Internal Revenue Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/internal-revenue-service",
+ "about": [{"name": "Internal Revenue Service"}], "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/internal-revenue-service",
+ "snippet": "The Internal Revenue Service (IRS) administers and enforces
+ U.S. federal tax laws. Agency Details Acronym: IRS. Website: Internal Revenue
+ Service (IRS) Contact: Contact the Internal Revenue Service. Help With
+ Tax Questions. Taxpayer Advocate Service. Report Tax Fraud. IRS Hotlines.",
+ "dateLastCrawled": "2018-11-12T12:22:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Filing a Consumer Complaint | USAGov", "url": "https:\/\/www.usa.gov\/consumer-complaints",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/consumer-complaints",
+ "snippet": "File a complaint with your local consumer protection offices or
+ the state regulatory agency or licensing board that has jurisdiction over
+ the seller. Notify the Better Business Bureau (BBB) in your area about your
+ problem.", "dateLastCrawled": "2018-11-12T07:19:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Farm Service Agency | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/farm-service-agency",
+ "about": [{"name": "Farm Service Agency"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies\/farm-service-agency", "snippet":
+ "Farm Service Agency. The Farm Service Agency supports farms and farming
+ communities with programs including disaster relief, conservation programs,
+ commodity price guarantee programs, and loan programs.", "dateLastCrawled":
+ "2018-11-14T20:17:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "U.S. Agency for Global Media | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-agency-for-global-media",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-agency-for-global-media",
+ "snippet": "U.S. Agency for Global Media. The U.S. Agency for Global Media,
+ formerly known as the Broadcasting Board of Governors, broadcasts news and
+ information about the United States and the world to audiences abroad.", "dateLastCrawled":
+ "2018-11-13T12:05:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "USA - Official Guide to Government Information and Services", "url": "https:\/\/www.usa.gov\/",
+ "about": [{"name": "United States"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov", "snippet": "USA.gov can help you start your search
+ for government information by topic and agency.", "dateLastCrawled": "2018-11-16T12:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Complaints Against the Government | USAGov", "url": "https:\/\/www.usa.gov\/complaint-against-government",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/complaint-against-government",
+ "snippet": "If you are unable to resolve an issue with a federal government
+ agency, contact the office of the Inspector General (IG) of that agency.
+ State Government Agencies. To file a complaint against a state, local or
+ tribal government agency, contact the agency directly.", "dateLastCrawled":
+ "2018-11-16T10:56:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "Credit Reports and Scores | USAGov", "url": "https:\/\/www.usa.gov\/credit-reports",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/credit-reports",
+ "snippet": "A credit reporting agency (CRA) is a company that collects information
+ about where you live and work, how you pay your bills, whether or not you
+ have been sued, arrested, or filed for bankruptcy. All of this information
+ is combined together in a credit report.", "dateLastCrawled": "2018-11-15T17:37:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "State Consumer Protection Offices | USAGov", "url": "https:\/\/www.usa.gov\/state-consumer",
+ "about": [{"name": "Protection"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.usa.gov\/state-consumer", "snippet": "The .gov means it''s
+ official. Federal government websites often end in .gov or .mil. Before sharing
+ sensitive information, make sure you''re on a federal government site. This
+ site is secure. The https:\/\/ ensures that you are connecting to the official
+ website and that any information you provide is ...", "dateLastCrawled": "2018-11-15T05:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Independent Agencies | USAGov", "url": "https:\/\/www.usa.gov\/independent-agencies",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/independent-agencies",
+ "snippet": "Independent Agencies. Independent establishments are created
+ by Congress to address concerns that go beyond the scope of ordinary legislation.
+ These agencies are responsible for keeping the government and economy running
+ smoothly.", "dateLastCrawled": "2018-11-13T22:34:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Branches of the U.S. Government | USAGov", "url": "https:\/\/www.usa.gov\/branches-of-government",
+ "about": [{"name": "Federal government of the United States"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.usa.gov\/branches-of-government", "snippet":
+ "The Founding Fathers, the framers of the U.S. Constitution, wanted to form
+ a government that did not allow one person to have too much control. With
+ this in mind, they wrote the Constitution to provide for a separation of powers,
+ or three separate branches of government. Each branch has its own ...",
+ "dateLastCrawled": "2018-11-14T21:39:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "U.S. Department of Health and Human Services | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-health-and-human-services",
+ "about": [{"name": "United States Department of Health and Human Services"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-health-and...",
+ "snippet": "U.S. Department of Health and Human Services. The Department of
+ Health and Human Services protects the health of all Americans and provides
+ essential human services.", "dateLastCrawled": "2018-11-16T10:43:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Identity Theft | USAGov", "url": "https:\/\/www.usa.gov\/identity-theft",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/identity-theft",
+ "snippet": "Tax Identity Theft - Report this type of ID theft to the Internal
+ Revenue Service and your state’s Department of Taxation or Revenue. Report
+ Identity Theft to Other Organizations. ... Confirm that the credit reporting
+ agency will alert the other two credit reporting agencies.", "dateLastCrawled":
+ "2018-11-16T10:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "Auctions and Sales | USAGov", "url": "https:\/\/www.usa.gov\/auctions-and-sales",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/auctions-and-sales",
+ "snippet": "The General Services Administration (GSA) is the federal agency
+ responsible for selling developed surplus property. If you''re interested
+ in purchasing real property, contact the GSA''s Office of Real Property Utilization
+ and Disposal at 1-202-501-0084 .", "dateLastCrawled": "2018-11-13T19:04:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Getting or Renewing a U.S. Passport | USAGov", "url": "https:\/\/www.usa.gov\/passport",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/passport",
+ "snippet": "Requirements for expedited service at passport agency locations.
+ You must show proof of emergency or upcoming travel in person at one of 26
+ regional passport agencies. You must have an appointment. Call the National
+ Passport Information Center at 1-877-487-2778 to schedule one.", "dateLastCrawled":
+ "2018-11-13T22:14:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "Report Scams and Frauds | USAGov", "url": "https:\/\/www.usa.gov\/stop-scams-frauds",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/stop-scams-frauds",
+ "snippet": "Welfare (TANF) fraud - Contact your nearest welfare agency or
+ call the HHS Inspector General at 1-800-HHS-TIPS (1-800-447-8477) to report
+ program fraud or abuse. Reporting fraud may not recover everything you lost,
+ but it does improve your chances of getting some of it back and avoiding future
+ losses.", "dateLastCrawled": "2018-11-14T23:35:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Find a Federal Government Job | USAGov", "url": "https:\/\/www.usa.gov\/government-jobs",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/government-jobs",
+ "snippet": "The federal government has job opportunities available now in
+ agencies throughout the U.S. If you’re interested in a job with the federal
+ government, visit USAJOBS.gov, the official one-stop source for federal jobs
+ and employment information. There, you can: You must create a USAJOBS profile
+ to ...", "dateLastCrawled": "2018-11-14T13:30:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Marine Mammal Commission | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/marine-mammal-commission",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/marine-mammal-commission",
+ "snippet": "Marine Mammal Commission The Marine Mammal Commission provides
+ oversight of all marine mammal conservation policies and programs carried
+ out by federal regulatory agencies. Agency Details", "dateLastCrawled":
+ "2018-11-12T22:07:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "U.S. Department of Defense | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-defense",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-defense",
+ "snippet": "U.S. Department of Defense The Department of Defense provides
+ the military forces needed to deter war, and to protect the security of the
+ United States. Agency Details", "dateLastCrawled": "2018-11-13T14:05:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:43:20 GMT
recorded_with: VCR 4.0.0
diff --git a/features/vcr_cassettes/Searches_using_mobile_device/When_using_tablet_device.yml b/features/vcr_cassettes/Searches_using_mobile_device/When_using_tablet_device.yml
index be3d5bde06..fda74f87b4 100644
--- a/features/vcr_cassettes/Searches_using_mobile_device/When_using_tablet_device.yml
+++ b/features/vcr_cassettes/Searches_using_mobile_device/When_using_tablet_device.yml
@@ -216,4 +216,457 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Thu, 22 Feb 2018 07:18:06 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=bar%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2917'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:40:38 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=38D3A654A5F960552167AAF8A42E61E3; path=/; expires=Sat, 14-Dec-2019 22:41:38
+ GMT; domain=bingapis.com
+ - MUIDB=38D3A654A5F960552167AAF8A42E61E3; path=/; httponly; expires=Sat, 14-Dec-2019
+ 22:41:38 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:38 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=6BDE935B5D824A7998D5444AA9DF28E6&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 19-Nov-2020 22:41:38 GMT; path=/
+ - SRCHUSR=DOB=20181119; domain=.bingapis.com; expires=Thu, 19-Nov-2020 22:41:38
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=34432B5710636B00047027FB11B46ACB; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 14-Dec-2019 22:41:38 GMT; domain=bingapis.com
+ - _SS=SID=34432B5710636B00047027FB11B46ACB; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 65D1A14D38E14E229BE95A9FDAFEE369
+ X-Msedge-Clientid:
+ - 38D3A654A5F960552167AAF8A42E61E3
+ X-Msapi-Userstate:
+ - 02b2
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 65D1A14D38E14E229BE95A9FDAFEE369 Ref B: CO1EDGE0908 Ref C: 2018-11-19T22:41:38Z'
+ Date:
+ - Mon, 19 Nov 2018 22:41:37 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E8CA7963E13B4345B41269B2AA33009A&CID=38D3A654A5F960552167AAF8A42E61E3&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E8CA7963E13B4345B41269B2AA33009A&CID=38D3A654A5F960552167AAF8A42E61E3&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=bar+(site%3agov+OR+site%3amil)",
+ "webSearchUrlPingSuffix": "DevEx,5415.1", "totalEstimatedMatches": 22300000,
+ "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
+ "Bureau of Automotive Repair, State of California, Dept. of ...", "url":
+ "https:\/\/www.bar.ca.gov\/", "urlPingSuffix": "DevEx,5058.1", "about": [{"name":
+ "California Bureau of Automotive Repair"}, {"name": "California Bureau of
+ Automotive Repair"}], "displayUrl": "https:\/\/www.bar.ca.gov", "snippet":
+ "Bureau of Automotive Repair home page. BAR''s website is experiencing
+ technical difficulties. Access to certain services, including Find a Station
+ and the Consumer Assistance Program application, may be temporarily unavailable.",
+ "dateLastCrawled": "2018-11-15T06:00:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Contact Us - California Bureau of Automotive Repair", "url":
+ "https:\/\/www.bar.ca.gov\/About_BAR\/Contact_Us.html", "urlPingSuffix": "DevEx,5072.1",
+ "displayUrl": "https:\/\/www.bar.ca.gov\/About_BAR\/Contact_Us.html",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-15T03:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "The State Bar of California Home Page", "url": "http:\/\/www.calbar.ca.gov\/",
+ "urlPingSuffix": "DevEx,5086.1", "about": [{"name": "State Bar of California"},
+ {"name": "State Bar of California"}], "displayUrl": "www.calbar.ca.gov",
+ "snippet": "Founded in 1927 by the legislature, The State Bar of California
+ is an administrative arm of the California Supreme Court. Protection of the
+ public is the highest priority of the State Bar. All lawyers practicing
+ in California must be members.", "dateLastCrawled": "2018-11-15T01:52:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Vehicle
+ Test History - California Bureau of Automotive Repair", "url": "https:\/\/www.bar.ca.gov\/pubwebquery\/Vehicle\/PubTstQry.aspx",
+ "urlPingSuffix": "DevEx,5100.1", "displayUrl": "https:\/\/www.bar.ca.gov\/pubwebquery\/Vehicle\/PubTstQry.aspx",
+ "snippet": "Bureau of Automotive Repair Vehicle Test History Page. BAR''s
+ website is experiencing technical difficulties. Access to certain services,
+ including Find a Station and the Consumer Assistance Program application,
+ may be temporarily unavailable.", "dateLastCrawled": "2018-11-13T19:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Industry
+ - Bureau of Automotive Repair, State of ...", "url": "https:\/\/www.bar.ca.gov\/Industry\/index.html",
+ "urlPingSuffix": "DevEx,5114.1", "about": [{"name": "Industry"}], "displayUrl":
+ "https:\/\/www.bar.ca.gov\/Industry\/index.html", "snippet": "BAR''s
+ website is experiencing technical difficulties. Access to certain services,
+ including Find a Station and the Consumer Assistance Program application,
+ may be temporarily unavailable.", "dateLastCrawled": "2018-11-16T00:48:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Forms
+ and Publications - Bureau of Automotive Repair ...", "url": "https:\/\/www.bar.ca.gov\/FormsPubs\/index.html",
+ "urlPingSuffix": "DevEx,5128.1", "displayUrl": "https:\/\/www.bar.ca.gov\/FormsPubs\/index.html",
+ "snippet": "Bureau of Automotive Repair home page. BAR''s website is experiencing
+ technical difficulties. Access to certain services, including Find a Station
+ and the Consumer Assistance Program application, may be temporarily unavailable.",
+ "dateLastCrawled": "2018-11-15T18:47:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Fingerprinting Rule Requirements - calbar.ca.gov", "url": "http:\/\/www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting-Rule-Requirements",
+ "urlPingSuffix": "DevEx,5140.1", "displayUrl": "www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting...",
+ "snippet": "Founded in 1927 by the legislature, The State Bar of California
+ is an administrative arm of the California Supreme Court. Protection of the
+ public is the highest priority of the State Bar. All lawyers practicing
+ in California must be members.", "dateLastCrawled": "2018-11-15T03:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Fingerprinting
+ Rule Requirements for In-State Attorneys", "url": "http:\/\/www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting-Rule-Requirements\/For-In-State-Attorneys",
+ "urlPingSuffix": "DevEx,5152.1", "displayUrl": "www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting...",
+ "snippet": "Founded in 1927 by the legislature, The State Bar of California
+ is an administrative arm of the California Supreme Court. Protection of the
+ public is the highest priority of the State Bar. All lawyers practicing
+ in California must be members.", "dateLastCrawled": "2018-11-15T01:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Attorneys
+ - State Bar of California", "url": "http:\/\/www.calbar.ca.gov\/Attorneys",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "State Bar of California"}],
+ "displayUrl": "www.calbar.ca.gov\/Attorneys", "snippet": "On May 10 the
+ California Supreme Court issued an order approving new Rules of Professional
+ Conduct that had been proposed by the State Bar. The new rules went into
+ effect on November 1, 2018.", "dateLastCrawled": "2018-11-16T08:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "License
+ Renewal", "url": "https:\/\/www.bar.ca.gov\/Industry\/Online_License_Renewal\/index.html",
+ "urlPingSuffix": "DevEx,5180.1", "displayUrl": "https:\/\/www.bar.ca.gov\/Industry\/Online_License_Renewal\/index.html",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-13T11:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Consumer Assistance Program - Bureau of Automotive Repair ...",
+ "url": "https:\/\/www.bar.ca.gov\/Consumer\/Consumer_Assistance_Program\/index.html",
+ "urlPingSuffix": "DevEx,5194.1", "displayUrl": "https:\/\/www.bar.ca.gov\/Consumer\/Consumer_Assistance_Program\/index.html",
+ "snippet": "The Consumer Assistance Program (CAP) is administered by the
+ Bureau of Automotive Repair (BAR) and is designed to help improve California''s
+ air quality. CAP is a voluntary program and offers two options – Repair Assistance
+ and Vehicle Retirement.", "dateLastCrawled": "2018-11-14T13:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Bar
+ Camera Images - weather.gov", "url": "https:\/\/www.weather.gov\/pqr\/barcams",
+ "urlPingSuffix": "DevEx,5208.1", "displayUrl": "https:\/\/www.weather.gov\/pqr\/barcams",
+ "snippet": "*Please note: ocean currents are research, rather than routine,
+ measurements. These near-real-time measurements have not been subjected to
+ thorough data checking.", "dateLastCrawled": "2018-11-15T22:58:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Attorney
+ Re-Fingerprinting Update - The State Bar of ...", "url": "http:\/\/www.calbar.ca.gov\/About-Us\/News-Events\/California-Bar-Journal\/News-Highlights\/attorney-re-fingerprinting-update",
+ "urlPingSuffix": "DevEx,5220.1", "displayUrl": "www.calbar.ca.gov\/About-Us\/News-Events\/California-Bar-Journal\/News...",
+ "snippet": "The State Bar’s instructions will include information about
+ Live Scan locations throughout the state, as well as fingerprint card information
+ for out-of-state and out-of-country California attorneys, and requirements
+ for attorneys authorized to practice in California under the State Bar’s
+ multi-jurisdictional practice rules.", "dateLastCrawled": "2018-11-16T03:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Bay
+ Area Rapid Transit | bart.gov", "url": "https:\/\/www.bart.gov\/", "urlPingSuffix":
+ "DevEx,5233.1", "about": [{"name": "Bay Area Rapid Transit"}], "displayUrl":
+ "https:\/\/www.bart.gov", "snippet": "New BART Trip Planner now in beta,
+ offers real-time end to end trip planning", "dateLastCrawled": "2018-11-16T03:05:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "ETBLAST
+ - Bureau of Automotive Repair, State of California ...", "url": "https:\/\/www.bar.ca.gov\/pubwebquery\/etblast\/etblast.aspx",
+ "urlPingSuffix": "DevEx,5247.1", "displayUrl": "https:\/\/www.bar.ca.gov\/pubwebquery\/etblast\/etblast.aspx",
+ "snippet": "ET Blasts. ET Blasts are electronic communications sent by BAR
+ through the Smog Check test machines to licensed Smog Check stations. ET Blasts
+ contain information on Smog Check program updates and other important announcements
+ for the industry and their customers.", "dateLastCrawled": "2018-11-11T21:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Fleet
+ - Annual Reporting Transmittal", "url": "https:\/\/www.bar.ca.gov\/PubWebQuery\/FINE\/PublicTransmittalForm.aspx",
+ "urlPingSuffix": "DevEx,5261.1", "displayUrl": "https:\/\/www.bar.ca.gov\/PubWebQuery\/FINE\/PublicTransmittalForm.aspx",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-13T08:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "CAP Online Application - Bureau of Automotive Repair ...", "url":
+ "https:\/\/www.bar.ca.gov\/CAPOnline\/CAPApplicationOnline.aspx", "urlPingSuffix":
+ "DevEx,5275.1", "displayUrl": "https:\/\/www.bar.ca.gov\/CAPOnline\/CAPApplicationOnline.aspx",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-14T09:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Past Exams - The State Bar of California Home Page", "url": "http:\/\/www.calbar.ca.gov\/Admissions\/Examinations\/California-Bar-Examination\/Past-Exams",
+ "urlPingSuffix": "DevEx,5288.1", "displayUrl": "www.calbar.ca.gov\/...\/California-Bar-Examination\/Past-Exams",
+ "snippet": "Past Exam Questions for the California Bar Exam and the First-Year
+ Law Students'' Exam", "dateLastCrawled": "2018-11-16T03:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Station
+ Search - California Bureau of Automotive Repair", "url": "https:\/\/www.bar.ca.gov\/pubwebquery\/station\/stationlist.aspx",
+ "urlPingSuffix": "DevEx,5302.1", "displayUrl": "https:\/\/www.bar.ca.gov\/pubwebquery\/station\/stationlist.aspx",
+ "snippet": "Station Search To search for a station, please enter at least
+ one of the following options: Station Name, County, City, Postal Zip-Code,
+ or BAR Field Office area. Select the \"STAR Certified Stations\" box when
+ searching for a STAR certified station.", "dateLastCrawled": "2018-11-14T21:22:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Attorney
+ Search - The State Bar of California", "url": "http:\/\/members.calbar.ca.gov\/fal\/LicenseeSearch\/QuickSearch?ResultType=0&SearchType=0&SoundsLike=False",
+ "urlPingSuffix": "DevEx,5313.1", "displayUrl": "members.calbar.ca.gov\/fal\/LicenseeSearch\/QuickSearch?ResultType=0&...",
+ "snippet": "Attorney Licensee Search - The State Bar of California", "dateLastCrawled":
+ "2018-11-13T08:19:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:41:39 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=bar%20(site:gov%20OR%20site:mil)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 19 Nov 2018 22:41:51 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 369239B21A29422784DC52AB9E6D5339
+ Bingapis-Sessionid:
+ - 83C7A38411A94675B276D2D65DC8C036
+ X-Msedge-Clientid:
+ - 2A13F50B0BCC669E1F6CF9A70A80674C
+ X-Msapi-Userstate:
+ - ee6e
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=174,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 369239B21A29422784DC52AB9E6D5339 Ref B: BY3EDGE0417 Ref C: 2018-11-19T22:42:51Z'
+ Apim-Request-Id:
+ - 826f1dd0-3057-457e-b90a-609ffb8d0aeb
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Mon, 19 Nov 2018 22:42:51 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "bar
+ (site:gov OR site:mil)"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=bar+(site%3agov+OR+site%3amil)",
+ "totalEstimatedMatches": 22300000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Bureau of Automotive Repair, State of California, Dept. of ...",
+ "url": "https:\/\/www.bar.ca.gov\/", "about": [{"name": "California Bureau
+ of Automotive Repair"}, {"name": "California Bureau of Automotive Repair"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov", "snippet":
+ "Bureau of Automotive Repair home page. BAR''s website is experiencing
+ technical difficulties. Access to certain services, including Find a Station
+ and the Consumer Assistance Program application, may be temporarily unavailable.",
+ "dateLastCrawled": "2018-11-15T06:00:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Contact Us - California Bureau of Automotive Repair", "url":
+ "https:\/\/www.bar.ca.gov\/About_BAR\/Contact_Us.html", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.bar.ca.gov\/About_BAR\/Contact_Us.html",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-15T03:18:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "The State Bar of California Home Page", "url": "http:\/\/www.calbar.ca.gov\/",
+ "about": [{"name": "State Bar of California"}, {"name": "State Bar of California"}],
+ "isFamilyFriendly": true, "displayUrl": "www.calbar.ca.gov", "snippet":
+ "Founded in 1927 by the legislature, The State Bar of California is an administrative
+ arm of the California Supreme Court. Protection of the public is the highest
+ priority of the State Bar. All lawyers practicing in California must be
+ members.", "dateLastCrawled": "2018-11-15T01:52:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Vehicle Test History - California Bureau of Automotive Repair",
+ "url": "https:\/\/www.bar.ca.gov\/pubwebquery\/Vehicle\/PubTstQry.aspx", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.bar.ca.gov\/pubwebquery\/Vehicle\/PubTstQry.aspx",
+ "snippet": "Bureau of Automotive Repair Vehicle Test History Page. BAR''s
+ website is experiencing technical difficulties. Access to certain services,
+ including Find a Station and the Consumer Assistance Program application,
+ may be temporarily unavailable.", "dateLastCrawled": "2018-11-13T19:07:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Industry - Bureau of Automotive Repair, State of ...", "url":
+ "https:\/\/www.bar.ca.gov\/Industry\/index.html", "about": [{"name": "Industry"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov\/Industry\/index.html",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-16T00:48:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Forms and Publications - Bureau of Automotive Repair ...", "url": "https:\/\/www.bar.ca.gov\/FormsPubs\/index.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov\/FormsPubs\/index.html",
+ "snippet": "Bureau of Automotive Repair home page. BAR''s website is experiencing
+ technical difficulties. Access to certain services, including Find a Station
+ and the Consumer Assistance Program application, may be temporarily unavailable.",
+ "dateLastCrawled": "2018-11-15T18:47:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "Fingerprinting Rule Requirements - calbar.ca.gov", "url": "http:\/\/www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting-Rule-Requirements",
+ "isFamilyFriendly": true, "displayUrl": "www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting...",
+ "snippet": "Founded in 1927 by the legislature, The State Bar of California
+ is an administrative arm of the California Supreme Court. Protection of the
+ public is the highest priority of the State Bar. All lawyers practicing
+ in California must be members.", "dateLastCrawled": "2018-11-15T03:58:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Fingerprinting Rule Requirements for In-State Attorneys", "url":
+ "http:\/\/www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting-Rule-Requirements\/For-In-State-Attorneys",
+ "isFamilyFriendly": true, "displayUrl": "www.calbar.ca.gov\/Attorneys\/Attorney-Regulation\/Fingerprinting...",
+ "snippet": "Founded in 1927 by the legislature, The State Bar of California
+ is an administrative arm of the California Supreme Court. Protection of the
+ public is the highest priority of the State Bar. All lawyers practicing
+ in California must be members.", "dateLastCrawled": "2018-11-15T01:59:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Attorneys - State Bar of California", "url": "http:\/\/www.calbar.ca.gov\/Attorneys",
+ "about": [{"name": "State Bar of California"}], "isFamilyFriendly": true,
+ "displayUrl": "www.calbar.ca.gov\/Attorneys", "snippet": "On May 10 the
+ California Supreme Court issued an order approving new Rules of Professional
+ Conduct that had been proposed by the State Bar. The new rules went into
+ effect on November 1, 2018.", "dateLastCrawled": "2018-11-16T08:33:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "License Renewal", "url": "https:\/\/www.bar.ca.gov\/Industry\/Online_License_Renewal\/index.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov\/Industry\/Online_License_Renewal\/index.html",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-13T11:53:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Consumer Assistance Program - Bureau of Automotive Repair ...", "url":
+ "https:\/\/www.bar.ca.gov\/Consumer\/Consumer_Assistance_Program\/index.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov\/Consumer\/Consumer_Assistance_Program\/index.html",
+ "snippet": "The Consumer Assistance Program (CAP) is administered by the
+ Bureau of Automotive Repair (BAR) and is designed to help improve California''s
+ air quality. CAP is a voluntary program and offers two options – Repair Assistance
+ and Vehicle Retirement.", "dateLastCrawled": "2018-11-14T13:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Bar Camera Images - weather.gov", "url": "https:\/\/www.weather.gov\/pqr\/barcams",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.weather.gov\/pqr\/barcams",
+ "snippet": "*Please note: ocean currents are research, rather than routine,
+ measurements. These near-real-time measurements have not been subjected to
+ thorough data checking.", "dateLastCrawled": "2018-11-15T22:58:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Attorney Re-Fingerprinting Update - The State Bar of ...", "url":
+ "http:\/\/www.calbar.ca.gov\/About-Us\/News-Events\/California-Bar-Journal\/News-Highlights\/attorney-re-fingerprinting-update",
+ "isFamilyFriendly": true, "displayUrl": "www.calbar.ca.gov\/About-Us\/News-Events\/California-Bar-Journal\/News...",
+ "snippet": "The State Bar’s instructions will include information about
+ Live Scan locations throughout the state, as well as fingerprint card information
+ for out-of-state and out-of-country California attorneys, and requirements
+ for attorneys authorized to practice in California under the State Bar’s
+ multi-jurisdictional practice rules.", "dateLastCrawled": "2018-11-16T03:04:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Bay Area Rapid Transit | bart.gov", "url": "https:\/\/www.bart.gov\/",
+ "about": [{"name": "Bay Area Rapid Transit"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.bart.gov", "snippet": "New BART Trip Planner now in beta,
+ offers real-time end to end trip planning", "dateLastCrawled": "2018-11-16T03:05:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "ETBLAST - Bureau of Automotive Repair, State of California ...",
+ "url": "https:\/\/www.bar.ca.gov\/pubwebquery\/etblast\/etblast.aspx", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.bar.ca.gov\/pubwebquery\/etblast\/etblast.aspx",
+ "snippet": "ET Blasts. ET Blasts are electronic communications sent by BAR
+ through the Smog Check test machines to licensed Smog Check stations. ET Blasts
+ contain information on Smog Check program updates and other important announcements
+ for the industry and their customers.", "dateLastCrawled": "2018-11-11T21:17:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Fleet - Annual Reporting Transmittal", "url": "https:\/\/www.bar.ca.gov\/PubWebQuery\/FINE\/PublicTransmittalForm.aspx",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov\/PubWebQuery\/FINE\/PublicTransmittalForm.aspx",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-13T08:46:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16", "name":
+ "CAP Online Application - Bureau of Automotive Repair ...", "url": "https:\/\/www.bar.ca.gov\/CAPOnline\/CAPApplicationOnline.aspx",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bar.ca.gov\/CAPOnline\/CAPApplicationOnline.aspx",
+ "snippet": "BAR''s website is experiencing technical difficulties. Access
+ to certain services, including Find a Station and the Consumer Assistance
+ Program application, may be temporarily unavailable.", "dateLastCrawled":
+ "2018-11-14T09:04:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17", "name":
+ "Past Exams - The State Bar of California Home Page", "url": "http:\/\/www.calbar.ca.gov\/Admissions\/Examinations\/California-Bar-Examination\/Past-Exams",
+ "isFamilyFriendly": true, "displayUrl": "www.calbar.ca.gov\/...\/California-Bar-Examination\/Past-Exams",
+ "snippet": "Past Exam Questions for the California Bar Exam and the First-Year
+ Law Students'' Exam", "dateLastCrawled": "2018-11-16T03:10:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Station Search - California Bureau of Automotive Repair", "url":
+ "https:\/\/www.bar.ca.gov\/pubwebquery\/station\/stationlist.aspx", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.bar.ca.gov\/pubwebquery\/station\/stationlist.aspx",
+ "snippet": "Station Search To search for a station, please enter at least
+ one of the following options: Station Name, County, City, Postal Zip-Code,
+ or BAR Field Office area. Select the \"STAR Certified Stations\" box when
+ searching for a STAR certified station.", "dateLastCrawled": "2018-11-14T21:22:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Attorney Search - The State Bar of California", "url": "http:\/\/members.calbar.ca.gov\/fal\/LicenseeSearch\/QuickSearch?ResultType=0&SearchType=0&SoundsLike=False",
+ "isFamilyFriendly": true, "displayUrl": "members.calbar.ca.gov\/fal\/LicenseeSearch\/QuickSearch?ResultType=0&...",
+ "snippet": "Attorney Licensee Search - The State Bar of California", "dateLastCrawled":
+ "2018-11-13T08:19:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 19 Nov 2018 22:42:52 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/engines/azure_formatted_query_spec.rb b/spec/engines/bing_formatted_query_spec.rb
similarity index 72%
rename from spec/engines/azure_formatted_query_spec.rb
rename to spec/engines/bing_formatted_query_spec.rb
index 0a32a6734a..d4e4506291 100644
--- a/spec/engines/azure_formatted_query_spec.rb
+++ b/spec/engines/bing_formatted_query_spec.rb
@@ -1,42 +1,42 @@
require 'spec_helper'
-describe AzureFormattedQuery do
+describe BingFormattedQuery do
it 'strips site: and -site:' do
- query = AzureFormattedQuery.new(' site:foo.com gov -site:bar.com ')
+ query = BingFormattedQuery.new(' site:foo.com gov -site:bar.com ')
expect(query.query).to eq('gov (site:gov OR site:mil)')
end
context 'when included domains is present' do
it 'generates query with those included domains' do
- query = AzureFormattedQuery.new('gov', included_domains: %w(foo.com bar.com))
+ query = BingFormattedQuery.new('gov', included_domains: %w(foo.com bar.com))
expect(query.query).to eq('gov (site:bar.com OR site:foo.com)')
end
end
context 'when scope_ids are provided' do
it 'generates query with scopeids as well as domains' do
- query = AzureFormattedQuery.new('gov', scope_ids: %w(inherit the wind), included_domains: %w(foo.com bar.com))
+ query = BingFormattedQuery.new('gov', scope_ids: %w(inherit the wind), included_domains: %w(foo.com bar.com))
expect(query.query).to eq('gov (scopeid:wind OR scopeid:the OR scopeid:inherit OR site:bar.com OR site:foo.com)')
end
end
context 'when included domains is not present' do
it 'generates query with default domains' do
- query = AzureFormattedQuery.new('gov', included_domains: [])
+ query = BingFormattedQuery.new('gov', included_domains: [])
expect(query.query).to eq('gov (site:gov OR site:mil)')
end
end
context 'when excluded domains are present' do
it 'generates query with those excluded domains' do
- query = AzureFormattedQuery.new('gov', excluded_domains: %w(exfoo.com exbar.com))
+ query = BingFormattedQuery.new('gov', excluded_domains: %w(exfoo.com exbar.com))
expect(query.query).to eq('gov (site:gov OR site:mil) (-site:exbar.com AND -site:exfoo.com)')
end
end
context 'when included and excluded domains are present' do
it 'generates query with included and excluded domains' do
- query = AzureFormattedQuery.new('gov',
+ query = BingFormattedQuery.new('gov',
excluded_domains: %w(exfoo.com exbar.com),
included_domains: %w(foo.com bar.com))
expect(query.query).to eq('gov (site:bar.com OR site:foo.com) (-site:exbar.com AND -site:exfoo.com)')
@@ -44,7 +44,7 @@
end
it 'downcases the query' do
- query = AzureFormattedQuery.new('Egypt').query
+ query = BingFormattedQuery.new('Egypt').query
expect(query).to match /egypt/
end
@@ -52,7 +52,7 @@
let(:query_with_operators) { 'Egypt OR Morocco' }
it 'preserves the case of search operators' do
- query = AzureFormattedQuery.new(query_with_operators).query
+ query = BingFormattedQuery.new(query_with_operators).query
expect(query).to match /egypt OR morocco/
end
end
diff --git a/spec/engines/bing_v5_image_engine_spec.rb b/spec/engines/bing_v5_image_engine_spec.rb
index f2f99bbdc3..39eec77702 100644
--- a/spec/engines/bing_v5_image_engine_spec.rb
+++ b/spec/engines/bing_v5_image_engine_spec.rb
@@ -1,7 +1,9 @@
require 'spec_helper'
describe BingV5ImageEngine do
- it_behaves_like 'a Bing V5 engine'
+ subject { described_class.new(options) }
+
+ it_behaves_like 'a Bing search'
describe '#execute_query' do
subject do
diff --git a/spec/engines/bing_v5_web_engine_spec.rb b/spec/engines/bing_v5_web_engine_spec.rb
index 946c0204de..c1609209b5 100644
--- a/spec/engines/bing_v5_web_engine_spec.rb
+++ b/spec/engines/bing_v5_web_engine_spec.rb
@@ -1,19 +1,9 @@
require 'spec_helper'
describe BingV5WebEngine do
- it_behaves_like 'a Bing V5 engine'
+ subject { described_class.new(options) }
- describe '#params' do
- subject { described_class.new({ enable_highlighting: :enable_highlighting }) }
-
- it 'uses "WebPages,SpellSuggestions" for responseFilter' do
- expect(subject.params[:responseFilter]).to eq('WebPages,SpellSuggestions')
- end
-
- it 'gets textDecorations from options' do
- expect(subject.params[:textDecorations]).to eq(:enable_highlighting)
- end
- end
+ it_behaves_like 'a Bing search'
describe '#execute_query' do
subject do
diff --git a/spec/engines/bing_v6_formatted_query_spec.rb b/spec/engines/bing_v6_formatted_query_spec.rb
deleted file mode 100644
index ca156283a2..0000000000
--- a/spec/engines/bing_v6_formatted_query_spec.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-require 'spec_helper'
-
-describe BingV6FormattedQuery do
- subject { described_class.new('') }
-
- describe '#query_plus_locale' do
- it 'simply returns the given query with no locale added' do
- expect(subject.query_plus_locale(:query)).to eq(:query)
- end
- end
-end
diff --git a/spec/engines/bing_v6_image_search_spec.rb b/spec/engines/bing_v6_image_search_spec.rb
index c1c3acf45d..7ab3b50dda 100644
--- a/spec/engines/bing_v6_image_search_spec.rb
+++ b/spec/engines/bing_v6_image_search_spec.rb
@@ -1,26 +1,6 @@
-require 'spec_helper'
-
describe BingV6ImageSearch do
- let(:image_search_params) do
- { offset: 20,
- limit: 10,
- query: 'agncy (site:nasa.gov)',
- }
- end
- let(:image_search) { described_class.new(image_search_params) }
- let(:search_response) { image_search.execute_query }
-
+ subject { described_class.new(options) }
- it_behaves_like 'a Bing V6 search'
+ it_behaves_like 'a Bing search'
it_behaves_like 'an image search'
-
- describe '#execute_query' do
- it 'sets the next_offset' do
- expect(search_response.next_offset).to be >= 30
- end
-
- it 'includes tracking information' do
- expect(search_response.tracking_information).to match(/[0-9A-F]{32}/)
- end
- end
end
diff --git a/spec/engines/bing_v6_web_search_spec.rb b/spec/engines/bing_v6_web_search_spec.rb
index 738d3e2d3a..d8a20af939 100644
--- a/spec/engines/bing_v6_web_search_spec.rb
+++ b/spec/engines/bing_v6_web_search_spec.rb
@@ -1,44 +1,6 @@
-require 'spec_helper'
-
describe BingV6WebSearch do
- it_behaves_like 'a Bing V6 search'
- it_behaves_like "a web search engine"
-
- describe '#params' do
- subject { described_class.new({ enable_highlighting: :enable_highlighting }) }
-
- it 'uses "WebPages,SpellSuggestions" for responseFilter' do
- expect(subject.params[:responseFilter]).to eq('WebPages,SpellSuggestions')
- end
-
- it 'gets textDecorations from options' do
- expect(subject.params[:textDecorations]).to eq(:enable_highlighting)
- end
- end
-
- describe '#execute_query' do
- subject do
- described_class.new({
- offset: 20,
- limit: 10,
- query: 'osha guidelines',
- enable_highlighting: false,
- })
- end
-
- it 'should send a search request to Bing V6 and process the response' do
- result = subject.execute_query
- expect(result.start_record).to eq(21)
- expect(result.end_record).to eq(30)
- expect(result.next_offset).to be >= 30
- expect(result.total).to be > 5000000
- expect(result.spelling_suggestion).to be_nil
- expect(result.tracking_information).to match(/[0-9A-F]{32}/)
+ subject { described_class.new(options) }
- first_result = result.results.first
- expect(first_result.title).to_not be_empty
- expect(first_result.unescaped_url).to match(URI.regexp)
- expect(first_result.content).to_not be_empty
- end
- end
+ it_behaves_like 'a Bing search'
+ it_behaves_like 'a web search engine'
end
diff --git a/spec/engines/bing_v7_image_search_spec.rb b/spec/engines/bing_v7_image_search_spec.rb
new file mode 100644
index 0000000000..653444d3e4
--- /dev/null
+++ b/spec/engines/bing_v7_image_search_spec.rb
@@ -0,0 +1,6 @@
+describe BingV7ImageSearch do
+ subject { described_class.new(options) }
+
+ it_behaves_like 'a Bing search'
+ it_behaves_like 'an image search'
+end
diff --git a/spec/engines/bing_v7_web_search_spec.rb b/spec/engines/bing_v7_web_search_spec.rb
new file mode 100644
index 0000000000..470f08c123
--- /dev/null
+++ b/spec/engines/bing_v7_web_search_spec.rb
@@ -0,0 +1,21 @@
+describe BingV7WebSearch do
+ subject { described_class.new(options) }
+
+ it_behaves_like 'a Bing search'
+ it_behaves_like 'a web search engine'
+
+ # This was an edge-case bug on Bing's side:
+ # https://www.pivotaltracker.com/story/show/160807845
+ # Move this spec to shared bing_search_behavior after Bing V5 and Azure classes are removed
+ context 'when a Spanish site runs a search that could return location results' do
+ let(:params) do
+ { query: 'hotel (site:search.gov)' }
+ end
+
+ before { allow(Language).to receive(:bing_market_for_code).and_return('es-US') }
+
+ it 'returns no results' do
+ expect(described_class.new(params).execute_query.total).to eq 0
+ end
+ end
+end
diff --git a/spec/models/affiliate_spec.rb b/spec/models/affiliate_spec.rb
index 7eda1972db..4df9c338c8 100644
--- a/spec/models/affiliate_spec.rb
+++ b/spec/models/affiliate_spec.rb
@@ -59,7 +59,7 @@
rejecting(nil, %w{ text/plain text/xml application/pdf }) }
end
- it { is_expected.to validate_inclusion_of(:search_engine).in_array(%w( Google BingV6 SearchGov )) }
+ it { is_expected.to validate_inclusion_of(:search_engine).in_array(%w( Google BingV6 BingV7 SearchGov )) }
it { is_expected.to have_many :boosted_contents }
it { is_expected.to have_many :sayt_suggestions }
@@ -1550,6 +1550,7 @@
{
'Bing' => 'Bing',
'BingV6' => 'Bing',
+ 'BingV7' => 'Bing',
'Google' => 'Google',
}.each do |configured_search_engine, sc_reported_search_engine|
context "when an affiliate's search_engine is '#{configured_search_engine}'" do
diff --git a/spec/models/api_azure_composite_image_search_spec.rb b/spec/models/api_azure_composite_image_search_spec.rb
index d3dc5e7063..29c600cb16 100644
--- a/spec/models/api_azure_composite_image_search_spec.rb
+++ b/spec/models/api_azure_composite_image_search_spec.rb
@@ -28,7 +28,7 @@
end
context 'when initialized with a Bing V5 key' do
- let(:api_key) { BingV5Engine::DEFAULT_HOSTED_PASSWORD }
+ let(:api_key) { BingV5HostedSubscriptionKey::BING_V5_SUBSCRIPTION_KEY }
it 'instantiates a BingV5ImageEngine' do
expect(BingV5ImageEngine).to receive(:new)
diff --git a/spec/models/api_azure_composite_web_search_spec.rb b/spec/models/api_azure_composite_web_search_spec.rb
index e3982858f7..34305a5a74 100644
--- a/spec/models/api_azure_composite_web_search_spec.rb
+++ b/spec/models/api_azure_composite_web_search_spec.rb
@@ -28,7 +28,7 @@
end
context 'when initialized with a Bing V5 key' do
- let(:api_key) { BingV5Engine::DEFAULT_HOSTED_PASSWORD }
+ let(:api_key) { BingV5HostedSubscriptionKey::BING_V5_SUBSCRIPTION_KEY }
it 'instantiates a BingV5WebEngine' do
expect(BingV5WebEngine).to receive(:new)
diff --git a/spec/models/api_azure_search_spec.rb b/spec/models/api_azure_search_spec.rb
index 1e2215b34a..f482e65b6c 100644
--- a/spec/models/api_azure_search_spec.rb
+++ b/spec/models/api_azure_search_spec.rb
@@ -211,7 +211,7 @@
end
context 'when initialized with a Bing V5 key' do
- let(:api_key) { BingV5Engine::DEFAULT_HOSTED_PASSWORD }
+ let(:api_key) { BingV5HostedSubscriptionKey::BING_V5_SUBSCRIPTION_KEY }
it_should_behave_like 'a commercial API search'
diff --git a/spec/models/i14y_search_spec.rb b/spec/models/i14y_search_spec.rb
index 837e3fce06..9173cc7936 100644
--- a/spec/models/i14y_search_spec.rb
+++ b/spec/models/i14y_search_spec.rb
@@ -163,16 +163,18 @@
# This covers the scenario where a non-i14y-, non-searchgov-affiliate needs to search
# the searchgov drawer for deep collection results
- context 'when the affiliate is not using SearchGov as a search engine' do
- before { allow(affiliate).to receive(:search_engine).and_return('BingV6') }
+ %w[BingV6 BingV7].each do |search_engine|
+ context "when the affiliate is using #{search_engine} as a search engine" do
+ before { allow(affiliate).to receive(:search_engine).and_return(search_engine) }
- context 'when they do not receive i14y results' do
- before { allow(affiliate).to receive(:gets_i14y_results).and_return(false) }
+ context 'when they do not receive i14y results' do
+ before { allow(affiliate).to receive(:gets_i14y_results).and_return(false) }
- it 'searches the searchgov drawer' do
- expect(I14yCollections).to receive(:search).
- with(hash_including(handles: 'searchgov') )
- i14y_search.run
+ it 'searches the searchgov drawer' do
+ expect(I14yCollections).to receive(:search).
+ with(hash_including(handles: 'searchgov') )
+ i14y_search.run
+ end
end
end
end
diff --git a/spec/models/image_search_spec.rb b/spec/models/image_search_spec.rb
index f767fbfff2..ae362aeb8e 100644
--- a/spec/models/image_search_spec.rb
+++ b/spec/models/image_search_spec.rb
@@ -34,12 +34,14 @@
context 'when commercial search results are specified' do
let(:use_commercial_results) { 'true' }
- context "and the affiliate's search_engine is BingV6" do
- let(:search_engine) { 'BingV6' }
- let(:underlying_search_class) { SearchEngineAdapter }
-
- it 'delegates to SearchEngineAdapter#diagnostics' do
- expect(image_search.diagnostics).to be(:underlying_diagnostics)
+ %w[BingV6 BingV7].each do |search_engine|
+ context "and the affiliate's search_engine is #{search_engine}" do
+ let(:search_engine) { search_engine }
+ let(:underlying_search_class) { SearchEngineAdapter }
+
+ it 'delegates to SearchEngineAdapter#diagnostics' do
+ expect(image_search.diagnostics).to be(:underlying_diagnostics)
+ end
end
end
@@ -89,12 +91,12 @@
end
end
- context 'when search_engine is Azure' do
- before { affiliate.search_engine = 'Azure' }
+ context 'when search_engine is BingV7' do
+ before { affiliate.search_engine = 'BingV7' }
- it 'should perform an Azure image search' do
+ it 'should perform a Bing image search' do
expect(SearchEngineAdapter).to receive(:new).
- with(HostedAzureImageEngine,
+ with(BingV7ImageSearch,
hash_including(affiliate: affiliate,
page: 1,
per_page: 20,
@@ -110,7 +112,7 @@
it 'should perform a Bing V6 image search' do
expect(SearchEngineAdapter).to receive(:new).
- with(BingV6ImageSearch,
+ with(BingV7ImageSearch,
hash_including(affiliate: affiliate,
page: 1,
per_page: 20,
diff --git a/spec/models/legacy_image_search_spec.rb b/spec/models/legacy_image_search_spec.rb
index 67a9cec860..8520345247 100644
--- a/spec/models/legacy_image_search_spec.rb
+++ b/spec/models/legacy_image_search_spec.rb
@@ -4,22 +4,6 @@
fixtures :affiliates, :site_domains, :flickr_profiles
let(:affiliate) { affiliates(:usagov_affiliate) }
- describe '#new' do
- context 'when the search engine is Azure' do
- before { affiliate.search_engine = 'Azure' }
-
- it 'searches using Azure engine' do
- expect(HostedAzureImageEngine).to receive(:new).
- with(hash_including(language: 'en',
- offset: 0,
- per_page: 20,
- query: 'government (site:gov OR site:mil)'))
-
- described_class.new query: 'government', affiliate: affiliate
- end
- end
- end
-
describe "#run" do
context "when there are no Bing/Google or Flickr results" do
let(:noresults_search) { LegacyImageSearch.new(query: 'shuttle', affiliate: affiliate) }
diff --git a/spec/models/web_search_spec.rb b/spec/models/web_search_spec.rb
index 8b21d7a2f6..4f1dd38e08 100644
--- a/spec/models/web_search_spec.rb
+++ b/spec/models/web_search_spec.rb
@@ -85,7 +85,7 @@
end
describe "instrumenting search engine calls" do
- context 'when Bing is the engine' do
+ context 'when BingV6 is the engine' do
before do
@valid_options = {query: 'government', affiliate: affiliate}
bing_search = BingV6WebSearch.new(@valid_options)
@@ -101,6 +101,23 @@
end
end
+ context 'when BingV7 is the engine' do
+ before do
+ affiliate.search_engine = 'BingV7'
+ @valid_options = {query: 'government', affiliate: affiliate}
+ bing_search = BingV7WebSearch.new(@valid_options)
+ allow(BingV7WebSearch).to receive(:new).and_return bing_search
+ allow(bing_search).to receive(:execute_query)
+ end
+
+ it "should instrument the call to the search engine with the proper action.service namespace and query param hash" do
+ expect(affiliate.search_engine).to eq('BingV7')
+ expect(ActiveSupport::Notifications).to receive(:instrument).
+ with("bing_v7_web_search.usasearch", hash_including(query: hash_including(term: 'government')))
+ WebSearch.new(@valid_options).send(:search)
+ end
+ end
+
context 'when Google is the engine' do
before do
@affiliate = affiliates(:basic_affiliate)
diff --git a/spec/support/bing_engine_behavior.rb b/spec/support/bing_engine_behavior.rb
deleted file mode 100644
index f0f5561ed3..0000000000
--- a/spec/support/bing_engine_behavior.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-shared_examples 'a Bing engine' do
- describe '#params' do
- subject do
- described_class.new({
- offset: :offset,
- limit: :limit,
- query: :query,
- language: language,
- password: :password,
- })
- end
- let(:language) { 'da' }
- before { allow(Language).to receive(:bing_market_for_code).with('da').and_return('da-DK') }
-
- it 'gets offset from options' do
- expect(subject.params[:offset]).to eq(:offset)
- end
-
- it 'gets count from options' do
- expect(subject.params[:count]).to eq(:limit)
- end
-
- it 'gets q from options' do
- expect(subject.params[:q]).to eq(:query)
- end
-
- it 'gets mkt from Language.bing_market_for_code' do
- expect(subject.params[:mkt]).to eq('da-DK')
- end
- end
-end
diff --git a/spec/support/bing_search_behavior.rb b/spec/support/bing_search_behavior.rb
new file mode 100644
index 0000000000..21997e8204
--- /dev/null
+++ b/spec/support/bing_search_behavior.rb
@@ -0,0 +1,159 @@
+shared_examples 'a Bing search' do
+ let(:offset) { nil }
+ let(:limit) { nil }
+ let(:filter) { nil }
+ let(:enable_highlighting) { nil }
+ let(:options) { {
+ query: :query,
+ offset: offset,
+ limit: limit,
+ filter: filter,
+ language: :language,
+ enable_highlighting: enable_highlighting,
+ } }
+
+ describe 'params' do
+ describe 'offset' do
+ context 'when no offset is provided in the options' do
+ it 'uses 0' do
+ expect(subject.params[:offset]).to eq(0)
+ end
+ end
+
+ context 'when an offset is provided in the options' do
+ let(:offset) { 41 }
+
+ it 'uses the provided offset' do
+ expect(subject.params[:offset]).to eq(41)
+ end
+ end
+ end
+
+ describe 'count' do
+ context 'when no limit is provided in the options' do
+ it 'uses 20' do
+ expect(subject.params[:count]).to eq(20)
+ end
+ end
+
+ context 'when a limit is provided in the options' do
+ let(:limit) { 43 }
+
+ it 'uses the provided limit' do
+ expect(subject.params[:count]).to eq(43)
+ end
+ end
+ end
+
+ describe 'mkt' do
+ before do
+ allow(Language).to receive(:bing_market_for_code).with(:language).and_return('hypermarket')
+ end
+
+ it 'uses the bing market for the given language code' do
+ expect(subject.params[:mkt]).to eq('hypermarket')
+ end
+ end
+
+ describe 'q' do
+ it 'uses the query provided in the options' do
+ expect(subject.params[:q]).to eq(:query)
+ end
+ end
+
+ describe 'safeSearch' do
+ context 'when a filter is not provided in the options' do
+ it 'uses moderate' do
+ expect(subject.params[:safeSearch]).to eq('moderate')
+ end
+ end
+
+ context 'when a filter is provided in the options' do
+ {
+ 0 => 'off',
+ 1 => 'moderate',
+ 2 => 'strict',
+ 3 => 'moderate',
+ 4 => 'moderate',
+ 5 => 'moderate',
+ }.each do |filter_option, expected_value|
+ context "and the provided filter option is #{filter_option}" do
+ let(:filter) { filter_option }
+
+ it "uses #{expected_value}" do
+ expect(subject.params[:safeSearch]).to eq(expected_value)
+ end
+ end
+ end
+ end
+ end
+
+ describe 'responseFilter' do
+ it 'always uses WebPages' do
+ expect(subject.params[:responseFilter]).to eq('WebPages')
+ end
+ end
+
+ describe 'textDecorations' do
+ context 'when enable_highlighting is not provided in the options' do
+ it 'uses false' do
+ expect(subject.params[:textDecorations]).to eq(false)
+ end
+ end
+
+ context 'when enable_highlighting is provided as true in the options' do
+ let(:enable_highlighting) { true }
+
+ it 'uses true' do
+ expect(subject.params[:textDecorations]).to eq(true)
+ end
+ end
+
+ context 'when enable_highlighting is provided as false in the options' do
+ let(:enable_highlighting) { false }
+
+ it 'uses true' do
+ expect(subject.params[:textDecorations]).to eq(false)
+ end
+ end
+ end
+ end
+
+ describe '#execute_query' do
+ subject { described_class.new(options) }
+
+ context 'when Bing returns an error' do
+ before do
+ stub_request(:get, %r{bing}).to_return({ body: bing_response_body })
+ end
+
+ context 'when the type is an error response' do
+ let(:bing_response_body) do
+ {
+ "_type": "ErrorResponse",
+ "errors": [
+ {
+ "code": "InvalidRequest",
+ "subCode": "ParameterMissing",
+ "message": "Required parameter is missing.",
+ "parameter": "q"
+ }
+ ]
+ }.to_json
+ end
+
+ it 'raises an exception' do
+ expect { subject.execute_query }.to raise_error('Required parameter is missing.')
+ end
+ end
+
+ context 'when Bing returns an error status code' do
+ let(:bing_response_body) { '{"status_code":401,"message":"bad key"}' }
+
+ it 'raises an exception' do
+ expect { subject.execute_query }.to raise_error('received status code 401 - bad key')
+ end
+ end
+ end
+ end
+end
diff --git a/spec/support/bing_v5_engine_behavior.rb b/spec/support/bing_v5_engine_behavior.rb
deleted file mode 100644
index 4a4b44626d..0000000000
--- a/spec/support/bing_v5_engine_behavior.rb
+++ /dev/null
@@ -1,101 +0,0 @@
-shared_examples 'a Bing V5 engine' do
- it_behaves_like 'a Bing engine'
-
- describe '#params' do
- subject { described_class.new({ }) }
-
- it 'uses "Moderate" for safeSearch' do
- expect(subject.params[:safeSearch]).to eq('Moderate')
- end
- end
-
- describe '#execute_query' do
- subject { described_class.new(options) }
- let(:bing_response_body) { '{}' }
-
- before do
- stub_request(:get, %r{/bing/v5.0/}).to_return({ body: bing_response_body })
- end
-
- describe 'authenticating' do
- context 'when no password is provided in the options' do
- let(:options) { { offset: 0, limit: 20 } }
-
- it 'uses the hosted-search password as the "Ocp-Apim-Subscription-Key" header value' do
- subject.execute_query
- expect(subject.api_connection.connection.headers['Ocp-Apim-Subscription-Key']).to eq(described_class::DEFAULT_HOSTED_PASSWORD)
- end
- end
-
- context 'when an password is provided in the options' do
- let(:options) { { offset: 0, limit: 20, password: 'b1rd1sth3p4ssw0rd' } }
-
- it 'uses that password as the "Ocp-Apim-Subscription-Key" header value' do
- subject.execute_query
- expect(subject.api_connection.connection.headers['Ocp-Apim-Subscription-Key']).to eq('b1rd1sth3p4ssw0rd')
- end
- end
- end
-
- describe 'errors returned from bing' do
- let(:options) { { offset: 0, limit: 20, password: 'b1rd1sth3p4ssw0rd' } }
- let(:bing_response_body) { '{"status_code":401,"message":"bad key"}' }
-
- it 'raises an exception' do
- expect { subject.execute_query }.to raise_error('received status code 401 - bad key')
- end
- end
- end
-
- describe 'connection caching' do
- let(:bing_v5_engine_unlimited_connection) { BingV5Engine.unlimited_api_connection }
- let(:bing_v5_engine_rate_limited_connection) { BingV5Engine.rate_limited_api_connection }
-
- context 'when using unlimited API connections' do
- let(:connection_a) { described_class.unlimited_api_connection }
- let(:connection_b) { described_class.unlimited_api_connection }
-
- it 'should reuse the same connection' do
- expect(connection_a).to eq(connection_b)
- end
-
- it 'should not reuse the connection created by BingV5Engine' do
- expect(connection_a.class).to eq(bing_v5_engine_unlimited_connection.class)
- expect(connection_a).not_to eq(bing_v5_engine_unlimited_connection)
- end
- end
-
- context 'when using rate-limited API connections' do
- let(:connection_a) { described_class.rate_limited_api_connection }
- let(:connection_b) { described_class.rate_limited_api_connection }
-
- it 'should be the same connection' do
- expect(connection_a).to eq(connection_b)
- end
-
- it 'should not reuse the connection created by BingV5Engine' do
- expect(connection_a.class).to eq(bing_v5_engine_rate_limited_connection.class)
- expect(connection_a).not_to eq(bing_v5_engine_rate_limited_connection)
- end
- end
-
- context 'when using a mix of unlimited and rate-limited API connections' do
- let(:connection_a) { described_class.unlimited_api_connection }
- let(:connection_b) { described_class.rate_limited_api_connection }
-
- it 'should be different connections' do
- expect(connection_a).not_to eq(connection_b)
- end
- end
- end
-
- describe 'api cache namespacing' do
- it 'uses the BingV5Engine namespace' do
- expect(described_class.api_cache_namespace).to eq(BingV5Engine::API_CACHE_NAMESPACE)
- end
-
- it 'has a different namespace than AzureEngine' do
- expect(described_class.api_cache_namespace).not_to eq(AzureEngine::NAMESPACE)
- end
- end
-end
diff --git a/spec/support/bing_v6_search_behavior.rb b/spec/support/bing_v6_search_behavior.rb
deleted file mode 100644
index 7c14dff838..0000000000
--- a/spec/support/bing_v6_search_behavior.rb
+++ /dev/null
@@ -1,58 +0,0 @@
-shared_examples 'a Bing V6 search' do
- it_behaves_like 'a Bing engine'
-
- describe '#params' do
- subject do
- described_class.new({
- filter: filter
- })
- end
- let(:filter) { nil }
-
- it 'uses the hard-coded APP_ID for AppId' do
- expect(subject.params[:AppId]).to eq(BingV6Search::APP_ID)
- end
-
- {
- nil => 'moderate',
- 0 => 'off',
- 1 => 'moderate',
- 2 => 'strict',
- 3 => 'moderate',
- 4 => 'moderate',
- 5 => 'moderate',
- 6 => 'moderate',
- 7 => 'moderate',
- }.each do |adult_filter, safe_search_value|
- context "when given adult filter #{adult_filter}" do
- let(:filter) { adult_filter }
-
- it "uses the '#{safe_search_value}' safeSearch value" do
- expect(subject.params[:safeSearch]).to eq(safe_search_value)
- end
- end
- end
- end
-
- describe '#execute_query' do
- subject(:execute_query) { described_class.new({ }).execute_query }
-
- before do
- stub_request(:get, %r{/api/v6/}).to_return({ body: bing_response_body })
- end
-
- context 'when an error is returned by bing' do
- let(:bing_response_body) { '{"_type": "ErrorResponse", "errors": [{"code": "ResourceAccessDenied", "message": "AppID does not have access to the Data source: ImageSearch"}]}' }
-
- it 'raises an exception' do
- expect { execute_query }.to raise_error('AppID does not have access to the Data source: ImageSearch')
- end
- end
- end
-
- describe 'api cache namespacing' do
- it 'uses the "bing_v6" namespace' do
- expect(subject.api_cache_namespace).to eq('bing_v6')
- end
- end
-end
diff --git a/spec/support/search_engine_behavior.rb b/spec/support/search_engine_behavior.rb
index f3c4e5a7d9..7ed798a4b2 100644
--- a/spec/support/search_engine_behavior.rb
+++ b/spec/support/search_engine_behavior.rb
@@ -134,6 +134,13 @@
end
shared_examples "an image search" do
+ let(:image_search_params) do
+ {
+ offset: 20,
+ limit: 10,
+ query: 'agncy (site:nasa.gov)',
+ }
+ end
let(:image_search) { described_class.new(image_search_params) }
let(:search_response) { image_search.execute_query }
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/highlights_title_and_description.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/highlights_title_and_description.yml
index e6d5fa1c65..1ee8ac1856 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/highlights_title_and_description.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/highlights_title_and_description.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:58:04 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1734'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:55 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3F72E6EA120B62240B11EAB213046314; path=/; expires=Sat, 21-Sep-2019 00:00:55
+ GMT; domain=bingapis.com
+ - MUIDB=3F72E6EA120B62240B11EAB213046314; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:55 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:55 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=06C93C6A9468487C93D82FC9ACB43355&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:55 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:55
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=203B323E0C1A6C110F743E660D156D70; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:55 GMT; domain=bingapis.com
+ - _SS=SID=203B323E0C1A6C110F743E660D156D70; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 892CFAB35C774E8A9CCFBA855DADAAAB
+ X-Msedge-Clientid:
+ - 3F72E6EA120B62240B11EAB213046314
+ X-Msapi-Userstate:
+ - '2980'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 892CFAB35C774E8A9CCFBA855DADAAAB Ref B: BAYEDGE0122 Ref C: 2018-08-27T00:00:55Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:55 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=B30FDDF7107B43DF9EE66E1A46F3EF90&CID=3F72E6EA120B62240B11EAB213046314&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=B30FDDF7107B43DF9EE66E1A46F3EF90&CID=3F72E6EA120B62240B11EAB213046314&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:55 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_a_formatted_query.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_a_formatted_query.yml
index c482099e60..b8d1d143ce 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_a_formatted_query.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_a_formatted_query.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:58:03 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1733'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:55 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1D2BE6B44AC960BA0F10EAEC4BC6616B; path=/; expires=Sat, 21-Sep-2019 00:00:55
+ GMT; domain=bingapis.com
+ - MUIDB=1D2BE6B44AC960BA0F10EAEC4BC6616B; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:55 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:55 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=A3FB3CF6B75B443193A1FA0127BFB757&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:55 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:55
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=15207CA38A666CFE3FAA70FB8B696D29; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:55 GMT; domain=bingapis.com
+ - _SS=SID=15207CA38A666CFE3FAA70FB8B696D29; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - E699F22ACFA447739FE86E31F0B44A94
+ X-Msedge-Clientid:
+ - 1D2BE6B44AC960BA0F10EAEC4BC6616B
+ X-Msapi-Userstate:
+ - 6df7
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: E699F22ACFA447739FE86E31F0B44A94 Ref B: BAYEDGE0408 Ref C: 2018-08-27T00:00:55Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=502C20EE30914E0BBB2C5DD2D9AD2069&CID=1D2BE6B44AC960BA0F10EAEC4BC6616B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=502C20EE30914E0BBB2C5DD2D9AD2069&CID=1D2BE6B44AC960BA0F10EAEC4BC6616B&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:55 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_results.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_results.yml
index 751ff9bb74..50bf14d72a 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json/returns_results.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:58:03 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1734'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:54 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2A8100CF1B92668824650C971A9D67F4; path=/; expires=Sat, 21-Sep-2019 00:00:54
+ GMT; domain=bingapis.com
+ - MUIDB=2A8100CF1B92668824650C971A9D67F4; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:54 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:54 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=912471D2A29F49D19888B79387FC7104&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:54 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:54
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3EE60EE141E862C10CCF02B940E763EE; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:54 GMT; domain=bingapis.com
+ - _SS=SID=3EE60EE141E862C10CCF02B940E763EE; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 0A59C0453D3A4718B3319B094C086DA1
+ X-Msedge-Clientid:
+ - 2A8100CF1B92668824650C971A9D67F4
+ X-Msapi-Userstate:
+ - bd41
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 0A59C0453D3A4718B3319B094C086DA1 Ref B: BAYEDGE0309 Ref C: 2018-08-27T00:00:54Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=BCBD5EE32C4B490C9E81FE0881677438&CID=2A8100CF1B92668824650C971A9D67F4&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=BCBD5EE32C4B490C9E81FE0881677438&CID=2A8100CF1B92668824650C971A9D67F4&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:54 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json_with_advanced_query_operators/returns_a_formatted_query.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json_with_advanced_query_operators/returns_a_formatted_query.yml
index 72aa9d0050..45cc4065c0 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_as_json_with_advanced_query_operators/returns_a_formatted_query.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_as_json_with_advanced_query_operators/returns_a_formatted_query.yml
@@ -70,4 +70,74 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:58:04 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20-kittens%20(chili%20OR%20cheese%20OR%20fries)%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:56 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0269058F185F6A480B3309D719506B48; path=/; expires=Sat, 21-Sep-2019 00:00:56
+ GMT; domain=bingapis.com
+ - MUIDB=0269058F185F6A480B3309D719506B48; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:56 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:56 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=4475B4725CA948058547D6FAEE6DC021&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:56 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:56
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=06662B35C5496EDD2678276DC4466F05; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:56 GMT; domain=bingapis.com
+ - _SS=SID=06662B35C5496EDD2678276DC4466F05; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3425E54E2AE7466889F77D2A164994BE
+ X-Msedge-Clientid:
+ - '0269058F185F6A480B3309D719506B48'
+ X-Msapi-Userstate:
+ - ae06
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3425E54E2AE7466889F77D2A164994BE Ref B: BAYEDGE0516 Ref C: 2018-08-27T00:00:56Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:55 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=EF0E5127D4D24505A2B5D26897B18CFD&CID=0269058F185F6A480B3309D719506B48&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=EF0E5127D4D24505A2B5D26897B18CFD&CID=0269058F185F6A480B3309D719506B48&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:56 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/modules/1_2_7_2_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/modules/1_2_7_2_1.yml
index 8c6ebde5d6..1182bc87f5 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/modules/1_2_7_2_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/modules/1_2_7_2_1.yml
@@ -70,4 +70,74 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:58:03 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=mango%20smoothie%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:54 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=29E8E589B826651D04AAE9D1B92964DE; path=/; expires=Sat, 21-Sep-2019 00:00:54
+ GMT; domain=bingapis.com
+ - MUIDB=29E8E589B826651D04AAE9D1B92964DE; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:54 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:54 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=3DB44BF8C7D8457CB6F4F9668436FD51&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:54 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:54
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2D8519A3241E62EE1F9B15FB2511632B; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:54 GMT; domain=bingapis.com
+ - _SS=SID=2D8519A3241E62EE1F9B15FB2511632B; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 6F13B4507A044136B41FE0D6792EB42B
+ X-Msedge-Clientid:
+ - 29E8E589B826651D04AAE9D1B92964DE
+ X-Msapi-Userstate:
+ - '4565'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 6F13B4507A044136B41FE0D6792EB42B Ref B: BAYEDGE0207 Ref C: 2018-08-27T00:00:54Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E579A5DD60654854A9861CA1BB24C327&CID=29E8E589B826651D04AAE9D1B92964DE&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E579A5DD60654854A9861CA1BB24C327&CID=29E8E589B826651D04AAE9D1B92964DE&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:54 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/results/1_2_7_1_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/results/1_2_7_1_1.yml
index ca6ae3b671..3406f75859 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/results/1_2_7_1_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_Azure_response_contains_empty_results/results/1_2_7_1_1.yml
@@ -70,4 +70,74 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:58:02 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=mango%20smoothie%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '243'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=106ED5BE518A64372BA9D9E6508565C9; path=/; expires=Sat, 21-Sep-2019 00:00:54
+ GMT; domain=bingapis.com
+ - MUIDB=106ED5BE518A64372BA9D9E6508565C9; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:54 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:53 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=76A1D087D5FA4725ACA6BC7991919213&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:53 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:53
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=253552E080AC6E8034615EB881A36F00; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:54 GMT; domain=bingapis.com
+ - _SS=SID=253552E080AC6E8034615EB881A36F00; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 993B13DF28904EE3BBD5BA2E17BED947
+ X-Msedge-Clientid:
+ - 106ED5BE518A64372BA9D9E6508565C9
+ X-Msapi-Userstate:
+ - 7e28
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 993B13DF28904EE3BBD5BA2E17BED947 Ref B: BAYEDGE0513 Ref C: 2018-08-27T00:00:54Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:54 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A8CD73C4A0934C2A9F69F48A1B7BF3D8&CID=106ED5BE518A64372BA9D9E6508565C9&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A8CD73C4A0934C2A9F69F48A1B7BF3D8&CID=106ED5BE518A64372BA9D9E6508565C9&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:54 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/does_not_highlight_title_and_description.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/does_not_highlight_title_and_description.yml
index 9be0acfcd4..c3dff4545a 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/does_not_highlight_title_and_description.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/does_not_highlight_title_and_description.yml
@@ -135,4 +135,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:11 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1656'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:51 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3FD3DE36EFA361981B5CD26EEEAC6041; path=/; expires=Sat, 21-Sep-2019 00:00:51
+ GMT; domain=bingapis.com
+ - MUIDB=3FD3DE36EFA361981B5CD26EEEAC6041; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:51 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:51 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=355B2435B74E40F9AAE6A110200D8D6A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:51 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:51
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1855AE716919685F0ED9A229681669B3; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:51 GMT; domain=bingapis.com
+ - _SS=SID=1855AE716919685F0ED9A229681669B3; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 75F836277A264ECAAFCF150B036007DA
+ X-Msedge-Clientid:
+ - 3FD3DE36EFA361981B5CD26EEEAC6041
+ X-Msapi-Userstate:
+ - '5310'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 75F836277A264ECAAFCF150B036007DA Ref B: BAYEDGE0308 Ref C: 2018-08-27T00:00:51Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:50 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F88BAD81752D4070A43CE863AC7C473A&CID=3FD3DE36EFA361981B5CD26EEEAC6041&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F88BAD81752D4070A43CE863AC7C473A&CID=3FD3DE36EFA361981B5CD26EEEAC6041&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, ...
+ Other food aid programs offer: Healthy foods to pregnant women, new moms,
+ ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on healthy
+ eating. ... Food Distribution Programs—Find out how to apply for these programs,
+ ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Finding Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education", "urlPingSuffix":
+ "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education", "snippet":
+ "Find government information on education including primary, secondary, and
+ higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov Subscription
+ Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:51 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/modules/1_2_4_4_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/modules/1_2_4_4_1.yml
index 7bbfec08c1..141138d296 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/modules/1_2_4_4_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/modules/1_2_4_4_1.yml
@@ -135,4 +135,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:11 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1656'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:52 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2ACBA608E72B67471440AA50E62466E6; path=/; expires=Sat, 21-Sep-2019 00:00:52
+ GMT; domain=bingapis.com
+ - MUIDB=2ACBA608E72B67471440AA50E62466E6; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:52 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:52 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=6CFD42D584824E4D80A5EE61E74B45C2&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:52 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:52
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=01F731A980F4663014433DF181FB672A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:52 GMT; domain=bingapis.com
+ - _SS=SID=01F731A980F4663014433DF181FB672A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 1E5B9D8B4A7944979BF199C691D61E3E
+ X-Msedge-Clientid:
+ - 2ACBA608E72B67471440AA50E62466E6
+ X-Msapi-Userstate:
+ - be13
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 1E5B9D8B4A7944979BF199C691D61E3E Ref B: BAYEDGE0509 Ref C: 2018-08-27T00:00:52Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:51 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=C3A40B313A0F49BAA4CEBFB57215C865&CID=2ACBA608E72B67471440AA50E62466E6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=C3A40B313A0F49BAA4CEBFB57215C865&CID=2ACBA608E72B67471440AA50E62466E6&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, ...
+ Other food aid programs offer: Healthy foods to pregnant women, new moms,
+ ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on healthy
+ eating. ... Food Distribution Programs—Find out how to apply for these programs,
+ ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Finding Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education", "urlPingSuffix":
+ "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education", "snippet":
+ "Find government information on education including primary, secondary, and
+ higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov Subscription
+ Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:52 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_2_4_3_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_2_4_3_1.yml
index cdc6043caf..9fa22e75e8 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_2_4_3_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_2_4_3_1.yml
@@ -135,4 +135,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:11 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1656'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:51 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=082E74E93B5460EA18EB78B13A5B615C; path=/; expires=Sat, 21-Sep-2019 00:00:51
+ GMT; domain=bingapis.com
+ - MUIDB=082E74E93B5460EA18EB78B13A5B615C; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:51 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:51 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=26F940EA59194E16982CA30D0F16BFFE&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:51 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:51
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3CA9B170B5A669FD186CBD28B4A968D8; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:51 GMT; domain=bingapis.com
+ - _SS=SID=3CA9B170B5A669FD186CBD28B4A968D8; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 2567ED0E98D545E5BDA6CD32E3751F10
+ X-Msedge-Clientid:
+ - '082E74E93B5460EA18EB78B13A5B615C'
+ X-Msapi-Userstate:
+ - 2b60
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 2567ED0E98D545E5BDA6CD32E3751F10 Ref B: BAYEDGE0517 Ref C: 2018-08-27T00:00:51Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:51 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=C54E29FC6E494DFFA8791D294D098C5B&CID=082E74E93B5460EA18EB78B13A5B615C&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=C54E29FC6E494DFFA8791D294D098C5B&CID=082E74E93B5460EA18EB78B13A5B615C&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, ...
+ Other food aid programs offer: Healthy foods to pregnant women, new moms,
+ ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on healthy
+ eating. ... Food Distribution Programs—Find out how to apply for these programs,
+ ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Finding Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education", "urlPingSuffix":
+ "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education", "snippet":
+ "Find government information on education including primary, secondary, and
+ higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov Subscription
+ Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:51 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml
index 82b4353f1a..488f30ee75 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml
@@ -135,4 +135,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:10 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1655'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:50 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=29542B719671605103772729977E61C2; path=/; expires=Sat, 21-Sep-2019 00:00:50
+ GMT; domain=bingapis.com
+ - MUIDB=29542B719671605103772729977E61C2; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:50 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CE69C2BC1EF1430981942AA46378A760&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:50 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:50
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=07E43BE0D4F86B99075D37B8D5F76A9D; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:50 GMT; domain=bingapis.com
+ - _SS=SID=07E43BE0D4F86B99075D37B8D5F76A9D; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 458E73CA48B04910B4DC394D22F0466B
+ X-Msedge-Clientid:
+ - 29542B719671605103772729977E61C2
+ X-Msapi-Userstate:
+ - '6180'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 458E73CA48B04910B4DC394D22F0466B Ref B: BAYEDGE0417 Ref C: 2018-08-27T00:00:50Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:50 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=68DB18FC269F4B9695FAD39737AF29CC&CID=29542B719671605103772729977E61C2&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=68DB18FC269F4B9695FAD39737AF29CC&CID=29542B719671605103772729977E61C2&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, ...
+ Other food aid programs offer: Healthy foods to pregnant women, new moms,
+ ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on healthy
+ eating. ... Food Distribution Programs—Find out how to apply for these programs,
+ ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Finding Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education", "urlPingSuffix":
+ "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education", "snippet":
+ "Find government information on education including primary, secondary, and
+ higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov Subscription
+ Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:50 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml
index 056dd284a0..cc33bc87ce 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:09 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1735'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:49 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=27E0BDC9D39061342768B191D29F60B6; path=/; expires=Sat, 21-Sep-2019 00:00:49
+ GMT; domain=bingapis.com
+ - MUIDB=27E0BDC9D39061342768B191D29F60B6; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:49 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=FB9F7A19A7954F54865426BBA4C57045&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:49 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:49
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0EBEAD63A654676315B2A13BA75B665F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:49 GMT; domain=bingapis.com
+ - _SS=SID=0EBEAD63A654676315B2A13BA75B665F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 145D63234C874EF097C9354FADA0288E
+ X-Msedge-Clientid:
+ - 27E0BDC9D39061342768B191D29F60B6
+ X-Msapi-Userstate:
+ - ed6d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 145D63234C874EF097C9354FADA0288E Ref B: BAYEDGE0413 Ref C: 2018-08-27T00:00:49Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=56D2354D9BFE4E4F8F8A7321D30077D0&CID=27E0BDC9D39061342768B191D29F60B6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=56D2354D9BFE4E4F8F8A7321D30077D0&CID=27E0BDC9D39061342768B191D29F60B6&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:49 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/modules/1_2_3_4_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/modules/1_2_3_4_1.yml
index 33f3136549..4fd91f0ca8 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/modules/1_2_3_4_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/modules/1_2_3_4_1.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:10 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1734'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:50 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0AB876724B1368B604F07A2A4A1C6947; path=/; expires=Sat, 21-Sep-2019 00:00:50
+ GMT; domain=bingapis.com
+ - MUIDB=0AB876724B1368B604F07A2A4A1C6947; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:50 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C9C41E75B4B442BBB4509B3ECD4186A0&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:50 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:50
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0D6198F2A89D6FFF314694AAA9926E7C; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:50 GMT; domain=bingapis.com
+ - _SS=SID=0D6198F2A89D6FFF314694AAA9926E7C; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 9ADE0E729A1B4632A792835A11AA7195
+ X-Msedge-Clientid:
+ - 0AB876724B1368B604F07A2A4A1C6947
+ X-Msapi-Userstate:
+ - efe1
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 9ADE0E729A1B4632A792835A11AA7195 Ref B: BAYEDGE0311 Ref C: 2018-08-27T00:00:50Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=6F4480964B034524A8765E593EB3ECCF&CID=0AB876724B1368B604F07A2A4A1C6947&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=6F4480964B034524A8765E593EB3ECCF&CID=0AB876724B1368B604F07A2A4A1C6947&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:50 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_2_3_3_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_2_3_3_1.yml
index d6e4ac4f36..d1d1e46a8c 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_2_3_3_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_2_3_3_1.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:09 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1736'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:49 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0DED343BBEF46AFB1A1E3863BFFB6B04; path=/; expires=Sat, 21-Sep-2019 00:00:49
+ GMT; domain=bingapis.com
+ - MUIDB=0DED343BBEF46AFB1A1E3863BFFB6B04; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:49 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=37340F2FA4BA4B6195532DE1F340DE97&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:49 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:49
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3A8FC5727E446C870832C92A7F4B6D9E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:49 GMT; domain=bingapis.com
+ - _SS=SID=3A8FC5727E446C870832C92A7F4B6D9E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B163E33B10E54B7A898289C83FA2E394
+ X-Msedge-Clientid:
+ - 0DED343BBEF46AFB1A1E3863BFFB6B04
+ X-Msapi-Userstate:
+ - 7ab3
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B163E33B10E54B7A898289C83FA2E394 Ref B: BAYEDGE0311 Ref C: 2018-08-27T00:00:49Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:49 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D8A95132E78C474BBF862B8F7E927B2F&CID=0DED343BBEF46AFB1A1E3863BFFB6B04&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D8A95132E78C474BBF862B8F7E927B2F&CID=0DED343BBEF46AFB1A1E3863BFFB6B04&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:49 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml
index 31bbbdf50c..fc88be228c 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml
@@ -136,4 +136,141 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:08 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1735'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:48 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=18D063B66C4D61ED0D8A6FEE6D426001; path=/; expires=Sat, 21-Sep-2019 00:00:49
+ GMT; domain=bingapis.com
+ - MUIDB=18D063B66C4D61ED0D8A6FEE6D426001; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:48 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=709DEF1C1CDF4E5082B6373D15F96F82&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:48 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:48
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=00498B4929826F1201178711288D6E0F; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:49 GMT; domain=bingapis.com
+ - _SS=SID=00498B4929826F1201178711288D6E0F; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B224F59FF80344F1BA83AC5E26D6BB42
+ X-Msedge-Clientid:
+ - 18D063B66C4D61ED0D8A6FEE6D426001
+ X-Msapi-Userstate:
+ - 7c15
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B224F59FF80344F1BA83AC5E26D6BB42 Ref B: BAYEDGE0213 Ref C: 2018-08-27T00:00:49Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:48 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=FB9AE0A3C6C045388911F1D0A783FDC6&CID=18D063B66C4D61ED0D8A6FEE6D426001&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=FB9AE0A3C6C045388911F1D0A783FDC6&CID=18D063B66C4D61ED0D8A6FEE6D426001&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5259.1", "totalEstimatedMatches": 143, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5071.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5087.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "A Healthy Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5101.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5117.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5133.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5149.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5162.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5175.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5188.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:49 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_0/initializes_GovboxSet.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_0/initializes_GovboxSet.yml
index b26d253f35..fc85ab4303 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_0/initializes_GovboxSet.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_0/initializes_GovboxSet.yml
@@ -203,4 +203,209 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:08 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2975'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:48 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=07AB5D405D376DD01D6D51185C386CA5; path=/; expires=Sat, 21-Sep-2019 00:00:48
+ GMT; domain=bingapis.com
+ - MUIDB=07AB5D405D376DD01D6D51185C386CA5; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:48 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7382C7F00F3344178F6908AB918321EA&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:48 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:48
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=05AE04C9D18365F5044F0891D08C6470; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:48 GMT; domain=bingapis.com
+ - _SS=SID=05AE04C9D18365F5044F0891D08C6470; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - F4A698147E9B4D63AE99B11651832E41
+ X-Msedge-Clientid:
+ - 07AB5D405D376DD01D6D51185C386CA5
+ X-Msapi-Userstate:
+ - 33ea
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: F4A698147E9B4D63AE99B11651832E41 Ref B: BAYEDGE0112 Ref C: 2018-08-27T00:00:48Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:47 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D2753E1A4897486AB26A74A1966D0603&CID=07AB5D405D376DD01D6D51185C386CA5&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D2753E1A4897486AB26A74A1966D0603&CID=07AB5D405D376DD01D6D51185C386CA5&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5446.1", "totalEstimatedMatches": 146, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5058.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5074.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... This short-term program can help you get healthy food for yourself and
+ your young children.", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "A Healthy
+ Prescription For a Healthy Home | USAGov", "url": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5088.1", "displayUrl": "https:\/\/www.usa.gov\/features\/a-healthy-prescription-for-a-healthy-home",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... you can address the problems to make it safe and healthy for
+ you and your family.", "dateLastCrawled": "2018-08-14T22:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5104.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ ... Other food aid programs offer: Healthy foods to pregnant women, new
+ moms, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5120.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... I would
+ encourage making smart decisions for snacking and incorporating fruits and
+ ... to be a healthy role ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Health
+ Information from the Government | USAGov", "url": "https:\/\/www.usa.gov\/health-resources",
+ "urlPingSuffix": "DevEx,5136.1", "displayUrl": "https:\/\/www.usa.gov\/health-resources",
+ "snippet": "Health Information from the Government. ... or want tips on
+ healthy eating. ... Food Distribution Programs—Find out how to apply for
+ these programs, ...", "dateLastCrawled": "2018-08-05T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Finding
+ Health Insurance | USAGov", "url": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "urlPingSuffix": "DevEx,5152.1", "displayUrl": "https:\/\/www.usa.gov\/finding-health-insurance",
+ "snippet": "Finding Health Insurance. ... What about help with food preparation
+ and housecleaning? ... programs, tips for healthy living and more.", "dateLastCrawled":
+ "2018-08-18T17:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Education | USAGov", "url": "https:\/\/www.usa.gov\/education",
+ "urlPingSuffix": "DevEx,5165.1", "displayUrl": "https:\/\/www.usa.gov\/education",
+ "snippet": "Find government information on education including primary,
+ secondary, and higher education.", "dateLastCrawled": "2018-07-24T17:57:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "USA.Gov
+ Subscription Page", "url": "https:\/\/connect.usa.gov\/publications", "urlPingSuffix":
+ "DevEx,5178.1", "about": [{"name": "USAGov"}], "displayUrl": "https:\/\/connect.usa.gov\/publications",
+ "snippet": "Thank you for being a loyal visitor to the site! After six years
+ of serving the American public and consumers, the Publications.USA.gov website
+ has been discontinued.", "dateLastCrawled": "2018-08-18T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Office
+ of Lead Hazard Control and Healthy Homes | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control-and-healthy-homes",
+ "urlPingSuffix": "DevEx,5191.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/office-of-lead-hazard-control...",
+ "snippet": "Directory listing for Office of Lead Hazard Control and Healthy
+ Homes", "dateLastCrawled": "2018-08-15T08:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Features | USAGov", "url": "https:\/\/www.usa.gov\/features\/critical-rx-for-a-healthy-home",
+ "urlPingSuffix": "DevEx,5206.1", "displayUrl": "https:\/\/www.usa.gov\/features\/critical-rx-for-a-healthy-home",
+ "snippet": "You''re invited to read and use our bilingual articles covering
+ trusted, timely, and valuable government information.", "dateLastCrawled":
+ "2018-07-22T02:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "U.S. Data and Statistics | USAGov", "url": "https:\/\/www.usa.gov\/statistics",
+ "urlPingSuffix": "DevEx,5222.1", "about": [{"name": "Statistics"}], "displayUrl":
+ "https:\/\/www.usa.gov\/statistics", "snippet": "Data and Statistics
+ about the U.S. Find data about the U.S., such as maps and population, demographic,
+ ... food, the environment, and rural development.", "dateLastCrawled": "2018-08-18T07:51:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Adoption,
+ Foster Care, and Other Child Related Issues | USAGov", "url": "https:\/\/www.usa.gov\/child-care",
+ "urlPingSuffix": "DevEx,5238.1", "displayUrl": "https:\/\/www.usa.gov\/child-care",
+ "snippet": "Children''s healthy development depends on safe and positive
+ experiences starting at an early age throughout childhood ... from food
+ and housing to clothing and ...", "dateLastCrawled": "2018-08-19T04:53:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Health
+ Insurance | USAGov", "url": "https:\/\/www.usa.gov\/health-insurance", "urlPingSuffix":
+ "DevEx,5253.1", "about": [{"name": "Health insurance in the United States"}],
+ "displayUrl": "https:\/\/www.usa.gov\/health-insurance", "snippet": "Learn
+ about health insurance, including Medicaid and Medicare.", "dateLastCrawled":
+ "2018-08-19T05:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Executive Department Sub-Agencies and Bureaus | USAGov", "url":
+ "https:\/\/www.usa.gov\/sub-agencies", "urlPingSuffix": "DevEx,5268.1", "displayUrl":
+ "https:\/\/www.usa.gov\/sub-agencies", "snippet": "Executive Department
+ Sub-Agencies and Bureaus. ... National Institute of Food and Agriculture.
+ ... Office of Lead Hazard Control and Healthy Homes.", "dateLastCrawled":
+ "2018-08-21T11:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Commonly Requested U.S. Laws and Regulations | USAGov", "url":
+ "https:\/\/www.usa.gov\/laws-and-regulations", "urlPingSuffix": "DevEx,5284.1",
+ "about": [{"name": "Regulation"}], "displayUrl": "https:\/\/www.usa.gov\/laws-and-regulations",
+ "snippet": "Learn about some of the best-known U.S. laws and regulations.
+ ... Healthy Hunger-Free ... The FDA has responsibility over the safety of
+ food and any substance that is ...", "dateLastCrawled": "2018-08-15T22:30:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Mobile
+ Apps Directory | USAGov", "url": "https:\/\/www.usa.gov\/mobile-apps", "urlPingSuffix":
+ "DevEx,5300.1", "displayUrl": "https:\/\/www.usa.gov\/mobile-apps", "snippet":
+ "Federal Government Mobile Apps Directory. Looking for government information
+ and services optimized for your smart phone? Find government native apps,
+ hybrid apps, responsive sites, and mobile websites that offer official information
+ and services in the palm of your hand.", "dateLastCrawled": "2018-08-18T10:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Center
+ for Nutrition Policy and Promotion | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-nutrition-policy-and-promotion",
+ "urlPingSuffix": "DevEx,5315.1", "about": [{"name": "Center for Nutrition
+ Policy and Promotion"}], "displayUrl": "https:\/\/www.usa.gov\/...\/center-for-nutrition-policy-and-promotion",
+ "snippet": "Directory listing for Center for Nutrition Policy and Promotion",
+ "dateLastCrawled": "2018-08-20T16:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "O | Government Forms | USAGov", "url": "https:\/\/www.usa.gov\/forms\/o",
+ "urlPingSuffix": "DevEx,5329.1", "displayUrl": "https:\/\/www.usa.gov\/forms\/o",
+ "snippet": "Federal Government Forms, by Agency: O. The .gov means it''s
+ official. Federal government websites often end in .gov or .mil.", "dateLastCrawled":
+ "2018-08-03T17:51:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "U.S. Department of Labor | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-labor",
+ "urlPingSuffix": "DevEx,5345.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-labor",
+ "snippet": "U.S. Department of Labor. The Department of Labor administers
+ federal labor laws to guarantee workers'' rights to fair, safe, and healthy
+ working conditions, including minimum hourly wage and overtime pay, protection
+ against employment discrimination, and unemployment insurance.", "dateLastCrawled":
+ "2018-08-19T03:07:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:48 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_not_0/does_not_initialize_GovboxSet.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_not_0/does_not_initialize_GovboxSet.yml
index a5b0d0aa77..5b4df5cf2c 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_not_0/does_not_initialize_GovboxSet.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_offset_is_not_0/does_not_initialize_GovboxSet.yml
@@ -207,4 +207,160 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:08 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=888&q=healthy%20snack%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2519'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:48 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1592E431EF9367FB1246E869EE9C660B; path=/; expires=Sat, 21-Sep-2019 00:00:48
+ GMT; domain=bingapis.com
+ - MUIDB=1592E431EF9367FB1246E869EE9C660B; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:48 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=DF1E24040CD140B18DAFF6C78BBFF489&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:48 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:48
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1502B4D0CB75653B1E63B888CA7A6467; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:48 GMT; domain=bingapis.com
+ - _SS=SID=1502B4D0CB75653B1E63B888CA7A6467; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - C49F9632CA54483E86EB3265A65BC1F3
+ X-Msedge-Clientid:
+ - 1592E431EF9367FB1246E869EE9C660B
+ X-Msapi-Userstate:
+ - 9f8f
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: C49F9632CA54483E86EB3265A65BC1F3 Ref B: BAYEDGE0316 Ref C: 2018-08-27T00:00:48Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:48 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8EB87BDDFB244A7D871522CDBEFEAC1B&CID=1592E431EF9367FB1246E869EE9C660B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8EB87BDDFB244A7D871522CDBEFEAC1B&CID=1592E431EF9367FB1246E869EE9C660B&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5250.1", "totalEstimatedMatches": 55, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Natural
+ Resources Conservation Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/natural-resources-conservation-service",
+ "urlPingSuffix": "DevEx,5050.1", "about": [{"name": "Natural Resources Conservation
+ Service"}], "displayUrl": "https:\/\/www.usa.gov\/...\/natural-resources-conservation-service",
+ "snippet": "Natural Resources Conservation Service. The Natural Resources
+ Conservation Service works with landowners for conservation planning and
+ assistance to foster healthy ecosystems.", "dateLastCrawled": "2018-08-20T04:49:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Links
+ | Go.USA.gov", "url": "https:\/\/go.usa.gov\/shorturl\/user\/22?page=8",
+ "urlPingSuffix": "DevEx,5063.1", "displayUrl": "https:\/\/go.usa.gov\/shorturl\/user\/22?page=8",
+ "snippet": "USA.gov: Home page of the U.S. Government''s Official Web Portal
+ for all government transactions, services, and information. It provides direct
+ online access to federal, state, local, and tribal governments.", "dateLastCrawled":
+ "2018-08-19T02:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "USAGov’s Back to School Guide for Teachers and Parents ...", "url":
+ "https:\/\/www.usa.gov\/features\/usagovs-back-to-school-guide-for-teachers-and-parents",
+ "urlPingSuffix": "DevEx,5079.1", "displayUrl": "https:\/\/www.usa.gov\/features\/usagovs-back-to-school-guide-for...",
+ "snippet": "Food Assistance; Social Security ... Pack a healthy and safe
+ lunch. ... Check out USAGov’s Back To School Guide for Teachers and Parents.
+ Connect with USAGov.", "dateLastCrawled": "2018-08-21T00:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Features
+ | USAGov", "url": "https:\/\/www.usa.gov\/features\/zika-virus-what-you-need-to-know?_hsenc=p2ANqtz-8Tf8o9Y1rpgzXhhycqB2h9sygxvqrQ95ndF2Yxs5TgE15SBNzR5ZolDBRqZ4MGcgL3a4H-yn_yGWnemJccDOYR4cJSMQ&_hs",
+ "urlPingSuffix": "DevEx,5093.1", "displayUrl": "https:\/\/www.usa.gov\/features\/zika-virus-what-you-need-to-know?...",
+ "snippet": "Learn about federal government benefit programs for low income
+ earners that can help pay for food, ... A Healthy Prescription For a Healthy
+ Home. Feeling ill?", "dateLastCrawled": "2018-06-17T22:00:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "About this Website
+ | USAGov", "url": "https:\/\/www.usa.gov\/history-of-website?source=kids",
+ "urlPingSuffix": "DevEx,5107.1", "about": [{"name": "USA.gov"}], "displayUrl":
+ "https:\/\/www.usa.gov\/history-of-website?source=kids", "snippet": "This
+ site is secure. The https:\/\/ ensures that you are connecting to the official
+ website and that any information you provide is encrypted and transmitted
+ securely.", "dateLastCrawled": "2018-08-14T22:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Links | Go.USA.gov", "url": "https:\/\/go.usa.gov\/shorturl\/user\/32?page=7",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/go.usa.gov\/shorturl\/user\/32?page=7",
+ "snippet": "http:\/\/www.fda.gov\/Food\/LabelingNutrition\/ConsumerInformation\/ucm...
+ ... informed food choices that contribute to a healthy diet. ...", "dateLastCrawled":
+ "2018-07-27T14:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Links | Go.USA.gov", "url": "https:\/\/go.usa.gov\/shorturl\/user\/32?page=17",
+ "urlPingSuffix": "DevEx,5131.1", "displayUrl": "https:\/\/go.usa.gov\/shorturl\/user\/32?page=17",
+ "snippet": "Follow four easy rules to keep food from spoiling and causing
+ people to get sick. 798. 6\/30\/2010: Be the Best Pet Owner You Can Be - Consumer
+ Focus ...", "dateLastCrawled": "2018-06-12T07:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Start the School Year Off Right with USAGov’s 8 Tips for 2018", "url":
+ "https:\/\/www.usa.gov\/features\/start-the-school-year-off-right-with-usagovs-8-tips-for-2018",
+ "urlPingSuffix": "DevEx,5146.1", "displayUrl": "https:\/\/www.usa.gov\/features\/start-the-school-year-off-right-with...",
+ "snippet": "Food Assistance; Social Security Questions; Affordable Rental
+ Housing; ... Help your kids respond to stress in healthy ways. Show the
+ Video Transcript ...", "dateLastCrawled": "2018-08-21T17:29:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "analytics.usa.gov",
+ "url": "https:\/\/analytics.usa.gov\/data\/health-human-services\/all-pages-realtime.csv",
+ "urlPingSuffix": "DevEx,5157.1", "displayUrl": "https:\/\/analytics.usa.gov\/data\/health-human-services\/all-pages...",
+ "snippet": "page,page_title,active_visitors healthcare.gov\/login,Health Insurance
+ Marketplace: Please wait,974 fda.gov\/newsevents\/newsroom\/pressannouncements\/ucm613532.htm,Press
+ Announcements > FDA announces voluntary recall of several medicines containing
+ valsartan following detection of an impurity,648 mymedicare.gov\/index.html,MyMedicare.gov:
+ Portal of ...", "dateLastCrawled": "2018-07-17T16:28:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "analytics.usa.gov",
+ "url": "https:\/\/analytics.usa.gov\/data\/live\/all-pages-realtime.csv",
+ "urlPingSuffix": "DevEx,5168.1", "displayUrl": "https:\/\/analytics.usa.gov\/data\/live\/all-pages-realtime.csv",
+ "snippet": "page,page_title,active_visitors universalenroll.dhs.gov\/,Universal
+ Enrollment Services (UES),912 m.usps.com\/m\/trackconfirmaction,USPS Tracking®,813
+ weather.gov\/,National Weather Service,666 nhc.noaa.gov\/,National Hurricane
+ Center,606 earthquake.usgs.gov\/earthquakes\/map\/,Latest Earthquakes,509
+ usps.com\/,Welcome | USPS,462 egov.uscis.gov ...", "dateLastCrawled": "2018-06-10T13:54:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "analytics.usa.gov",
+ "url": "https:\/\/analytics.usa.gov\/data\/live\/all-pages-realtime.json",
+ "urlPingSuffix": "DevEx,5180.1", "displayUrl": "https:\/\/analytics.usa.gov\/data\/live\/all-pages-realtime.json",
+ "snippet": "{ \"name\": \"all-pages-realtime\", \"sampling\": {}, \"query\":
+ { \"dimensions\": \"rt:pagePath,rt:pageTitle\", \"metrics\": [ \"rt:activeUsers\"
+ ], \"sort\": [ \"-rt:activeUsers\" ], \"max-results\": 10000 }, \"meta\":
+ { \"name\": \"All Pages (Live)\", \"description\": \"Pages, measured by active
+ onsite users, for all sites.\"", "dateLastCrawled": "2018-08-21T05:09:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:48 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_response__next_is_not_present/next_offset/1_2_5_1_1.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_response__next_is_not_present/next_offset/1_2_5_1_1.yml
index f41fcfad0a..c03266dc28 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_response__next_is_not_present/next_offset/1_2_5_1_1.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_response__next_is_not_present/next_offset/1_2_5_1_1.yml
@@ -79,4 +79,83 @@ http_interactions:
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:12 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=healthy%20snack%20(site:usa.gov)%20(-site:www.usa.gov%20AND%20-site:kids.usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '638'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:52 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0B8D3B932B546A1A31EA37CB2A5B6B65; path=/; expires=Sat, 21-Sep-2019 00:00:52
+ GMT; domain=bingapis.com
+ - MUIDB=0B8D3B932B546A1A31EA37CB2A5B6B65; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:52 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:52 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=1BAED7F7A3AB46899002144F3F737D9C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:52 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:52
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2063A3F3B2C861B4045CAFABB3C76034; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:52 GMT; domain=bingapis.com
+ - _SS=SID=2063A3F3B2C861B4045CAFABB3C76034; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FC2F8C36167E4D168FC4D5C059A79550
+ X-Msedge-Clientid:
+ - 0B8D3B932B546A1A31EA37CB2A5B6B65
+ X-Msapi-Userstate:
+ - 1f1b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FC2F8C36167E4D168FC4D5C059A79550 Ref B: BAYEDGE0514 Ref C: 2018-08-27T00:00:52Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:52 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=1D8C6142BFCC4B74A546835D9EE26A76&CID=0B8D3B932B546A1A31EA37CB2A5B6B65&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=1D8C6142BFCC4B74A546835D9EE26A76&CID=0B8D3B932B546A1A31EA37CB2A5B6B65&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=healthy+snack+(site%3ausa.gov)+(-site%3awww.usa.gov+AND+-site%3akids.usa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "totalEstimatedMatches": 1, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Food
+ Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help", "urlPingSuffix":
+ "DevEx,5040.1", "displayUrl": "https:\/\/www.usa.gov\/food-help", "snippet":
+ "This short-term program can help you get healthy food for yourself and
+ your ... You may qualify for other food assistance programs ... Call USA.gov;
+ Chat with ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:52 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml
index f8a08c66be..443346a509 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml
@@ -136,4 +136,138 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:13 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=educaci%C3%B3n%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1545'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=104DCA0F015B6B922A7CC65700546AFD; path=/; expires=Sat, 21-Sep-2019 00:00:53
+ GMT; domain=bingapis.com
+ - MUIDB=104DCA0F015B6B922A7CC65700546AFD; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:53 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:53 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F2F5AA2612834A26BEAB5048B7B3F27B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:53 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:53
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3631213AC66D620809A42D62C76263A0; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:53 GMT; domain=bingapis.com
+ - _SS=SID=3631213AC66D620809A42D62C76263A0; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B6216AA661AF4666B908C7EDD29809B6
+ X-Msedge-Clientid:
+ - 104DCA0F015B6B922A7CC65700546AFD
+ X-Msapi-Userstate:
+ - 638e
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B6216AA661AF4666B908C7EDD29809B6 Ref B: BAYEDGE0421 Ref C: 2018-08-27T00:00:53Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:53 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A9C38163D54B48129312B854485E75C4&CID=104DCA0F015B6B922A7CC65700546AFD&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A9C38163D54B48129312B854485E75C4&CID=104DCA0F015B6B922A7CC65700546AFD&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=educaci%c3%b3n+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5255.1", "totalEstimatedMatches": 128, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Recursos
+ para la educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5053.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Información del Gobierno sobre ayuda para estudiantes y personas
+ que quieren aprender inglés.", "dateLastCrawled": "2018-08-18T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Recursos
+ educativos | USAGov", "url": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "snippet": "El Departamento de Educación cuenta con recursos e información
+ útil y práctica para todas las fases de la educación, ...", "dateLastCrawled":
+ "2018-08-13T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Departamento de Educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "urlPingSuffix": "DevEx,5082.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "snippet": "Directory listing for Departamento de Educación. El dominio
+ .gov significa que es oficial. Los sitios del Gobierno federal frecuentemente
+ terminan en dominios .gov o .mil.", "dateLastCrawled": "2018-08-18T04:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Ayuda
+ financiera para estudiantes | USAGov", "url": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "snippet": "Becas, productos financieros y programas del Gobierno para la
+ educación superior.", "dateLastCrawled": "2018-08-19T20:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Comisión
+ Federal de Educación Financiera | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de-educacion-financiera",
+ "urlPingSuffix": "DevEx,5110.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de...",
+ "snippet": "Directory listing for Comisión Federal de Educación Financiera",
+ "dateLastCrawled": "2018-08-20T11:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Créditos tributarios | USAGov", "url": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "snippet": "Un crédito tributario por educación ayuda a reducir la cantidad
+ de impuestos adeudados en su declaración. Si el crédito reduce su impuesto
+ a menos de cero, ...", "dateLastCrawled": "2018-08-20T00:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "C | Agencias
+ y Departamentos del Gobierno Federal | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "urlPingSuffix": "DevEx,5140.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "snippet": "Centro de Información del Departamento de Educación; Centro
+ de Información sobre el Bienestar de Menores; Centro de Políticas y Promoción
+ de la Nutrición;", "dateLastCrawled": "2018-07-31T14:46:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Centro de Información
+ del Departamento de Educación", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/centro-de-informacion-del-departamento-de-educacion",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/centro-de-informacion...",
+ "snippet": "Directory listing for Centro de Información del Departamento de
+ Educación", "dateLastCrawled": "2018-07-26T09:48:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "O | Agencias y Departamentos del Gobierno Federal | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/agencias-federales\/o", "urlPingSuffix": "DevEx,5169.1",
+ "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/o", "snippet":
+ "Oficina de Educación y Asistencia a los Inversionistas; Oficina de Eficiencia
+ Energética y Energía Renovable; Oficina de Equidad de Vivienda e Igualdad
+ de ...", "dateLastCrawled": "2018-08-19T02:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Empleo y capacitación laboral | USAGov", "url": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "urlPingSuffix": "DevEx,5183.1", "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "Ver un listado de trabajos y oficios, sus descripciones, salarios
+ medios y el tipo de educación o capacitación que requieren.", "dateLastCrawled":
+ "2018-08-13T01:58:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:53 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/returns_results.yml b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/returns_results.yml
index cf259a7b73..7d5ba148a7 100644
--- a/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingDocsSearch/_run/when_the_site_locale_is_es/returns_results.yml
@@ -136,4 +136,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:13 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=educaci%C3%B3n%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1625'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:53 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=25B02310F7B6660C21B22F48F6B967AE; path=/; expires=Sat, 21-Sep-2019 00:00:53
+ GMT; domain=bingapis.com
+ - MUIDB=25B02310F7B6660C21B22F48F6B967AE; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:53 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:53 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=27F21A117F7849D9B45A1B763B33C95B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:53 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:53
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3638479A416561FF01ED4BC2406A6029; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:53 GMT; domain=bingapis.com
+ - _SS=SID=3638479A416561FF01ED4BC2406A6029; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B55F0A1107244E63AB4118B01CC20290
+ X-Msedge-Clientid:
+ - 25B02310F7B6660C21B22F48F6B967AE
+ X-Msapi-Userstate:
+ - 74d8
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B55F0A1107244E63AB4118B01CC20290 Ref B: BAYEDGE0408 Ref C: 2018-08-27T00:00:53Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:52 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F856A457389644C09F3A66865FBE4C4A&CID=25B02310F7B6660C21B22F48F6B967AE&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F856A457389644C09F3A66865FBE4C4A&CID=25B02310F7B6660C21B22F48F6B967AE&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=educaci%c3%b3n+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5253.1", "totalEstimatedMatches": 130, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Recursos
+ para la educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5053.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Información del Gobierno sobre ayuda para estudiantes y personas
+ que quieren aprender inglés.", "dateLastCrawled": "2018-08-18T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Recursos
+ educativos | USAGov", "url": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "snippet": "El Departamento de Educación cuenta con recursos e información
+ útil y práctica para todas las fases de la educación, ...", "dateLastCrawled":
+ "2018-08-13T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Ayuda financiera para estudiantes | USAGov", "url": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "urlPingSuffix": "DevEx,5081.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "snippet": "Becas, productos financieros y programas del Gobierno para la
+ educación superior.", "dateLastCrawled": "2018-08-19T20:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Departamento
+ de Educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "snippet": "Directory listing for Departamento de Educación. El dominio
+ .gov significa que es oficial. Los sitios del Gobierno federal frecuentemente
+ terminan en dominios .gov o .mil.", "dateLastCrawled": "2018-08-18T04:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Créditos
+ tributarios | USAGov", "url": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "urlPingSuffix": "DevEx,5111.1", "displayUrl": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "snippet": "Un crédito tributario por educación ayuda a reducir la cantidad
+ de impuestos adeudados en su declaración. Si el crédito reduce su impuesto
+ a menos de cero, ...", "dateLastCrawled": "2018-08-20T00:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Comisión
+ Federal de Educación Financiera | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de-educacion-financiera",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de...",
+ "snippet": "Directory listing for Comisión Federal de Educación Financiera",
+ "dateLastCrawled": "2018-08-20T11:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Cómo obtener la residencia permanente | USAGov", "url": "https:\/\/gobierno.usa.gov\/residencia-permanente",
+ "urlPingSuffix": "DevEx,5140.1", "displayUrl": "https:\/\/gobierno.usa.gov\/residencia-permanente",
+ "snippet": "Debe cumplir con el requisito de educación y\/o experiencia
+ laboral. Se piden 12 años completos y satisfactorios de educación primaria
+ y secundaria, ...", "dateLastCrawled": "2018-08-15T14:48:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "C | Agencias
+ y Departamentos del Gobierno Federal | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "urlPingSuffix": "DevEx,5155.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "snippet": "Centro de Información del Departamento de Educación; Centro
+ de Información sobre el Bienestar de Menores; Centro de Políticas y Promoción
+ de la Nutrición;", "dateLastCrawled": "2018-07-31T14:46:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Empleo y capacitación
+ laboral | USAGov", "url": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "Ver un listado de trabajos y oficios, sus descripciones, salarios
+ medios y el tipo de educación o capacitación que requieren.", "dateLastCrawled":
+ "2018-08-13T01:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5181.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-08-18T14:27:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:53 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/highlights_title_and_description.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/highlights_title_and_description.yml
index d7f45b9986..b75e65b3d9 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/highlights_title_and_description.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/highlights_title_and_description.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:21 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1719'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:03 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1DE0667A2EB56D5C19316A222FBA6C8F; path=/; expires=Sat, 21-Sep-2019 00:01:03
+ GMT; domain=bingapis.com
+ - MUIDB=1DE0667A2EB56D5C19316A222FBA6C8F; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:03 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:03 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=88ADD68C5F1542AFA2E04A6D87CA6FA5&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:03 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:03
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=279F9EE9FF276CDC3C8292B1FE286DB4; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:03 GMT; domain=bingapis.com
+ - _SS=SID=279F9EE9FF276CDC3C8292B1FE286DB4; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 4C49FFDC0F184034B4910CF0A78ED6AB
+ X-Msedge-Clientid:
+ - 1DE0667A2EB56D5C19316A222FBA6C8F
+ X-Msapi-Userstate:
+ - 47d7
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 4C49FFDC0F184034B4910CF0A78ED6AB Ref B: BAYEDGE0515 Ref C: 2018-08-27T00:01:03Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:02 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=1946573F12EE4CE3B814E889F44AD8FC&CID=1DE0667A2EB56D5C19316A222FBA6C8F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=1946573F12EE4CE3B814E889F44AD8FC&CID=1DE0667A2EB56D5C19316A222FBA6C8F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:03 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_news_are_present/includes_recent_news.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_news_are_present/includes_recent_news.yml
index df16b72bf4..90ba9f9c9f 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_news_are_present/includes_recent_news.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_news_are_present/includes_recent_news.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:25 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1718'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:07 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3524058A97BB69E636B209D296B46871; path=/; expires=Sat, 21-Sep-2019 00:01:07
+ GMT; domain=bingapis.com
+ - MUIDB=3524058A97BB69E636B209D296B46871; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:07 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:07 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=03073C8B35D243A2A6DA8A15FC8380DF&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:07 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:07
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3BB7DE0A79946A070D50D252789B6BED; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:07 GMT; domain=bingapis.com
+ - _SS=SID=3BB7DE0A79946A070D50D252789B6BED; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 21F68E99C57F4A82B39B511103481469
+ X-Msedge-Clientid:
+ - 3524058A97BB69E636B209D296B46871
+ X-Msapi-Userstate:
+ - '6895'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 21F68E99C57F4A82B39B511103481469 Ref B: BAYEDGE0207 Ref C: 2018-08-27T00:01:07Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:06 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=2654DF6DF4FC46B48201C65DBDD715F1&CID=3524058A97BB69E636B209D296B46871&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=2654DF6DF4FC46B48201C65DBDD715F1&CID=3524058A97BB69E636B209D296B46871&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:07 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_video_news_are_present/includes_recent_video_news.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_video_news_are_present/includes_recent_video_news.yml
index 2e3a09a404..6fc941eaf0 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_video_news_are_present/includes_recent_video_news.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_a_commercial_API_search_as_json/when_recent_video_news_are_present/includes_recent_video_news.yml
@@ -146,4 +146,167 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:24 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '2388'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:06 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2360ED0AF35D6ADB0547E152F2526B0A; path=/; expires=Sat, 21-Sep-2019 00:01:06
+ GMT; domain=bingapis.com
+ - MUIDB=2360ED0AF35D6ADB0547E152F2526B0A; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:06 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:06 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CFC0983B7AE74279B98A58156B81BF22&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:06 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:06
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1CF70BD270B26C1E3BE5078A71BD6D54; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:06 GMT; domain=bingapis.com
+ - _SS=SID=1CF70BD270B26C1E3BE5078A71BD6D54; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 502E5E41D37D40C7B3F6996B55D93AF6
+ X-Msedge-Clientid:
+ - 2360ED0AF35D6ADB0547E152F2526B0A
+ X-Msapi-Userstate:
+ - c389
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 502E5E41D37D40C7B3F6996B55D93AF6 Ref B: BAYEDGE0208 Ref C: 2018-08-27T00:01:06Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:05 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=7DE9E4008E7B43CE99E18259EA09EFB9&CID=2360ED0AF35D6ADB0547E152F2526B0A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=7DE9E4008E7B43CE99E18259EA09EFB9&CID=2360ED0AF35D6ADB0547E152F2526B0A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; Affordable Rental Housing; Financial Aid for Students;
+ Military Programs and Benefits; Retirement; Unemployment Help; ... Health
+ Information from the Government. Learn more about the best ways to find health
+ information from the government. Health Insurance.", "dateLastCrawled":
+ "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government. Here''s
+ how you know ... Food and Nutrition . USDA Food and Food Safety Recalls.
+ Back to Top. Parent Agency. White House; Related Agency. Center for Nutrition
+ Policy and Promotion;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, and other basic living expenses. Find out about eligibility
+ requirements for programs like food stamps, welfare, and Medicaid, and how
+ to apply for them. ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, or food stamps) provides eligible people ...", "dateLastCrawled":
+ "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ apply for food stamps and what free or low-cost food programs are available
+ for infants, children and seniors. ... the Supplemental Nutrition Assistance
+ Program (SNAP), formerly known as \"food stamps,\" is a federal nutrition
+ program that can help you stretch your food budget. Am ...", "dateLastCrawled":
+ "2018-08-20T03:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Center for Food Safety and Applied Nutrition | USAGov", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5135.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Center for Food Safety and Applied Nutrition. The Center provides
+ services to consumers and industry groups about food and cosmetics. They
+ perform scientific analysis, develop policy, and handle critical issues related
+ to food and cosmetics.", "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "C | A-Z
+ Index of U.S. Government Departments and Agencies ...", "url": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "urlPingSuffix": "DevEx,5151.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "snippet": "Center for Food Safety and Applied Nutrition; Center for Nutrition
+ Policy and Promotion (CNPP) Centers for Disease Control and Prevention (CDC)
+ Centers for Medicare and Medicaid Services (CMS) Central Command (CENTCOM)
+ Central Intelligence Agency (CIA) Chemical Safety Board;", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5167.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Food and Drug Administration. The Food and Drug Administration
+ (FDA) is responsible for protecting the public health by assuring the safety,
+ efficacy, and security of human and veterinary drugs, biological products,
+ medical devices, our nation''s food supply, cosmetics, and products that
+ emit radiation.", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Center for Food Safety and Applied Nutrition. Center for Nutrition Policy
+ and Promotion. ... President''s Council on Fitness, Sports and Nutrition.
+ Pretrial Services Agency for the District of Columbia.", "dateLastCrawled":
+ "2018-08-21T11:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5198.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. Skip to main
+ content. An official website of the United States government ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health professionals, so they work in a variety of settings: ... Any good
+ nutrition apps? The SuperTracker is an online ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:06 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/includes_the_query.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/includes_the_query.yml
index 819d8d4487..4a4a9556b7 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/includes_the_query.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/includes_the_query.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:22 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1721'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:03 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=27B70665A04D657836CF0A3DA1426469; path=/; expires=Sat, 21-Sep-2019 00:01:03
+ GMT; domain=bingapis.com
+ - MUIDB=27B70665A04D657836CF0A3DA1426469; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:03 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:03 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CFE93F5575EC4E7CB4EC48B6E4AACD7E&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:03 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:03
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=07CDE30F7DD36E3B2C5BEF577CDC6FCE; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:03 GMT; domain=bingapis.com
+ - _SS=SID=07CDE30F7DD36E3B2C5BEF577CDC6FCE; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - C902F628569F47D890051973F2907E58
+ X-Msedge-Clientid:
+ - 27B70665A04D657836CF0A3DA1426469
+ X-Msapi-Userstate:
+ - b409
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: C902F628569F47D890051973F2907E58 Ref B: BAYEDGE0419 Ref C: 2018-08-27T00:01:03Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:02 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=7CE073EF0B8C4DCD889FB0A56FEAB6FA&CID=27B70665A04D657836CF0A3DA1426469&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=7CE073EF0B8C4DCD889FB0A56FEAB6FA&CID=27B70665A04D657836CF0A3DA1426469&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:03 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_federal_register_documents_are_present/includes_federal_register_documents.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_federal_register_documents_are_present/includes_federal_register_documents.yml
index 164a16699b..fd2894d22a 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_federal_register_documents_are_present/includes_federal_register_documents.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_federal_register_documents_are_present/includes_federal_register_documents.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:23 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1719'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:04 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=3B52C2A4E8B460550929CEFCE9BB6133; path=/; expires=Sat, 21-Sep-2019 00:01:05
+ GMT; domain=bingapis.com
+ - MUIDB=3B52C2A4E8B460550929CEFCE9BB6133; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:05 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:04 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=320295A521364F10AC50FAD43720B7E6&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:04 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:04
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=308CC48C207864202688C8D421776597; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:05 GMT; domain=bingapis.com
+ - _SS=SID=308CC48C207864202688C8D421776597; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - F289EA3E2AA14B0E92A4311272A0A216
+ X-Msedge-Clientid:
+ - 3B52C2A4E8B460550929CEFCE9BB6133
+ X-Msapi-Userstate:
+ - 386d
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: F289EA3E2AA14B0E92A4311272A0A216 Ref B: BAYEDGE0517 Ref C: 2018-08-27T00:01:05Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=CE55AC64570142EBB859A86C49779F31&CID=3B52C2A4E8B460550929CEFCE9BB6133&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=CE55AC64570142EBB859A86C49779F31&CID=3B52C2A4E8B460550929CEFCE9BB6133&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:05 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_health_topics_are_present/includes_health_topics.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_health_topics_are_present/includes_health_topics.yml
index a953033c8d..0282b3af8e 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_health_topics_are_present/includes_health_topics.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_health_topics_are_present/includes_health_topics.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:24 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1720'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:05 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=128179D776B560851FD3758F77BA6142; path=/; expires=Sat, 21-Sep-2019 00:01:06
+ GMT; domain=bingapis.com
+ - MUIDB=128179D776B560851FD3758F77BA6142; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:06 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:05 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=61DF8D89526C4EBDAB02803B0D4C7A9F&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:05 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:05
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=35A81CECF9CA6B32297210B4F8C56A82; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:06 GMT; domain=bingapis.com
+ - _SS=SID=35A81CECF9CA6B32297210B4F8C56A82; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 85F4F215F58C4BA4878A5917315255F4
+ X-Msedge-Clientid:
+ - 128179D776B560851FD3758F77BA6142
+ X-Msapi-Userstate:
+ - 290e
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 85F4F215F58C4BA4878A5917315255F4 Ref B: BAYEDGE0106 Ref C: 2018-08-27T00:01:06Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:05 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=0FD4808ED4994BB19995CE60FE9165C3&CID=128179D776B560851FD3758F77BA6142&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=0FD4808ED4994BB19995CE60FE9165C3&CID=128179D776B560851FD3758F77BA6142&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:06 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_job_openings_are_present/includes_job_openings.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_job_openings_are_present/includes_job_openings.yml
index 31cbe3c9e8..204b77e045 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_job_openings_are_present/includes_job_openings.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_job_openings_are_present/includes_job_openings.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:23 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1719'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:05 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=0B0EA02954416E9E1499AC71554E6F30; path=/; expires=Sat, 21-Sep-2019 00:01:05
+ GMT; domain=bingapis.com
+ - MUIDB=0B0EA02954416E9E1499AC71554E6F30; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:05 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:05 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=43E82500959248A6B6CEAF245A9648FF&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:05 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:05
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1C7D8BB3029368C4231687EB039C6973; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:05 GMT; domain=bingapis.com
+ - _SS=SID=1C7D8BB3029368C4231687EB039C6973; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 58DB53E69DB34980999C2A3BC6868188
+ X-Msedge-Clientid:
+ - 0B0EA02954416E9E1499AC71554E6F30
+ X-Msapi-Userstate:
+ - 6c49
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 58DB53E69DB34980999C2A3BC6868188 Ref B: BAYEDGE0208 Ref C: 2018-08-27T00:01:05Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D2288780316B44F2B295F52B9DDE8EC9&CID=0B0EA02954416E9E1499AC71554E6F30&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D2288780316B44F2B295F52B9DDE8EC9&CID=0B0EA02954416E9E1499AC71554E6F30&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:05 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_tweets_are_present/includes_recent_tweets.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_tweets_are_present/includes_recent_tweets.yml
index d14c2e5364..798521b1d1 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_tweets_are_present/includes_recent_tweets.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/it_should_behave_like_an_API_search_as_json/when_tweets_are_present/includes_recent_tweets.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:22 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1709'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:04 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=058B973CB1676A6E23C89B64B0686B5F; path=/; expires=Sat, 21-Sep-2019 00:01:04
+ GMT; domain=bingapis.com
+ - MUIDB=058B973CB1676A6E23C89B64B0686B5F; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:04 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:04 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=C291FA66F2AB42E3B2B0333148E39AD4&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:04 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:04
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=37953D657CD66A6538A5313D7DD96B26; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:04 GMT; domain=bingapis.com
+ - _SS=SID=37953D657CD66A6538A5313D7DD96B26; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - '0687F0FC1CCD4A119D4BE74705C45006'
+ X-Msedge-Clientid:
+ - '058B973CB1676A6E23C89B64B0686B5F'
+ X-Msapi-Userstate:
+ - 3b07
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 0687F0FC1CCD4A119D4BE74705C45006 Ref B: BAYEDGE0521 Ref C: 2018-08-27T00:01:04Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:04 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8C2DC5C597CA4C7EAA514260E84F4D31&CID=058B973CB1676A6E23C89B64B0686B5F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8C2DC5C597CA4C7EAA514260E84F4D31&CID=058B973CB1676A6E23C89B64B0686B5F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "totalEstimatedMatches": 130, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Food
+ Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/food-help", "snippet":
+ "Food Assistance. Find out how to get food in case of an emergency, ...
+ formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Center for Food Safety and Applied Nutrition | USAGov", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5150.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "C | A-Z Index
+ of U.S. Government Departments and Agencies ...", "url": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "urlPingSuffix": "DevEx,5166.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "snippet": "Center for Food Safety and Applied Nutrition; Center for Nutrition
+ Policy and Promotion (CNPP) Centers for Disease Control and Prevention (CDC)",
+ "dateLastCrawled": "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Contact Government
+ by Topic | USAGov", "url": "https:\/\/www.usa.gov\/contact-by-topic", "urlPingSuffix":
+ "DevEx,5198.1", "displayUrl": "https:\/\/www.usa.gov\/contact-by-topic",
+ "snippet": "Contact Government by Topic. ... Food Stamps (Supplemental
+ Nutrition Assistance Program or SNAP) ... Call or write to the Food and
+ Drug Administration ...", "dateLastCrawled": "2018-08-19T09:07:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:04 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_as_json/returns_results.yml b/spec/vcr_cassettes/ApiBingSearch/_as_json/returns_results.yml
index 6d6a852270..9683a88c64 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_as_json/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_as_json/returns_results.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:21 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1718'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:02 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=37264E56669663540581420E67996256; path=/; expires=Sat, 21-Sep-2019 00:01:02
+ GMT; domain=bingapis.com
+ - MUIDB=37264E56669663540581420E67996256; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:02 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:02 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=CB8E0BABF0B24E448A8CD71D9185A429&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:02 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:02
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=054A2AA6A4A3643630A226FEA5AC65A4; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:02 GMT; domain=bingapis.com
+ - _SS=SID=054A2AA6A4A3643630A226FEA5AC65A4; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - ACB1E3A69D574CAEAEE44CB81B004437
+ X-Msedge-Clientid:
+ - 37264E56669663540581420E67996256
+ X-Msapi-Userstate:
+ - a9ca
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: ACB1E3A69D574CAEAEE44CB81B004437 Ref B: BAYEDGE0319 Ref C: 2018-08-27T00:01:02Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:02 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=21BBCA1A617F4841A38CA1F44B6F6AB6&CID=37264E56669663540581420E67996256&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=21BBCA1A617F4841A38CA1F44B6F6AB6&CID=37264E56669663540581420E67996256&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:02 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/modules/1_3_2_4_1.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/modules/1_3_2_4_1.yml
index 26cd37742b..9a5b51256e 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/modules/1_3_2_4_1.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/modules/1_3_2_4_1.yml
@@ -143,4 +143,145 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:18 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1636'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:00 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1982970AD42868EC3B659B52D52769E6; path=/; expires=Sat, 21-Sep-2019 00:01:00
+ GMT; domain=bingapis.com
+ - MUIDB=1982970AD42868EC3B659B52D52769E6; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:00 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:00 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=5C1967F3E04C4FF1B7AD3A1640A1D54D&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:00 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:00
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1A3A833F66F462AA19C28F6767FB6346; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:00 GMT; domain=bingapis.com
+ - _SS=SID=1A3A833F66F462AA19C28F6767FB6346; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - F4E3D81237634B3A8CB503451D3AC15E
+ X-Msedge-Clientid:
+ - 1982970AD42868EC3B659B52D52769E6
+ X-Msapi-Userstate:
+ - 2fc1
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: F4E3D81237634B3A8CB503451D3AC15E Ref B: BAYEDGE0109 Ref C: 2018-08-27T00:01:00Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:00 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=FE08A015A3DC4DA1ADE978057695D209&CID=1982970AD42868EC3B659B52D52769E6&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=FE08A015A3DC4DA1ADE978057695D209&CID=1982970AD42868EC3B659B52D52769E6&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service provides
+ children and low-income people access to food, a healthful diet, and nutrition
+ education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "U.S. Department of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, housing,
+ healthcare, ... Food. Supplemental Nutrition Assistance Program (SNAP, ...",
+ "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and Promotion
+ (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:00 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_3_2_3_1.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_3_2_3_1.yml
index 910a000051..95072d5966 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_3_2_3_1.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/next_offset/1_3_2_3_1.yml
@@ -143,4 +143,145 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:18 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1638'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:59 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1062B4FA27E968C020CFB8A226E6696A; path=/; expires=Sat, 21-Sep-2019 00:00:59
+ GMT; domain=bingapis.com
+ - MUIDB=1062B4FA27E968C020CFB8A226E6696A; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:59 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:59 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=69BBEBBF49CD48FDA809B6EF1D1E29E6&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:59 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:59
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2E97E79A931E620C37BAEBC29211632C; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:59 GMT; domain=bingapis.com
+ - _SS=SID=2E97E79A931E620C37BAEBC29211632C; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 3ED770C2C84B41778154CCE9AE7DCF77
+ X-Msedge-Clientid:
+ - 1062B4FA27E968C020CFB8A226E6696A
+ X-Msapi-Userstate:
+ - bd25
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 3ED770C2C84B41778154CCE9AE7DCF77 Ref B: BAYEDGE0112 Ref C: 2018-08-27T00:00:59Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:59 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=A6956B7E1CCD48A1A01B1209140EE0B7&CID=1062B4FA27E968C020CFB8A226E6696A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=A6956B7E1CCD48A1A01B1209140EE0B7&CID=1062B4FA27E968C020CFB8A226E6696A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service provides
+ children and low-income people access to food, a healthful diet, and nutrition
+ education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "U.S. Department of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, housing,
+ healthcare, ... Food. Supplemental Nutrition Assistance Program (SNAP, ...",
+ "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and Promotion
+ (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:00 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml
index fa38bcb109..82e4c0f028 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/returns_results.yml
@@ -143,4 +143,145 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:17 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1638'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:58 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=25FC97FE058968843D149BA604866921; path=/; expires=Sat, 21-Sep-2019 00:00:59
+ GMT; domain=bingapis.com
+ - MUIDB=25FC97FE058968843D149BA604866921; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:59 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:58 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=F314C0CFA7164A42AF94D276D657299B&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:58 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:58
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=219C9889A4F86FF71D1194D1A5F76EE9; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:59 GMT; domain=bingapis.com
+ - _SS=SID=219C9889A4F86FF71D1194D1A5F76EE9; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 635865CE03FF4A238A8D8C7C4C810AC3
+ X-Msedge-Clientid:
+ - 25FC97FE058968843D149BA604866921
+ X-Msapi-Userstate:
+ - '6235'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 635865CE03FF4A238A8D8C7C4C810AC3 Ref B: BAYEDGE0316 Ref C: 2018-08-27T00:00:59Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:58 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=4753E6599C69483D926959821EE4CA53&CID=25FC97FE058968843D149BA604866921&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=4753E6599C69483D926959821EE4CA53&CID=25FC97FE058968843D149BA604866921&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service provides
+ children and low-income people access to food, a healthful diet, and nutrition
+ education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "U.S. Department of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, housing,
+ healthcare, ... Food. Supplemental Nutrition Assistance Program (SNAP, ...",
+ "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and Promotion
+ (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:59 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/title_and_description_should_NOT_be_highlighted.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/title_and_description_should_NOT_be_highlighted.yml
index 288249a95d..c086083e9b 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/title_and_description_should_NOT_be_highlighted.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_disabled/title_and_description_should_NOT_be_highlighted.yml
@@ -143,4 +143,145 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:17 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1639'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:59 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2CF231A0CB9469BD2F343DF8CA9B680F; path=/; expires=Sat, 21-Sep-2019 00:00:59
+ GMT; domain=bingapis.com
+ - MUIDB=2CF231A0CB9469BD2F343DF8CA9B680F; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:59 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:59 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7D28571FE1524ADFA0BDC2D0601EFAFE&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:59 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:59
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=11D5F6B5E8C268E00418FAEDE9CD693A; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:59 GMT; domain=bingapis.com
+ - _SS=SID=11D5F6B5E8C268E00418FAEDE9CD693A; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 35AA08EF491A47F094CED74FAEF31422
+ X-Msedge-Clientid:
+ - 2CF231A0CB9469BD2F343DF8CA9B680F
+ X-Msapi-Userstate:
+ - 5e62
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 35AA08EF491A47F094CED74FAEF31422 Ref B: BAYEDGE0120 Ref C: 2018-08-27T00:00:59Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:59 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=BC4ACE67AB2E445BAC4B2B70B7F54A79&CID=2CF231A0CB9469BD2F343DF8CA9B680F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=BC4ACE67AB2E445BAC4B2B70B7F54A79&CID=2CF231A0CB9469BD2F343DF8CA9B680F&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service provides
+ children and low-income people access to food, a healthful diet, and nutrition
+ education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "U.S. Department of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food, housing,
+ healthcare, ... Food. Supplemental Nutrition Assistance Program (SNAP, ...",
+ "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and Promotion
+ (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:59 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml
index cacffdcaf8..799002d21a 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/highlights_title_and_content.yml
@@ -146,4 +146,146 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:15 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1699'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:57 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=334689D60D8A6EFA190B858E0C856F39; path=/; expires=Sat, 21-Sep-2019 00:00:57
+ GMT; domain=bingapis.com
+ - MUIDB=334689D60D8A6EFA190B858E0C856F39; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:57 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:57 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=FE4C44797C984F0CA18BAB7E02232052&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:57 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:57
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3224B8702FC960710F22B4282EC6618E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:57 GMT; domain=bingapis.com
+ - _SS=SID=3224B8702FC960710F22B4282EC6618E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FF14F582288C467C943EB310D6D5A373
+ X-Msedge-Clientid:
+ - 334689D60D8A6EFA190B858E0C856F39
+ X-Msapi-Userstate:
+ - 30fa
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FF14F582288C467C943EB310D6D5A373 Ref B: BAYEDGE0221 Ref C: 2018-08-27T00:00:57Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=48683BBBA71A4231A06436D153B8FC5A&CID=334689D60D8A6EFA190B858E0C856F39&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=48683BBBA71A4231A06436D153B8FC5A&CID=334689D60D8A6EFA190B858E0C856F39&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "totalEstimatedMatches": 130, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "U.S. Department of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Food
+ and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Food
+ Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/food-help", "snippet":
+ "Food Assistance. Find out how to get food in case of an emergency, ...
+ formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Food
+ and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5119.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center for Food
+ Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Contact Government by Topic | USAGov", "url": "https:\/\/www.usa.gov\/contact-by-topic",
+ "urlPingSuffix": "DevEx,5150.1", "displayUrl": "https:\/\/www.usa.gov\/contact-by-topic",
+ "snippet": "Contact Government by Topic. ... Food Stamps (Supplemental
+ Nutrition Assistance Program or SNAP) ... Call or write to the Food and
+ Drug Administration ...", "dateLastCrawled": "2018-08-19T09:07:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5166.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "C | A-Z Index
+ of U.S. Government Departments and Agencies ...", "url": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "urlPingSuffix": "DevEx,5198.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "snippet": "Center for Food Safety and Applied Nutrition; Center for Nutrition
+ Policy and Promotion (CNPP) Centers for Disease Control and Prevention (CDC)",
+ "dateLastCrawled": "2018-08-16T17:25:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:57 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/includes_urls.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/includes_urls.yml
index d860653d6b..93a036333b 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/includes_urls.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/includes_urls.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:15 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1718'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:57 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=35B5E26D42C9668535D2EE3543C6678E; path=/; expires=Sat, 21-Sep-2019 00:00:57
+ GMT; domain=bingapis.com
+ - MUIDB=35B5E26D42C9668535D2EE3543C6678E; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:57 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:57 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=366B034EEDD84DFD880E0583226033ED&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:57 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:57
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=24E4EE686099691A0864E230619668E1; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:57 GMT; domain=bingapis.com
+ - _SS=SID=24E4EE686099691A0864E230619668E1; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - AF20249BC59F44938CF21E8AFC66637D
+ X-Msedge-Clientid:
+ - 35B5E26D42C9668535D2EE3543C6678E
+ X-Msapi-Userstate:
+ - 59e9
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: AF20249BC59F44938CF21E8AFC66637D Ref B: BAYEDGE0421 Ref C: 2018-08-27T00:00:57Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=9056780ACBDD43A99C5D5DC0E101340B&CID=35B5E26D42C9668535D2EE3543C6678E&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=9056780ACBDD43A99C5D5DC0E101340B&CID=35B5E26D42C9668535D2EE3543C6678E&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:57 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/modules/1_3_1_5_1.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/modules/1_3_1_5_1.yml
index d00ec3c975..00c5ab5cd6 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/modules/1_3_1_5_1.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/modules/1_3_1_5_1.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:16 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1719'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:58 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=016FF54615B06F7A1432F91E14BF6E3A; path=/; expires=Sat, 21-Sep-2019 00:00:58
+ GMT; domain=bingapis.com
+ - MUIDB=016FF54615B06F7A1432F91E14BF6E3A; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:58 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:58 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=24733C434027422EA23A6B17AC4A4621&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:58 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:58
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2B0D33E774236DF436973FBF752C6C82; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:58 GMT; domain=bingapis.com
+ - _SS=SID=2B0D33E774236DF436973FBF752C6C82; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - B42FB27497F04584AF0E197CA04C60D3
+ X-Msedge-Clientid:
+ - 016FF54615B06F7A1432F91E14BF6E3A
+ X-Msapi-Userstate:
+ - eb5f
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: B42FB27497F04584AF0E197CA04C60D3 Ref B: BAYEDGE0520 Ref C: 2018-08-27T00:00:58Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=CF81CA283605460CBDE92BE52EF6F5D0&CID=016FF54615B06F7A1432F91E14BF6E3A&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=CF81CA283605460CBDE92BE52EF6F5D0&CID=016FF54615B06F7A1432F91E14BF6E3A&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:58 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_3_1_4_1.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_3_1_4_1.yml
index c97055cd9a..ad27c48646 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_3_1_4_1.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/next_offset/1_3_1_4_1.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:16 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1709'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:58 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=37CF441A79DB6A1D0D65484278D46B85; path=/; expires=Sat, 21-Sep-2019 00:00:58
+ GMT; domain=bingapis.com
+ - MUIDB=37CF441A79DB6A1D0D65484278D46B85; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:58 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:58 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=518D721D91574314806250458E741943&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:58 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:58
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=088EE1F32AB8605E0242EDAB2BB7610B; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:58 GMT; domain=bingapis.com
+ - _SS=SID=088EE1F32AB8605E0242EDAB2BB7610B; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 9F463031B9524E939DC69CC83B40A559
+ X-Msedge-Clientid:
+ - 37CF441A79DB6A1D0D65484278D46B85
+ X-Msapi-Userstate:
+ - 6a06
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 9F463031B9524E939DC69CC83B40A559 Ref B: BAYEDGE0409 Ref C: 2018-08-27T00:00:58Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:57 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D9A9678E62EA4E9CBA514061BF4A8132&CID=37CF441A79DB6A1D0D65484278D46B85&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D9A9678E62EA4E9CBA514061BF4A8132&CID=37CF441A79DB6A1D0D65484278D46B85&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5270.1", "totalEstimatedMatches": 133, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Food
+ Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/food-help", "snippet":
+ "Food Assistance. Find out how to get food in case of an emergency, ...
+ formerly known as \"food stamps,\" is a federal nutrition program that
+ can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Center for Food Safety and Applied Nutrition | USAGov", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5150.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "C | A-Z Index
+ of U.S. Government Departments and Agencies ...", "url": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "urlPingSuffix": "DevEx,5166.1", "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c",
+ "snippet": "Center for Food Safety and Applied Nutrition; Center for Nutrition
+ Policy and Promotion (CNPP) Centers for Disease Control and Prevention (CDC)",
+ "dateLastCrawled": "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Healthcare Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers",
+ "urlPingSuffix": "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Contact Government
+ by Topic | USAGov", "url": "https:\/\/www.usa.gov\/contact-by-topic", "urlPingSuffix":
+ "DevEx,5198.1", "displayUrl": "https:\/\/www.usa.gov\/contact-by-topic",
+ "snippet": "Contact Government by Topic. ... Food Stamps (Supplemental
+ Nutrition Assistance Program or SNAP) ... Call or write to the Food and
+ Drug Administration ...", "dateLastCrawled": "2018-08-19T09:07:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:58 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml
index 3d9591090e..595ab7be0c 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_enable_highlighting_is_enabled/returns_results.yml
@@ -146,4 +146,147 @@ http_interactions:
"sidebar": {"items": [{"answerType": "Entities"}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:14 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=food%20nutrition%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1718'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Sun, 26 Aug 2018 23:59:56 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2F1D7B2215AA65380A88777A14A5644C; path=/; expires=Sat, 21-Sep-2019 00:00:56
+ GMT; domain=bingapis.com
+ - MUIDB=2F1D7B2215AA65380A88777A14A5644C; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:00:56 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:56 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=E422241F8D25492D92E39B45D23039F6&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:00:56 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:00:56
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=19C1BB3FB87B6D1C0576B767B9746CC4; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:00:56 GMT; domain=bingapis.com
+ - _SS=SID=19C1BB3FB87B6D1C0576B767B9746CC4; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 5535FCB29CA441E9BBD772AC45AB4700
+ X-Msedge-Clientid:
+ - 2F1D7B2215AA65380A88777A14A5644C
+ X-Msapi-Userstate:
+ - a33b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 5535FCB29CA441E9BBD772AC45AB4700 Ref B: BAYEDGE0414 Ref C: 2018-08-27T00:00:56Z'
+ Date:
+ - Mon, 27 Aug 2018 00:00:55 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=BBE5C2CB9C4644B8A191B69E1E466909&CID=2F1D7B2215AA65380A88777A14A5644C&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=BBE5C2CB9C4644B8A191B69E1E466909&CID=2F1D7B2215AA65380A88777A14A5644C&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=food+nutrition+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5269.1", "totalEstimatedMatches": 156, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Health
+ | USAGov", "url": "https:\/\/www.usa.gov\/health", "urlPingSuffix": "DevEx,5055.1",
+ "displayUrl": "https:\/\/www.usa.gov\/health", "snippet": "Food Assistance;
+ Social Security Questions; ... Health Information from the Government. Learn
+ more about the best ways to find health information from the government.",
+ "dateLastCrawled": "2018-08-20T21:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Food and Nutrition Service | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "urlPingSuffix": "DevEx,5071.1", "about": [{"name": "Food and Nutrition Service"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-nutrition-service",
+ "snippet": "Food and Nutrition Service. The Food and Nutrition Service
+ provides children and low-income people access to food, a healthful diet,
+ and nutrition education.", "dateLastCrawled": "2018-08-05T15:20:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "U.S. Department
+ of Agriculture | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "United States Department
+ of Agriculture"}], "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/u-s-department-of-agriculture",
+ "snippet": "Directory listing for U.S. Department of Agriculture. Skip to
+ main content. An official website of the United States government ... Food
+ and Nutrition Service;", "dateLastCrawled": "2018-08-15T12:37:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Government
+ Benefits | USAGov", "url": "https:\/\/www.usa.gov\/benefits", "urlPingSuffix":
+ "DevEx,5103.1", "displayUrl": "https:\/\/www.usa.gov\/benefits", "snippet":
+ "Get information on government benefits that may help you pay for food,
+ housing, healthcare, ... Food. Supplemental Nutrition Assistance Program
+ (SNAP, ...", "dateLastCrawled": "2018-08-15T14:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Food Assistance | USAGov", "url": "https:\/\/www.usa.gov\/food-help",
+ "urlPingSuffix": "DevEx,5119.1", "displayUrl": "https:\/\/www.usa.gov\/food-help",
+ "snippet": "Food Assistance. Find out how to get food in case of an emergency,
+ ... formerly known as \"food stamps,\" is a federal nutrition program
+ that can help you stretch your ...", "dateLastCrawled": "2018-08-20T03:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Center
+ for Food Safety and Applied Nutrition | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/center-for-food-safety-and-applied-nutrition",
+ "urlPingSuffix": "DevEx,5134.1", "about": [{"name": "Center for Food Safety
+ and Applied Nutrition"}, {"name": "Center for Food Safety"}], "displayUrl":
+ "https:\/\/www.usa.gov\/...\/center-for-food-safety-and-applied-nutrition",
+ "snippet": "Directory listing for Center for Food Safety and Applied Nutrition",
+ "dateLastCrawled": "2018-08-16T18:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "C | A-Z Index of U.S. Government Departments and Agencies ...", "url":
+ "https:\/\/www.usa.gov\/federal-agencies\/c", "urlPingSuffix": "DevEx,5150.1",
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/c", "snippet": "Center
+ for Food Safety and Applied Nutrition; Center for Nutrition Policy and
+ Promotion (CNPP) Centers for Disease Control and Prevention (CDC)", "dateLastCrawled":
+ "2018-08-16T17:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Food and Drug Administration | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Food and Drug Administration"}],
+ "displayUrl": "https:\/\/www.usa.gov\/federal-agencies\/food-and-drug-administration",
+ "snippet": "Directory listing for Food and Drug Administration ... medical
+ devices, our nation''s food supply, ... Center for Food Safety and Applied
+ Nutrition;", "dateLastCrawled": "2018-08-14T22:40:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Healthcare
+ Careers | USAGov", "url": "https:\/\/www.usa.gov\/healthcare-careers", "urlPingSuffix":
+ "DevEx,5182.1", "displayUrl": "https:\/\/www.usa.gov\/healthcare-careers",
+ "snippet": "Find information on different jobs in healthcare. ... A nutritionist
+ or a dietician is an expert in food, health and nutrition. And nutritionists
+ are health ...", "dateLastCrawled": "2018-08-19T17:13:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Executive Department
+ Sub-Agencies and Bureaus | USAGov", "url": "https:\/\/www.usa.gov\/sub-agencies",
+ "urlPingSuffix": "DevEx,5197.1", "displayUrl": "https:\/\/www.usa.gov\/sub-agencies",
+ "snippet": "Executive Department Sub-Agencies and Bureaus. These offices,
+ agencies, and bureaus support the mission of their parent department. ...
+ Food and Nutrition Service.", "dateLastCrawled": "2018-08-21T11:52:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:00:56 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/modules/1_3_4_2_1.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/modules/1_3_4_2_1.yml
index 0b974333ea..46fe59b72b 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/modules/1_3_4_2_1.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/modules/1_3_4_2_1.yml
@@ -70,4 +70,74 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:20 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=mango%20smoothie%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:02 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=304E6FA9DA946D0E3CA963F1DB9B6CE9; path=/; expires=Sat, 21-Sep-2019 00:01:02
+ GMT; domain=bingapis.com
+ - MUIDB=304E6FA9DA946D0E3CA963F1DB9B6CE9; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:02 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:02 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=74DDFD93165249F8A739EB74D8DE554C&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:02 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:02
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=396D5D905E3F6DE83AE451C85F306C6E; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:02 GMT; domain=bingapis.com
+ - _SS=SID=396D5D905E3F6DE83AE451C85F306C6E; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 2BCBF156BAD3465B8712A806430E1716
+ X-Msedge-Clientid:
+ - 304E6FA9DA946D0E3CA963F1DB9B6CE9
+ X-Msapi-Userstate:
+ - '5903'
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 2BCBF156BAD3465B8712A806430E1716 Ref B: BAYEDGE0321 Ref C: 2018-08-27T00:01:02Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:01 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8DCBFB2D735246EA8A7FE31C293319D5&CID=304E6FA9DA946D0E3CA963F1DB9B6CE9&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8DCBFB2D735246EA8A7FE31C293319D5&CID=304E6FA9DA946D0E3CA963F1DB9B6CE9&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:02 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/results/1_3_4_1_1.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/results/1_3_4_1_1.yml
index 98877ca4a3..22f1e46858 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/results/1_3_4_1_1.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_response_contains_empty_results/results/1_3_4_1_1.yml
@@ -70,4 +70,74 @@ http_interactions:
"rankingResponse": {}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:20 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=mango%20smoothie%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '242'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:01 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=1E66F4A55FE161931572F8FD5EEE6076; path=/; expires=Sat, 21-Sep-2019 00:01:01
+ GMT; domain=bingapis.com
+ - MUIDB=1E66F4A55FE161931572F8FD5EEE6076; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:01 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:01 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=7A5C8B3DA27C473589CA8EA7F9F966A7&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:01 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:01
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=3B30FB6EBE626D7802B9F736BF6D6C68; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:01 GMT; domain=bingapis.com
+ - _SS=SID=3B30FB6EBE626D7802B9F736BF6D6C68; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 296A86B2379C4060A9F37ABA2C0A2405
+ X-Msedge-Clientid:
+ - 1E66F4A55FE161931572F8FD5EEE6076
+ X-Msapi-Userstate:
+ - 9cd4
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 296A86B2379C4060A9F37ABA2C0A2405 Ref B: BAYEDGE0113 Ref C: 2018-08-27T00:01:01Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:01 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=6CC5DD15B1CA4C938E86D4A360466569&CID=1E66F4A55FE161931572F8FD5EEE6076&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=6CC5DD15B1CA4C938E86D4A360466569&CID=1E66F4A55FE161931572F8FD5EEE6076&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:01 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml
index 87a27dcf0a..1da6fa67ab 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/highlights_title_and_content.yml
@@ -136,4 +136,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:19 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=educaci%C3%B3n%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1624'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:01 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2CA71B7060416D1D126B1728614E6C15; path=/; expires=Sat, 21-Sep-2019 00:01:01
+ GMT; domain=bingapis.com
+ - MUIDB=2CA71B7060416D1D126B1728614E6C15; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:01 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:01 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=94D3DE7FFF7E46EEA597530840697F6A&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:01 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:01
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2C483313F29666A527443F4BF399677C; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:01 GMT; domain=bingapis.com
+ - _SS=SID=2C483313F29666A527443F4BF399677C; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - F5A19B53945749C289FBD708328F2018
+ X-Msedge-Clientid:
+ - 2CA71B7060416D1D126B1728614E6C15
+ X-Msapi-Userstate:
+ - b26b
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: F5A19B53945749C289FBD708328F2018 Ref B: BAYEDGE0316 Ref C: 2018-08-27T00:01:01Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:00 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=024DB336C49A48AC9C9D2D4A646F4099&CID=2CA71B7060416D1D126B1728614E6C15&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=024DB336C49A48AC9C9D2D4A646F4099&CID=2CA71B7060416D1D126B1728614E6C15&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=educaci%c3%b3n+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5253.1", "totalEstimatedMatches": 130, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Recursos
+ para la educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5053.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Información del Gobierno sobre ayuda para estudiantes y personas
+ que quieren aprender inglés.", "dateLastCrawled": "2018-08-18T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Recursos
+ educativos | USAGov", "url": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "snippet": "El Departamento de Educación cuenta con recursos e información
+ útil y práctica para todas las fases de la educación, ...", "dateLastCrawled":
+ "2018-08-13T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Ayuda financiera para estudiantes | USAGov", "url": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "urlPingSuffix": "DevEx,5081.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "snippet": "Becas, productos financieros y programas del Gobierno para la
+ educación superior.", "dateLastCrawled": "2018-08-19T20:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Departamento
+ de Educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "snippet": "Directory listing for Departamento de Educación. El dominio
+ .gov significa que es oficial. Los sitios del Gobierno federal frecuentemente
+ terminan en dominios .gov o .mil.", "dateLastCrawled": "2018-08-18T04:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Créditos
+ tributarios | USAGov", "url": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "urlPingSuffix": "DevEx,5111.1", "displayUrl": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "snippet": "Un crédito tributario por educación ayuda a reducir la cantidad
+ de impuestos adeudados en su declaración. Si el crédito reduce su impuesto
+ a menos de cero, ...", "dateLastCrawled": "2018-08-20T00:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Comisión
+ Federal de Educación Financiera | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de-educacion-financiera",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de...",
+ "snippet": "Directory listing for Comisión Federal de Educación Financiera",
+ "dateLastCrawled": "2018-08-20T11:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Cómo obtener la residencia permanente | USAGov", "url": "https:\/\/gobierno.usa.gov\/residencia-permanente",
+ "urlPingSuffix": "DevEx,5140.1", "displayUrl": "https:\/\/gobierno.usa.gov\/residencia-permanente",
+ "snippet": "Debe cumplir con el requisito de educación y\/o experiencia
+ laboral. Se piden 12 años completos y satisfactorios de educación primaria
+ y secundaria, ...", "dateLastCrawled": "2018-08-15T14:48:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "C | Agencias
+ y Departamentos del Gobierno Federal | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "urlPingSuffix": "DevEx,5155.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "snippet": "Centro de Información del Departamento de Educación; Centro
+ de Información sobre el Bienestar de Menores; Centro de Políticas y Promoción
+ de la Nutrición;", "dateLastCrawled": "2018-07-31T14:46:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Empleo y capacitación
+ laboral | USAGov", "url": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "Ver un listado de trabajos y oficios, sus descripciones, salarios
+ medios y el tipo de educación o capacitación que requieren.", "dateLastCrawled":
+ "2018-08-13T01:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5181.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-08-18T14:27:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:01 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/returns_results.yml b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/returns_results.yml
index f6ca8dd98b..b585119597 100644
--- a/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/returns_results.yml
+++ b/spec/vcr_cassettes/ApiBingSearch/_run/when_the_site_locale_is_es/returns_results.yml
@@ -136,4 +136,140 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
recorded_at: Mon, 02 Jul 2018 21:49:19 GMT
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=0&q=educaci%C3%B3n%20(site:usa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - my_api_key
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '1624'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Mon, 27 Aug 2018 00:00:00 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=2AD7556132C368520BA9593933CC6928; path=/; expires=Sat, 21-Sep-2019 00:01:00
+ GMT; domain=bingapis.com
+ - MUIDB=2AD7556132C368520BA9593933CC6928; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:00 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:00 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=83F5A4356B8A4A00A0602837BFFAD216&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:00 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:00
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=2026CF2B248763051842C37325886261; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:00 GMT; domain=bingapis.com
+ - _SS=SID=2026CF2B248763051842C37325886261; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - FEAD411339FD4824937969EB4FD6EC98
+ X-Msedge-Clientid:
+ - 2AD7556132C368520BA9593933CC6928
+ X-Msapi-Userstate:
+ - be42
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: FEAD411339FD4824937969EB4FD6EC98 Ref B: BAYEDGE0322 Ref C: 2018-08-27T00:01:00Z'
+ Date:
+ - Mon, 27 Aug 2018 00:01:00 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=EE60B5D7D74A48BE96583C23C0DAFBCA&CID=2AD7556132C368520BA9593933CC6928&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=EE60B5D7D74A48BE96583C23C0DAFBCA&CID=2AD7556132C368520BA9593933CC6928&Type=Event.CPT&DATA=0"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=educaci%c3%b3n+(site%3ausa.gov)",
+ "webSearchUrlPingSuffix": "DevEx,5253.1", "totalEstimatedMatches": 130, "value":
+ [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name": "Recursos
+ para la educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/educacion",
+ "urlPingSuffix": "DevEx,5053.1", "displayUrl": "https:\/\/gobierno.usa.gov\/educacion",
+ "snippet": "Información del Gobierno sobre ayuda para estudiantes y personas
+ que quieren aprender inglés.", "dateLastCrawled": "2018-08-18T18:35:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Recursos
+ educativos | USAGov", "url": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "urlPingSuffix": "DevEx,5067.1", "displayUrl": "https:\/\/gobierno.usa.gov\/recursos-educativos",
+ "snippet": "El Departamento de Educación cuenta con recursos e información
+ útil y práctica para todas las fases de la educación, ...", "dateLastCrawled":
+ "2018-08-13T10:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Ayuda financiera para estudiantes | USAGov", "url": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "urlPingSuffix": "DevEx,5081.1", "displayUrl": "https:\/\/gobierno.usa.gov\/ayuda-financiera-para-estudiantes",
+ "snippet": "Becas, productos financieros y programas del Gobierno para la
+ educación superior.", "dateLastCrawled": "2018-08-19T20:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Departamento
+ de Educación | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "urlPingSuffix": "DevEx,5096.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/departamento-de-educacion",
+ "snippet": "Directory listing for Departamento de Educación. El dominio
+ .gov significa que es oficial. Los sitios del Gobierno federal frecuentemente
+ terminan en dominios .gov o .mil.", "dateLastCrawled": "2018-08-18T04:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Créditos
+ tributarios | USAGov", "url": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "urlPingSuffix": "DevEx,5111.1", "displayUrl": "https:\/\/gobierno.usa.gov\/creditos-tributarios",
+ "snippet": "Un crédito tributario por educación ayuda a reducir la cantidad
+ de impuestos adeudados en su declaración. Si el crédito reduce su impuesto
+ a menos de cero, ...", "dateLastCrawled": "2018-08-20T00:16:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Comisión
+ Federal de Educación Financiera | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de-educacion-financiera",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/comision-federal-de...",
+ "snippet": "Directory listing for Comisión Federal de Educación Financiera",
+ "dateLastCrawled": "2018-08-20T11:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Cómo obtener la residencia permanente | USAGov", "url": "https:\/\/gobierno.usa.gov\/residencia-permanente",
+ "urlPingSuffix": "DevEx,5140.1", "displayUrl": "https:\/\/gobierno.usa.gov\/residencia-permanente",
+ "snippet": "Debe cumplir con el requisito de educación y\/o experiencia
+ laboral. Se piden 12 años completos y satisfactorios de educación primaria
+ y secundaria, ...", "dateLastCrawled": "2018-08-15T14:48:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "C | Agencias
+ y Departamentos del Gobierno Federal | USAGov", "url": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "urlPingSuffix": "DevEx,5155.1", "displayUrl": "https:\/\/gobierno.usa.gov\/agencias-federales\/c",
+ "snippet": "Centro de Información del Departamento de Educación; Centro
+ de Información sobre el Bienestar de Menores; Centro de Políticas y Promoción
+ de la Nutrición;", "dateLastCrawled": "2018-07-31T14:46:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Empleo y capacitación
+ laboral | USAGov", "url": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "urlPingSuffix": "DevEx,5169.1", "displayUrl": "https:\/\/gobierno.usa.gov\/empleo-capacitacion-laboral",
+ "snippet": "Ver un listado de trabajos y oficios, sus descripciones, salarios
+ medios y el tipo de educación o capacitación que requieren.", "dateLastCrawled":
+ "2018-08-13T01:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Guía oficial de información y servicios del Gobierno | USAGov", "url":
+ "https:\/\/gobierno.usa.gov\/", "urlPingSuffix": "DevEx,5181.1", "about":
+ [{"name": "GobiernoUSA.gov"}], "displayUrl": "https:\/\/gobierno.usa.gov",
+ "snippet": "Página principal de GobiernoUSA.gov, el portal oficial del Gobierno
+ de Estados Unidos en español.", "dateLastCrawled": "2018-08-18T14:27:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Mon, 27 Aug 2018 00:01:00 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/api_legacy_image_search/when_the_affiliate_has_no_bing/google_results.yml b/spec/vcr_cassettes/api_legacy_image_search/when_the_affiliate_has_no_bing/google_results.yml
index 2d1d116d3f..6dad323e47 100644
--- a/spec/vcr_cassettes/api_legacy_image_search/when_the_affiliate_has_no_bing/google_results.yml
+++ b/spec/vcr_cassettes/api_legacy_image_search/when_the_affiliate_has_no_bing/google_results.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=unusual%20image%20(site:nonsense.gov)&safeSearch=moderate&traffictype=test
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q=unusual%20image%20(site:nonsense.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -39,34 +37,34 @@ http_interactions:
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=393BCC208F376F6B351CC7FD8EA06EDF; path=/; expires=Tue, 21-May-2019 23:54:14
+ - MUID=256F4FF899CF63A80DA743A098C0621B; path=/; expires=Sat, 21-Sep-2019 00:01:20
GMT; domain=bingapis.com
- - MUIDB=393BCC208F376F6B351CC7FD8EA06EDF; path=/; httponly; expires=Tue, 21-May-2019
- 23:54:14 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:54:14 GMT;
+ - MUIDB=256F4FF899CF63A80DA743A098C0621B; path=/; httponly; expires=Sat, 21-Sep-2019
+ 00:01:20 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:20 GMT;
path=/
- - SRCHUID=V=2&GUID=66196247E9914F109C6D26BC33B37029&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:54:14 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:54:14
+ - SRCHUID=V=2&GUID=34189F877E0E48A28418E0B743F82F3D&dmnchg=1; domain=.bingapis.com;
+ expires=Thu, 27-Aug-2020 00:01:20 GMT; path=/
+ - SRCHUSR=DOB=20180827; domain=.bingapis.com; expires=Thu, 27-Aug-2020 00:01:20
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=35163DA38E496A3738B0367E8FDE6BE0; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=30147E5692456DB105F2720E934A6C2C; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:54:14 GMT; domain=bingapis.com
- - _SS=SID=35163DA38E496A3738B0367E8FDE6BE0; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Sat, 21-Sep-2019 00:01:20 GMT; domain=bingapis.com
+ - _SS=SID=30147E5692456DB105F2720E934A6C2C; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 10907DBF63F24D01B010E25A2BB89616
+ - 586E4DC9E8E044AFB5EBFAFA0846F6DC
X-Msedge-Clientid:
- - 393BCC208F376F6B351CC7FD8EA06EDF
+ - 256F4FF899CF63A80DA743A098C0621B
X-Msapi-Userstate:
- - ea0e
+ - 6a17
X-Msedge-Ref:
- - 'Ref A: 10907DBF63F24D01B010E25A2BB89616 Ref B: CO1EDGE0211 Ref C: 2018-04-26T23:54:14Z'
+ - 'Ref A: 586E4DC9E8E044AFB5EBFAFA0846F6DC Ref B: BAYEDGE0313 Ref C: 2018-08-27T00:01:20Z'
Date:
- - Thu, 26 Apr 2018 23:54:13 GMT
+ - Mon, 27 Aug 2018 00:01:20 GMT
body:
encoding: UTF-8
- string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=7BF29AF835D94302B050A0021CF9343C&CID=393BCC208F376F6B351CC7FD8EA06EDF&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=7BF29AF835D94302B050A0021CF9343C&CID=393BCC208F376F6B351CC7FD8EA06EDF&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=397014E02E624C6395A644306A7091F8&CID=256F4FF899CF63A80DA743A098C0621B&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=397014E02E624C6395A644306A7091F8&CID=256F4FF899CF63A80DA743A098C0621B&Type=Event.CPT&DATA=0"},
"value": [], "queryExpansions": [{"text": "Unusual Bird Images", "displayText":
"Bird", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Unusual+Bird+Images&tq=%7b%22pq%22%3a%22unusual+image+(site%3anonsense.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22unusual%22%2c%22pv%22%3a%22unusual%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22image%22%2c%22pv%22%3a%22image%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anonsense.gov)%22%2c%22pv%22%3a%22(site%3anonsense.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bird%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
"webSearchUrlPingSuffix": "DevEx,5062.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Unusual+Bird+Images&tq=%7b%22pq%22%3a%22unusual+image+(site%3anonsense.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22unusual%22%2c%22pv%22%3a%22unusual%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22image%22%2c%22pv%22%3a%22image%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anonsense.gov)%22%2c%22pv%22%3a%22(site%3anonsense.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bird%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
@@ -214,5 +212,5 @@ http_interactions:
"pivotSuggestions": [{"pivot": "unusual", "suggestions": []}, {"pivot": "image",
"suggestions": []}, {"pivot": "(site:nonsense.gov)", "suggestions": []}]}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:54:14 GMT
+ recorded_at: Mon, 27 Aug 2018 00:01:20 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v5_image_engine/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml b/spec/vcr_cassettes/bing_v5_image_engine/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
new file mode 100644
index 0000000000..5ba7fd12ce
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v5_image_engine/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
@@ -0,0 +1,47 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v5.0/images/search?count=20&mkt=en-US&offset=0&q&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - b1rd1sth3p4ssw0rd
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 401
+ message: Access Denied
+ headers:
+ Content-Length:
+ - '143'
+ Content-Type:
+ - application/json
+ Apim-Request-Id:
+ - 5025d8fa-650b-4be7-9983-7142b91a943f
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Www-Authenticate:
+ - AzureApiManagementKey realm="https://api.cognitive.microsoft.com/bing/v5.0/images",name="Ocp-Apim-Subscription-Key",type="header"
+ Date:
+ - Fri, 31 Aug 2018 21:46:10 GMT
+ body:
+ encoding: UTF-8
+ string: '{ "statusCode": 401, "message": "Access denied due to invalid subscription
+ key. Make sure to provide a valid key for an active subscription." }'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:46:10 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v5_image_engine_execute_query.yml b/spec/vcr_cassettes/bing_v5_image_engine_execute_query.yml
index 22f856e1c6..ce20c32150 100644
--- a/spec/vcr_cassettes/bing_v5_image_engine_execute_query.yml
+++ b/spec/vcr_cassettes/bing_v5_image_engine_execute_query.yml
@@ -2,7 +2,7 @@
http_interactions:
- request:
method: get
- uri: https://api.cognitive.microsoft.com/bing/v5.0/images/search?count=10&mkt=en-US&offset=20&q=whitehouse%20dog&safeSearch=Moderate
+ uri: https://api.cognitive.microsoft.com/bing/v5.0/images/search?count=10&mkt=en-US&offset=20&q=whitehouse%20dog&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
@@ -18,387 +18,373 @@ http_interactions:
Connection:
- keep-alive
Keep-Alive:
- - 30
+ - '30'
response:
status:
code: 200
message: OK
headers:
Cache-Control:
- - no-cache, no-store, must-revalidate
- Pragma:
- - no-cache
+ - private, no-store, must-revalidate, no-cache
Content-Length:
- - '106087'
+ - '106373'
Content-Type:
- application/json; charset=utf-8
Expires:
- "-1"
Vary:
- Accept-Encoding
- Server:
- - Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Bingapis-Traceid:
- - 80C75111843145A58A8F52531D94BAFA
- X-Msedge-Clientid:
- - 24DCC782ABC967E42BDECD3DAACF660E
+ - D91C0A2A6CEB4BF2A347E07E8EDB9104
X-Msapi-Userstate:
- - 4fbb
+ - 6a3f
+ X-Msedge-Clientid:
+ - 25BB299408C26F8939EC25C3093F6EBD
X-Msedge-Ref:
- - 'Ref A: 80C75111843145A58A8F52531D94BAFA Ref B: BL2EDGE0508 Ref C: Fri Jul
- 14 09:19:13 2017 PST'
+ - 'Ref A: D91C0A2A6CEB4BF2A347E07E8EDB9104 Ref B: BLUEDGE0814 Ref C: 2018-08-26T23:58:43Z'
Apim-Request-Id:
- - a89633b9-31da-43f1-837a-b2e5917ebbbc
+ - db72dd2e-5ff8-49bf-b0fc-901751d8cd2c
Strict-Transport-Security:
- max-age=31536000; includeSubDomains; preload
X-Content-Type-Options:
- nosniff
Date:
- - Fri, 14 Jul 2017 16:19:12 GMT
+ - Sun, 26 Aug 2018 23:58:43 GMT
body:
encoding: UTF-8
- string: '{"_type": "Images", "instrumentation": {"pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&Type=Event.CPT&DATA=0"},
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=h2ZyAgxAOdpUnjsDIODg8u95MGU74c47mEUoW61mXtA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dwhitehouse%2520dog%26FORM%3dOIIARP&p=DevEx,5111.1",
- "totalEstimatedMatches": 114, "value": [{"name": "White House Tweets ''Mean
- Girls'' Joke About Bo The Dog", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=5mIf81KFiu6Jbaqzsy54yjyEKJ2fVgTzjSUSKzRFaoE&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dCA59B4DB5255D78FEF7385C860111FDAA4AE289D%26simid%3d608010677427178932&p=DevEx,5006.1",
- "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.r05Pp0Rvjxwn63HRl-FrIAEsCo&pid=Api",
- "datePublished": "2016-01-25T12:00:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=ND2Gkui6WP9rbSfai8lQTM7H_59zLPPywzI0t0Pag0c&v=1&r=http%3a%2f%2fa.abcnews.com%2fimages%2fEntertainment%2fht_bo_obama_kb_130813_16x9_992.jpg&p=DevEx,5008.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=w3fzyZCxAxc6o5raU9HTzx05l9Nfa7G7abpXkuN1yT4&v=1&r=http%3a%2f%2fabcnews.go.com%2ftopics%2fnews%2fwhitehouse%2ffirst-dog-bo.htm&p=DevEx,5007.1",
- "contentSize": "101224 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "abcnews.go.com\/topics\/news\/whitehouse\/first-dog-bo.htm", "width": 992,
- "height": 558, "thumbnail": {"width": 300, "height": 168}, "imageInsightsToken":
- "ccid_r05Pp0Rv*mid_CA59B4DB5255D78FEF7385C860111FDAA4AE289D*simid_608010677427178932",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "CA59B4DB5255D78FEF7385C860111FDAA4AE289D", "accentColor":
- "6F391E"}, {"name": "Dogs of the White House – Millie · LUHAD", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=PfZ7EamX4a2xMs-FBflRHqPIj8uaBsvsmovB0OYu1W8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dDC0194C87427F5FF566DB402ECDBF266F87E3DAC%26simid%3d608023308945392806&p=DevEx,5012.1",
- "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.d4Q71xKwYtHHF_TSl59GsAEsCU&pid=Api",
- "datePublished": "2015-12-23T08:20:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=UHFhVQwH7I94EfesYhq8PhBjsNhCkPMioS6JgUvZu8c&v=1&r=http%3a%2f%2fwww.letushaveadog.com%2fwp-content%2fuploads%2f2015%2f11%2fLUHAD-Millie.jpg&p=DevEx,5014.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=2jfymADEg_6gcj3h2m-2AnylJ9sFdbTQUEEUoxvJiic&v=1&r=http%3a%2f%2fwww.letushaveadog.com%2fmillie%2f&p=DevEx,5013.1",
+ string: '{"_type": "Images", "instrumentation": {"pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&Type=Event.CPT&DATA=0"},
+ "readLink": "images\/search?q=whitehouse dog", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=whitehouse
+ dog&FORM=OIIARP", "totalEstimatedMatches": 133, "value": [{"name": "National
+ dog day: A look at US presidents and their dogs ...", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=SEKBTwzGK27Pk-M7AYTI5zaknvsK4_ynlUsjUuVcAJA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dF9D630BE26F4E6659280003A391E86A4D6B343D3%26simid%3d608006121393948776&p=DevEx.LB.1,5025.1",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.XjpwSakBgY6HWi-CE_DdlgHaEK&pid=Api",
+ "datePublished": "2016-08-26T12:00:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=bIA-epT7j_iJa-yLCdM1dCoMspeGqgYjKiF6sVKa6yI&v=1&r=https%3a%2f%2fcdn.cnn.com%2fcnnnext%2fdam%2fassets%2f160826113944-white-house-dogs-26-super-169.jpg&p=DevEx.LB.1,5027.1",
+ "hostPageUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=K1NnMhlWA_Gk6SU9ukJDkHV3CJdEHC-X4HDrfwx0NhY&v=1&r=https%3a%2f%2fwww.cnn.com%2f2016%2f08%2f26%2fpolitics%2fnational-dog-day-white-house-dogs%2findex.html&p=DevEx.LB.1,5026.1",
+ "contentSize": "107639 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.cnn.com\/2016\/08\/26\/politics\/national-dog-day-white...",
+ "width": 1100, "height": 619, "thumbnail": {"width": 474, "height": 266},
+ "imageInsightsToken": "ccid_XjpwSakB*mid_F9D630BE26F4E6659280003A391E86A4D6B343D3*simid_608006121393948776*thid_OIP.XjpwSakBgY6HWi-CE!_DdlgHaEK",
+ "imageId": "F9D630BE26F4E6659280003A391E86A4D6B343D3", "accentColor": "4F5B36"},
+ {"name": "National dog day: A look at US presidents and their dogs ...", "webSearchUrl":
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=w2sB4XC1spXwGgNlAxWk4kom1QRy4f12ftp1PFQ8Qds&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d6E0CEBCB2ABB68994BBEF2033CFFA4295B9F6800%26simid%3d608030297769246905&p=DevEx.LB.1,5031.1",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.JhRcBWILz_Zx7GGYHI6GhgHaEK&pid=Api",
+ "datePublished": "2016-08-27T12:00:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=QVH4Z1m9cS-0H9wTgLhefFvXzrTEbO_LXV6LKi_pCUk&v=1&r=http%3a%2f%2fcdn.cnn.com%2fcnnnext%2fdam%2fassets%2f160826075829-white-house-dogs-3-super-169.jpg&p=DevEx.LB.1,5033.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=_DmAkmCfN6bxTaCzQ0TcKFkrXySTPnwbpfkvnSSTnIA&v=1&r=http%3a%2f%2fwww.cnn.com%2f2016%2f08%2f26%2fpolitics%2fnational-dog-day-white-house-dogs%2findex.html&p=DevEx.LB.1,5032.1",
+ "contentSize": "151241 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.cnn.com\/2016\/08\/26\/politics\/national-dog-day-white-house-dogs...",
+ "width": 1100, "height": 619, "thumbnail": {"width": 474, "height": 266},
+ "imageInsightsToken": "ccid_JhRcBWIL*mid_6E0CEBCB2ABB68994BBEF2033CFFA4295B9F6800*simid_608030297769246905*thid_OIP.JhRcBWILz!_Zx7GGYHI6GhgHaEK",
+ "imageId": "6E0CEBCB2ABB68994BBEF2033CFFA4295B9F6800", "accentColor": "666666"},
+ {"name": "Dogs of the White House: The Presidential Pet Museum - My ...",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=yTR_T5ECAkufFTNH85EfgUPmBTvvWzag6SKmUo_rpOs&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d3D293FBC4A02112F84ED6CA397498F326AD0513B%26simid%3d608038840494785645&p=DevEx.LB.1,5037.1",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.JELbT4YVABtOqLbAtdwmwgHaFd&pid=Api",
+ "datePublished": "2018-07-04T09:04:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=D69ZMzTr4QDTeBY8EMTVN1R12xC6xQQMxOd224hQk_M&v=1&r=http%3a%2f%2fmykidhaspaws.org%2fwp-content%2fuploads%2f2014%2f02%2fbush-puppies.png&p=DevEx.LB.1,5039.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=BdQxudXOtXpeMhgbBdF0MBnfhiovrh6VaRciYKEuII4&v=1&r=http%3a%2f%2fmykidhaspaws.org%2f2014%2f02%2fdogs-of-the-white-house-the-presidential-pet-museum%2f&p=DevEx.LB.1,5038.1",
+ "contentSize": "307486 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "mykidhaspaws.org\/2014\/02\/dogs-of-the-white-house-the-presidential...",
+ "width": 470, "height": 347, "thumbnail": {"width": 474, "height": 349}, "imageInsightsToken":
+ "ccid_JELbT4YV*mid_3D293FBC4A02112F84ED6CA397498F326AD0513B*simid_608038840494785645*thid_OIP.JELbT4YVABtOqLbAtdwmwgHaFd",
+ "imageId": "3D293FBC4A02112F84ED6CA397498F326AD0513B", "accentColor": "80754B"},
+ {"name": "Dogs in the White House: Photos of Presidential Pets ...", "webSearchUrl":
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=d9SU7-he2Jzcd0cw4ZdN_GyTO-qkPa13VGkoVaTqJ0w&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dEFE870EE95367AD0D8EB913335E15BD83116C69F%26simid%3d607988623696465670&p=DevEx.LB.1,5043.1",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.P84sBRLOS0S1genLxkinwQHaEs&pid=Api",
+ "datePublished": "2018-06-15T14:49:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=jNNWb8HClSNH8y60oRW6bz4NB5MCELIPF5dYrf6R3gc&v=1&r=https%3a%2f%2ftimedotcom.files.wordpress.com%2f2016%2f09%2fpresidential-dogs-04.jpg%3fquality%3d85%26w%3d838&p=DevEx.LB.1,5045.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=zBQ0GWPsi1G_a4SXZ34wNtnIBz9L9ZyDlNjn7eIVDFM&v=1&r=http%3a%2f%2ftime.com%2f4501397%2fwhite-house-first-dogs%2f&p=DevEx.LB.1,5044.1",
+ "contentSize": "63224 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "time.com\/4501397\/white-house-first-dogs", "width": 838, "height": 532,
+ "thumbnail": {"width": 474, "height": 300}, "imageInsightsToken": "ccid_P84sBRLO*mid_EFE870EE95367AD0D8EB913335E15BD83116C69F*simid_607988623696465670*thid_OIP.P84sBRLOS0S1genLxkinwQHaEs",
+ "imageId": "EFE870EE95367AD0D8EB913335E15BD83116C69F", "accentColor": "36302D"},
+ {"name": "Dogs of the White House – Millie · LUHAD", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=ASe9dGSMd1-KATYsBD7UlpJ0AbMqOBAXNgLWT9VGMPQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dDC0194C87427F5FF566DB402ECDBF266F87E3DAC%26simid%3d608023309883409431&p=DevEx.LB.1,5049.1",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.d4Q71xKwYtHHF_TSl59GsAHaDq&pid=Api",
+ "datePublished": "2015-12-23T08:20:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=UHFhVQwH7I94EfesYhq8PhBjsNhCkPMioS6JgUvZu8c&v=1&r=http%3a%2f%2fwww.letushaveadog.com%2fwp-content%2fuploads%2f2015%2f11%2fLUHAD-Millie.jpg&p=DevEx.LB.1,5051.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=2jfymADEg_6gcj3h2m-2AnylJ9sFdbTQUEEUoxvJiic&v=1&r=http%3a%2f%2fwww.letushaveadog.com%2fmillie%2f&p=DevEx.LB.1,5050.1",
"contentSize": "264899 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
"www.letushaveadog.com\/millie", "width": 1280, "height": 632, "thumbnail":
- {"width": 300, "height": 148}, "imageInsightsToken": "ccid_d4Q71xKw*mid_DC0194C87427F5FF566DB402ECDBF266F87E3DAC*simid_608023308945392806",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "DC0194C87427F5FF566DB402ECDBF266F87E3DAC", "accentColor":
- "4C6527"}, {"name": "... White House in Washington, D.C., on May 17, 2014.
- Photo By Jonathan", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=579JLqdKsH9_fV0qDMF8dsOQoRMyA8gkI06bRumSbj0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d6017380F2ADA8D606B8F87180D8207B4523C02AC%26simid%3d607990104538350473&p=DevEx,5018.1",
- "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP._GliWpKbpCjgQy7ZIIMwiQEsDF&pid=Api",
- "datePublished": "2016-05-29T15:38:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=cU4azi0AXtwa-LrJY_Jae6IqtEXCVWft8AT3OQBtPV0&v=1&r=https%3a%2f%2fd3i6fh83elv35t.cloudfront.net%2fnewshour%2fwp-content%2fuploads%2f2016%2f05%2fRTR3PLDN-1024x673.jpg&p=DevEx,5020.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=efXf3qzlbL6tcAYoClOlLVQGmuxogAlfPcDhKrB8cN4&v=1&r=http%3a%2f%2fwww.pbs.org%2fnewshour%2frundown%2fpresidential-pups-bo-and-sunny-have-official-white-house-schedules%2f&p=DevEx,5019.1",
- "contentSize": "114974 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "www.pbs.org\/newshour\/rundown\/presidential-pups-bo-and-sunny-have...",
- "width": 1024, "height": 673, "thumbnail": {"width": 300, "height": 197},
- "imageInsightsToken": "ccid_\/GliWpKb*mid_6017380F2ADA8D606B8F87180D8207B4523C02AC*simid_607990104538350473",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "6017380F2ADA8D606B8F87180D8207B4523C02AC", "accentColor":
- "2A5CA1"}, {"name": "The White House Debuts The Obamas'' New Dog Bo, A Portuguese
- Water Dog", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=fQ_Dth3TGkpl8hE2IihPhDOCplwovH7O8lsQ4lEe_qE&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d8E5DC4E2B1DAE5DB2E9A7A18427206AEFE7CC7F9%26simid%3d608052823943545393&p=DevEx,5024.1",
- "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.LZhHPVimGyyn7xIhcxn9egEsDI&pid=Api",
- "datePublished": "2017-06-23T13:02:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=TjLmuferhVHgtkUGuXWI8IH-SHcNDbes-NwdldANbZA&v=1&r=http%3a%2f%2fwww3.pictures.gi.zimbio.com%2fWhite%2bHouse%2bDebuts%2bObamas%2bNew%2bDog%2bBo%2bPortuguese%2bS9wLO3DZqb1l.jpg&p=DevEx,5026.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=gvOmlh6_VJseAKwE3WkjJETKsEKThiwsIKblrBhWyMg&v=1&r=http%3a%2f%2fwww.zimbio.com%2fBo%2bObama%2farticles%2f5%2fPrez%2bSays%2bBo%2bObama%2bStar%2bQuality&p=DevEx,5025.1",
+ {"width": 474, "height": 234}, "imageInsightsToken": "ccid_d4Q71xKw*mid_DC0194C87427F5FF566DB402ECDBF266F87E3DAC*simid_608023309883409431*thid_OIP.d4Q71xKwYtHHF!_TSl59GsAHaDq",
+ "imageId": "DC0194C87427F5FF566DB402ECDBF266F87E3DAC", "accentColor": "4C6527"},
+ {"name": "Getting Some Dog Love When You Can’t Own a Dog | Laurie March",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=tSPXG2JIXJe0kTwSOUT8ItYfwS2_lZSE4USg4EWJpLU&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d4F09182C739B68CD8553E86810C910079F8FD01A%26simid%3d608023284106005782&p=DevEx.LB.1,5055.1",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.NpeGMBEpmIBEQ9I0u3eRqQHaE9&pid=Api",
+ "datePublished": "2018-07-16T18:58:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=WzNqmsyw8_DPOSR_mpw3wNCdbXPOURxWnSTAFwJfMW0&v=1&r=http%3a%2f%2fwww.lauriemarchhome.com%2fwp-content%2fuploads%2f2016%2f01%2fhappy-dog-ryan-whitehouse.jpg&p=DevEx.LB.1,5057.1",
+ "hostPageUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=ZI2sA9oxhWynyet60VLxCznbrK2Qi915aDJ6mxrBKMs&v=1&r=https%3a%2f%2fwww.lauriemarchhome.com%2fgetting-some-dog-love-when-you-cant-own-a-dog%2f&p=DevEx.LB.1,5056.1",
+ "contentSize": "66261 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.lauriemarchhome.com\/getting-some-dog-love-when-you-cant...",
+ "width": 900, "height": 602, "thumbnail": {"width": 474, "height": 317}, "imageInsightsToken":
+ "ccid_NpeGMBEp*mid_4F09182C739B68CD8553E86810C910079F8FD01A*simid_608023284106005782*thid_OIP.NpeGMBEpmIBEQ9I0u3eRqQHaE9",
+ "imageId": "4F09182C739B68CD8553E86810C910079F8FD01A", "accentColor": "0E5BBD"},
+ {"name": "white house guard dogs - 28 images - canine heroes with ...", "webSearchUrl":
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=pYeuj9XFs2PzY4Fw-cwao0abbh_Kq2VpS0eyNg-ihxE&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d84522558D89AA5722A5D9A6F98D35D55415AB1BA%26simid%3d608008032676479189&p=DevEx.LB.1,5061.1",
+ "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.XrLGwarXNdOXJQNVabaZKQHaEm&pid=Api",
+ "datePublished": "2018-06-08T08:45:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=Oj9tAlOauGfKmQC3I8zjTIyzdXgwCGk_Yl5Bsi90tb0&v=1&r=https%3a%2f%2fi.embed.ly%2f1%2fdisplay%2fresize%3fkey%3d1e6a1a1efdb011df84894040444cdc60%26url%3dhttp%253A%252F%252Fwww.washingtonpost.com%252Frf%252Fimage_2048w%252F2010-2019%252FWashingtonPost%252F2014%252F09%252F24%252FNational-Politics%252FImages%252FWhite_House_Security-0cd2d.jpg&p=DevEx.LB.1,5063.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=R6HtdW8hAMgqcrAWBCvVF3yju5I9j2wj9Aqi3iAuEMA&v=1&r=http%3a%2f%2fwww.rockhouseinndulverton.com%2fwhite-house-guard-dogs.html&p=DevEx.LB.1,5062.1",
+ "contentSize": "439510 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.rockhouseinndulverton.com\/white-house-guard-dogs.html", "width": 2048,
+ "height": 1271, "thumbnail": {"width": 474, "height": 294}, "imageInsightsToken":
+ "ccid_XrLGwarX*mid_84522558D89AA5722A5D9A6F98D35D55415AB1BA*simid_608008032676479189*thid_OIP.XrLGwarXNdOXJQNVabaZKQHaEm",
+ "imageId": "84522558D89AA5722A5D9A6F98D35D55415AB1BA", "accentColor": "74713D"},
+ {"name": "The White House Debuts The Obamas'' New Dog Bo, A ...", "webSearchUrl":
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=1_2uWT9At4i779xDNjme5X5C4d_K1j13Ipqq65hvdnc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dE6A305F1E806711DA2A07A18427206AEFE7CC7F9%26simid%3d608018057101904596&p=DevEx.LB.1,5067.1",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.LZhHPVimGyyn7xIhcxn9egHaE8&pid=Api",
+ "datePublished": "2010-04-06T19:04:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=TjLmuferhVHgtkUGuXWI8IH-SHcNDbes-NwdldANbZA&v=1&r=http%3a%2f%2fwww3.pictures.gi.zimbio.com%2fWhite%2bHouse%2bDebuts%2bObamas%2bNew%2bDog%2bBo%2bPortuguese%2bS9wLO3DZqb1l.jpg&p=DevEx.LB.1,5069.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=ojoAWkNjlXGFx_IuWtOKiC1GJ07cjuGVAoiCLzYFQB0&v=1&r=http%3a%2f%2fwww.zimbio.com%2fpictures%2fM9meu3FVGsk%2fWhite%2bHouse%2bDebuts%2bObamas%2bNew%2bDog%2bBo%2bPortuguese%2fS9wLO3DZqb1&p=DevEx.LB.1,5068.1",
"contentSize": "98649 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "www.zimbio.com\/Bo+Obama\/articles\/5\/Prez+Says+Bo+Obama+Star+Quality",
- "width": 594, "height": 397, "thumbnail": {"width": 300, "height": 200}, "imageInsightsToken":
- "ccid_LZhHPVim*mid_8E5DC4E2B1DAE5DB2E9A7A18427206AEFE7CC7F9*simid_608052823943545393",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "8E5DC4E2B1DAE5DB2E9A7A18427206AEFE7CC7F9", "accentColor":
- "788F3C"}, {"name": "the-whitehouse-dog", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=2PyG-8WiyAbBHJq3GEm7nRJW3Gar2fi4dH51LTa1RPg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d5CC287ACDCE2FEBDD45245D6F8D88BE4A8EB338F%26simid%3d608039518146332074&p=DevEx,5030.1",
- "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.S3qg_kcCGV9fm-2MPJCw-gEsDI&pid=Api",
- "datePublished": "2017-06-15T02:49:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=GbjhNutkqKpQ0EKIzx3gr0SGOora2NKEDdF0DQoXTjw&v=1&r=http%3a%2f%2fwww.ms-wheelchair-md.com%2fwp-content%2fgallery%2fwashington-dc-september-2007%2fthe-whitehouse-dog.jpg&p=DevEx,5032.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=5lPIuUVsxhaqMkPZOM9FUc-p9ve82THrayWBdw89FLg&v=1&r=http%3a%2f%2fwww.ms-wheelchair-md.com%2fon-the-road%2fwashington-dc-september-2007&p=DevEx,5031.1",
- "contentSize": "156709 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "www.ms-wheelchair-md.com\/on-the-road\/washington-dc-september-2007", "width":
- 600, "height": 400, "thumbnail": {"width": 300, "height": 200}, "imageInsightsToken":
- "ccid_S3qg\/kcC*mid_5CC287ACDCE2FEBDD45245D6F8D88BE4A8EB338F*simid_608039518146332074",
- "imageId": "5CC287ACDCE2FEBDD45245D6F8D88BE4A8EB338F", "accentColor": "2D3C9E"},
- {"name": "... Obama says the dogs both love attention. By: White House\/Flickr",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=yhXmXQJeKVhsZoElPvoeR-6u0WhVzcqXrjiM_t3K0T8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d0F718CDF9CF13F95642C689A86B27523EA540317%26simid%3d608007829855341771&p=DevEx,5036.1",
- "thumbnailUrl": "https:\/\/tse4.explicit.bing.net\/th?id=OIP.5gycBrDWBA_zeBsrA0LBDwEsDN&pid=Api",
- "datePublished": "2017-06-18T13:58:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=6cn4BWxHsy7rIPJ0VV9yuTLhV1W1lMyqr4VnadZg8KU&v=1&r=https%3a%2f%2fi2.wp.com%2fpresidentialpetmuseum.com%2fwp-content%2fuploads%2f2016%2f05%2fobama-dogs.png&p=DevEx,5038.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=Tl6LFFSUHyYfZIPeplyfDtdau-wPjgmCYiRH1DErgpw&v=1&r=http%3a%2f%2fpresidentialpetmuseum.com%2fblog%2ffirst-lady-loves-bo-and-sunny%2f&p=DevEx,5037.1",
- "contentSize": "3054097 B", "encodingFormat": "png", "hostPageDisplayUrl":
- "presidentialpetmuseum.com\/blog\/first-lady-loves-bo-and-sunny", "width":
- 1992, "height": 1364, "thumbnail": {"width": 300, "height": 205}, "imageInsightsToken":
- "ccid_5gycBrDW*mid_0F718CDF9CF13F95642C689A86B27523EA540317*simid_608007829855341771",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "0F718CDF9CF13F95642C689A86B27523EA540317", "accentColor":
- "31699A"}, {"name": "Bo Is Better Than Sunny, In WH Dogs - Business Insider",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=OMbVBgnwHAMbTPfJ4p1F17NvGEdUqU7Sf9R0zzhD4OE&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3dDEF964112890308EFB1FF0DB3083C46666E1DBC9%26simid%3d607999974374115655&p=DevEx,5042.1",
- "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.sVIIDsnk_xd7K3SSBqSz7gEsCW&pid=Api",
- "datePublished": "2017-05-13T10:59:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=GY8_tdVz2x6bGk9nWdDqNS1NEW68zConCJnNnC3X0mM&v=1&r=http%3a%2f%2fstatic4.businessinsider.com%2fimage%2f5213ca806bb3f7d82d00000e-1190-625%2f13-reasons-why-bo-is-still-the-only-white-house-dog-that-matters.jpg&p=DevEx,5044.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=Ey6iGFOKsNw1LJjLrt5rtN78jrRjfM2zqbzU29UWp6s&v=1&r=http%3a%2f%2fwww.businessinsider.com%2fbo-obama-sunny-dogs-puppies-white-house-2013-8&p=DevEx,5043.1",
- "contentSize": "62953 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "www.businessinsider.com\/bo-obama-sunny-dogs-puppies-white-house-2013-8",
- "width": 1024, "height": 512, "thumbnail": {"width": 300, "height": 150},
- "imageInsightsToken": "ccid_sVIIDsnk*mid_DEF964112890308EFB1FF0DB3083C46666E1DBC9*simid_607999974374115655",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "DEF964112890308EFB1FF0DB3083C46666E1DBC9", "accentColor":
- "8C3F89"}, {"name": "Bo Obama in the White House: That dog is adorable. Love
- Christmas ...", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=tAV1uFZL1MPlbmh-ccPSDNDEiwrPn8L_NL2RqDFkxlU&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d8640D2CA821C668E863F5AC226EECF987D54BC70%26simid%3d608026422777153160&p=DevEx,5048.1",
- "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.TTPPR6pYdDXAQ31scwZJbQDhEs&pid=Api",
- "datePublished": "2013-12-29T19:59:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=nS3pwCvNn5Hk9tKEEXAMSMxfWweHieJGvy3NiCRMta4&v=1&r=http%3a%2f%2fmedia-cache-ec0.pinimg.com%2f736x%2fc8%2f34%2f1a%2fc8341a63f0669faa876a1a283b24fdf9.jpg&p=DevEx,5050.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=U0sRWNVsjJXHsTyCXhIQ99T-6l7ImqKQOwx2KCHhPWE&v=1&r=http%3a%2f%2fpinterest.com%2fpin%2f182606959862650996%2f&p=DevEx,5049.1",
- "contentSize": "66410 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "pinterest.com\/pin\/182606959862650996", "width": 435, "height": 580, "thumbnail":
- {"width": 225, "height": 300}, "imageInsightsToken": "ccid_TTPPR6pY*mid_8640D2CA821C668E863F5AC226EECF987D54BC70*simid_608026422777153160",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "8640D2CA821C668E863F5AC226EECF987D54BC70", "accentColor":
- "7B402C"}, {"name": "Sunny, new companion to Bo in the White House dog house,
- strolls on ...", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=FLPqB2ZNVAWEZhXvsXhdQ7oD69uEwAcNNGacTW-xD4U&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d6EC23E29D1840955B6F0B40D9B6B48AA8F0B60C5%26simid%3d608055770294518697&p=DevEx,5054.1",
- "thumbnailUrl": "https:\/\/tse3.explicit.bing.net\/th?id=OIP.2YnjECUwUCO_kqn7dP3YCAEsCo&pid=Api",
- "datePublished": "2017-06-14T19:54:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=cp6qy-JflOusM6TLk0cUucXoho9-ktcPl5pY3sZGhB0&v=1&r=http%3a%2f%2fimages.huffingtonpost.com%2f2013-09-01-tumblr_mrswxpFi3r1s9dnijo1_500.gif&p=DevEx,5056.1",
- "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=WjQ6_f-tvnnE2U9MGdHvZPpJqbOBFTYVilkiw3DX1TA&v=1&r=http%3a%2f%2fwww.huffingtonpost.com%2falison-winfield-burns%2fwhite-house-scores-big-wi_b_3853459.html&p=DevEx,5055.1",
- "contentSize": "1017278 B", "encodingFormat": "animatedgif", "hostPageDisplayUrl":
- "www.huffingtonpost.com\/alison-winfield-burns\/white-house-scores-big...",
- "width": 450, "height": 253, "thumbnail": {"width": 300, "height": 168}, "imageInsightsToken":
- "ccid_2YnjECUw*mid_6EC23E29D1840955B6F0B40D9B6B48AA8F0B60C5*simid_608055770294518697",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "6EC23E29D1840955B6F0B40D9B6B48AA8F0B60C5", "accentColor":
- "AD1E3F"}, {"name": "... charles american presidents american history white
- houses the white", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=nP_O8XKAWUchv-p85aIvVQnx_Q-KlQXw-B30MIwcRqY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d78209498A9929128694E04BCCE73C27EFA23FCA3%26simid%3d608043976316554428&p=DevEx,5060.1",
- "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.nVDSCNmuuPkayarPiaAlaQDfEs&pid=Api",
- "datePublished": "2017-05-20T08:20:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=wg0Us5YV4PwZmdFXP_Njtn_GBp0ylrzxOZ0iKpuRsWg&v=1&r=https%3a%2f%2fs-media-cache-ak0.pinimg.com%2f736x%2f35%2fce%2fa8%2f35cea806c71911798e9576bf71eed713.jpg&p=DevEx,5062.1",
- "hostPageUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=EWRwXJVw5Ywom96pF0VrKozhhm-1eJiEkafTV9rt4q8&v=1&r=https%3a%2f%2fwww.pinterest.com%2fdloetscher%2fpresident-ronald-reagan%2f&p=DevEx,5061.1",
- "contentSize": "52418 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
- "https:\/\/www.pinterest.com\/dloetscher\/president-ronald-reagan", "width":
- 300, "height": 403, "thumbnail": {"width": 223, "height": 300}, "imageInsightsToken":
- "ccid_nVDSCNmu*mid_78209498A9929128694E04BCCE73C27EFA23FCA3*simid_608043976316554428",
- "insightsSourcesSummary": {"shoppingSourcesCount": 0, "recipeSourcesCount":
- 0}, "imageId": "78209498A9929128694E04BCCE73C27EFA23FCA3", "accentColor":
- "664628"}], "queryExpansions": [{"text": "Clinton White House Dog", "displayText":
- "Clinton", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=19c8f6EDuFZYdqH7TWdbEpj0ftLqa0sQ0VAll6cpmTU&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dClinton%2bWhite%2bHouse%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Clinton%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5115.1",
+ "www.zimbio.com\/pictures\/M9meu3FVGsk\/White+House+Debuts+Obamas+New...",
+ "width": 594, "height": 397, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_LZhHPVim*mid_E6A305F1E806711DA2A07A18427206AEFE7CC7F9*simid_608018057101904596*thid_OIP.LZhHPVimGyyn7xIhcxn9egHaE8",
+ "imageId": "E6A305F1E806711DA2A07A18427206AEFE7CC7F9", "accentColor": "788F3C"},
+ {"name": "Presidential pets: Adorable new book chronicles the pets ...", "webSearchUrl":
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=vfxPp8Kzhg_SIlxROeTpBma6RSLeQAVBSepHnoOKC6o&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d7A9900EC07CBA7C38DB9B552DA1818ED4A9ED6BF%26simid%3d608001066215540766&p=DevEx.LB.1,5073.1",
+ "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.5xsNjJI_PXfDz5-PBGFkNgHaE_&pid=Api",
+ "datePublished": "2012-11-03T06:48:00", "contentUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=wQxecyc25NwRNNyhRmoMgq4Lg486Ef5oxvd0Zm49iGE&v=1&r=http%3a%2f%2fi.dailymail.co.uk%2fi%2fpix%2f2012%2f11%2f03%2farticle-2227196-15D27A02000005DC-300_634x427.jpg&p=DevEx.LB.1,5075.1",
+ "hostPageUrl": "http:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=100aAla1LGCRZ2VdffQMGIVuoW_iZ1hXmpkG5fWZTIc&v=1&r=http%3a%2f%2fwww.dailymail.co.uk%2fnews%2farticle-2227196%2fPresidential-pets-Adorable-new-book-chronicles-pets-Americas-leaders-Obamas-dog-Bo-FDRs-terrier-Big-Boy-Calvin-Coolidges-pygmy-hippo.html&p=DevEx.LB.1,5074.1",
+ "contentSize": "110884 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.dailymail.co.uk\/news\/article-2227196\/Presidential-pets-Adorable...",
+ "width": 634, "height": 427, "thumbnail": {"width": 474, "height": 319}, "imageInsightsToken":
+ "ccid_5xsNjJI\/*mid_7A9900EC07CBA7C38DB9B552DA1818ED4A9ED6BF*simid_608001066215540766*thid_OIP.5xsNjJI!_PXfDz5-PBGFkNgHaE!_",
+ "imageId": "7A9900EC07CBA7C38DB9B552DA1818ED4A9ED6BF", "accentColor": "603932"},
+ {"name": "KN-18269. White House Dog, \"Pushinka\" - John F. Kennedy ...",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=0xYgWvrSME5MxPg7VmI_6pG3oc-sjtZhYsFNgQMv-gw&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fview%3ddetailv2%26FORM%3dOIIRPO%26q%3dwhitehouse%2bdog%26id%3d274FDF510EEBC35A3CE1F5C7E53C40F2E6BF5A01%26simid%3d608000065488945916&p=DevEx.LB.1,5079.1",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.I0dlPZvH-pgWOKXI-S2UFwHaJW&pid=Api",
+ "datePublished": "2018-03-14T23:27:00", "contentUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=9w99MoRK8npdyIgSZjF96WBMmYBRU3YJ_YdgmDEs21w&v=1&r=https%3a%2f%2farchive1.jfklibrary.org%2fJFKWHP%2f1961%2fMonth%252006%2fDay%252022%2fJFKWHP-1961-06-22-B%2fJFKWHP-KN-18269.jpg&p=DevEx.LB.1,5081.1",
+ "hostPageUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=kjG6upf7WNLxj-adgLTe_LOLEUM2Qb1SH_6Kuojx2oU&v=1&r=https%3a%2f%2fwww.jfklibrary.org%2fAsset-Viewer%2fArchives%2fJFKWHP-KN-18269.aspx&p=DevEx.LB.1,5080.1",
+ "contentSize": "255524 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.jfklibrary.org\/Asset-Viewer\/Archives\/JFKWHP-KN-18269.aspx",
+ "width": 792, "height": 1000, "thumbnail": {"width": 474, "height": 598},
+ "imageInsightsToken": "ccid_I0dlPZvH*mid_274FDF510EEBC35A3CE1F5C7E53C40F2E6BF5A01*simid_608000065488945916*thid_OIP.I0dlPZvH-pgWOKXI-S2UFwHaJW",
+ "imageId": "274FDF510EEBC35A3CE1F5C7E53C40F2E6BF5A01", "accentColor": "666666"}],
+ "queryExpansions": [{"text": "Clinton White House Dog", "displayText": "Clinton",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=19c8f6EDuFZYdqH7TWdbEpj0ftLqa0sQ0VAll6cpmTU&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dClinton%2bWhite%2bHouse%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Clinton%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5192.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Clinton+White+House+Dog&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Clinton%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Clinton+White+House+Dog&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Obama White House Dogs", "displayText": "Obama", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=fWkQ4sZbWUYf3wiXAPsiTdZLuQO6P3uLMn4rZ5yp-PA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dObama%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Obama%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5117.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=fWkQ4sZbWUYf3wiXAPsiTdZLuQO6P3uLMn4rZ5yp-PA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dObama%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Obama%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5194.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Obama+White+House+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Obama%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Obama+White+House+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White Dog House Charlie", "displayText": "Charlie", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=BSgo3zCf9bTU494brcCMiMXNPFtjPE8IeM2Um-JamB8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bHouse%2bCharlie%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Charlie%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5119.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=BSgo3zCf9bTU494brcCMiMXNPFtjPE8IeM2Um-JamB8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bHouse%2bCharlie%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Charlie%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5196.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+Dog+House+Charlie&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Charlie%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+Dog+House+Charlie&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Black White Dog House", "displayText": "Black", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=6jGucoJMo9T4szPzmOtiqcAmsXFFHG7mj1l8zHJo_nQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBlack%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Black%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5121.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=6jGucoJMo9T4szPzmOtiqcAmsXFFHG7mj1l8zHJo_nQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBlack%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Black%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5198.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Black+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Black%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Black+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "Dog Houses White Red", "displayText": "Red", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=IIwII97hAIHBjZD-GHLysCJ0jls0om1DWxTaKHLBxUY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dDog%2bHouses%2bWhite%2bRed%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Red%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5123.1",
+ {"text": "Dog Houses White Red", "displayText": "Red", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=IIwII97hAIHBjZD-GHLysCJ0jls0om1DWxTaKHLBxUY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dDog%2bHouses%2bWhite%2bRed%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Red%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5200.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Dog+Houses+White+Red&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Red%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Dog+Houses+White+Red&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "Pink White Dog House", "displayText": "Pink", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=l6kEbWIdkuKp1I7OzB1kpSWQTiUua3GfWlxD-EaWG_o&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dPink%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Pink%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5125.1",
+ {"text": "Pink White Dog House", "displayText": "Pink", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=l6kEbWIdkuKp1I7OzB1kpSWQTiUua3GfWlxD-EaWG_o&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dPink%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Pink%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5202.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Pink+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pink%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Pink+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Secret Service Dogs", "displayText": "Secret Service",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=-x-2mvzeTwy960kJx03kVgU44Xb7xYNNpFFG_-ifgZo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bSecret%2bService%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Secret%2bService%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5127.1",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=-x-2mvzeTwy960kJx03kVgU44Xb7xYNNpFFG_-ifgZo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bSecret%2bService%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Secret%2bService%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5204.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Secret+Service+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Secret+Service%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Secret+Service+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "Dog Bite White House", "displayText": "Bite", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=gJhnXT98pn5_4E85RpHjT9kyc5tB82_h_sj2Ci6m7OM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dDog%2bBite%2bWhite%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bite%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5129.1",
+ {"text": "Dog Bite White House", "displayText": "Bite", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=gJhnXT98pn5_4E85RpHjT9kyc5tB82_h_sj2Ci6m7OM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dDog%2bBite%2bWhite%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bite%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5206.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Dog+Bite+White+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bite%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Dog+Bite+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Security Dogs", "displayText": "Security", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=hsJED5W4kvYSezTl9QmlyeaPfDrigsgAFkVjFhx9Jgo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bSecurity%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Security%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5131.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=hsJED5W4kvYSezTl9QmlyeaPfDrigsgAFkVjFhx9Jgo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bSecurity%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Security%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5208.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Security+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Security+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Trump Dog", "displayText": "Trump", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=QA4W80dx_5l0EohpjbsR8T61_yGeIo6p7REWvUyz-uE&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bTrump%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Trump%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5133.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=QA4W80dx_5l0EohpjbsR8T61_yGeIo6p7REWvUyz-uE&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bTrump%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Trump%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5210.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Trump+Dog&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Trump%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Trump+Dog&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "Ana White Dog House", "displayText": "Ana", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=Oqa19rJnwVc1rAUjPx5ypA52z8ixOQz2FhZm5P7VKtc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dAna%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Ana%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5135.1",
+ {"text": "Ana White Dog House", "displayText": "Ana", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=Oqa19rJnwVc1rAUjPx5ypA52z8ixOQz2FhZm5P7VKtc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dAna%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Ana%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5212.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Ana+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ana%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Ana+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Guard Dogs", "displayText": "Guard", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=fCg_RwDXsDIwd56Eb6nB1lwOoPLPdY8umz6fRCcyMT8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bGuard%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Guard%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5137.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=fCg_RwDXsDIwd56Eb6nB1lwOoPLPdY8umz6fRCcyMT8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bGuard%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Guard%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5214.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Guard+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Guard%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Guard+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Limbaugh White House Dog", "displayText": "Limbaugh", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=ih7UZ8sdTRheG5Rv5ai7J81OEEYcAOKUt3xVueY15pA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dLimbaugh%2bWhite%2bHouse%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Limbaugh%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5139.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=ih7UZ8sdTRheG5Rv5ai7J81OEEYcAOKUt3xVueY15pA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dLimbaugh%2bWhite%2bHouse%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Limbaugh%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5216.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Limbaugh+White+House+Dog&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Limbaugh%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Limbaugh+White+House+Dog&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Dog Barney", "displayText": "Barney", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=IRYhw2ywwsz6Ejf954qRUeg_p_b5_X-GiAK5VHaX4Gw&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBarney%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Barney%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5141.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=IRYhw2ywwsz6Ejf954qRUeg_p_b5_X-GiAK5VHaX4Gw&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBarney%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Barney%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5218.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dog+Barney&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barney%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Dog+Barney&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Barron White Dog House", "displayText": "Barron", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=V5gnDD1PedBADNKmkRPala1b8ffn_Sr-B9LdZpVXv_M&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBarron%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Barron%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5143.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=V5gnDD1PedBADNKmkRPala1b8ffn_Sr-B9LdZpVXv_M&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBarron%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Barron%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5220.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Barron+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barron%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barron+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Small White House Dogs", "displayText": "Small", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=kKE9k4wE-5v1Ns9GZSfdSpuwp9YVjxeYPpl-Gd2FvRo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dSmall%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Small%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5145.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=kKE9k4wE-5v1Ns9GZSfdSpuwp9YVjxeYPpl-Gd2FvRo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dSmall%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Small%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5222.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Small+White+House+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Small%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Small+White+House+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Presidents Dogs", "displayText": "Presidents", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=zdO-XPYcn_l3dwIPZ1oPrrKFtk_TTt51sMG_K522kHg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPresidents%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Presidents%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5147.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=zdO-XPYcn_l3dwIPZ1oPrrKFtk_TTt51sMG_K522kHg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPresidents%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Presidents%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5224.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Presidents+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Presidents%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Presidents+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "JFK White House Dogs", "displayText": "JFK", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=X54Kr9KKgdZ4s4QeqBMTKk5ApNEzczaFflJnZ30c4Tk&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dJFK%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522JFK%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5149.1",
+ {"text": "JFK White House Dogs", "displayText": "JFK", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=X54Kr9KKgdZ4s4QeqBMTKk5ApNEzczaFflJnZ30c4Tk&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dJFK%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522JFK%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5226.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=JFK+White+House+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22JFK%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=JFK+White+House+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dogs List", "displayText": "List", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=EhZ2IblN3JwuPGt--wZOGLrKcZctB5xozLj_aFsQzyo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDogs%2bList%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522List%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5151.1",
+ {"text": "White House Dogs List", "displayText": "List", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=EhZ2IblN3JwuPGt--wZOGLrKcZctB5xozLj_aFsQzyo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDogs%2bList%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522List%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5228.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dogs+List&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22List%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Dogs+List&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dog Beau", "displayText": "Beau", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=XDdkWjqmDibi2JocWuRnRXj4VTvjqFQfcVlYq03fX3I&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBeau%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Beau%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5153.1",
+ {"text": "White House Dog Beau", "displayText": "Beau", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=XDdkWjqmDibi2JocWuRnRXj4VTvjqFQfcVlYq03fX3I&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBeau%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Beau%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5230.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dog+Beau&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Beau%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Dog+Beau&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Barbara Walters White House Dogs", "displayText": "Barbara Walters",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=wnX6MtZNha22vQFuy2xtkdk_nze-8LCpCqjTYvO0gNM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBarbara%2bWalters%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Barbara%2bWalters%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5155.1",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=wnX6MtZNha22vQFuy2xtkdk_nze-8LCpCqjTYvO0gNM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBarbara%2bWalters%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Barbara%2bWalters%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5232.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Barbara+Walters+White+House+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Barbara+Walters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Barbara+Walters+White+House+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "Book House Dogs White", "displayText": "Book", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=QuEVvyZgkn5WF8vaQm1o4M7hMr5qas2CXeMjTf7RhX4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBook%2bHouse%2bDogs%2bWhite%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Book%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5157.1",
+ {"text": "Book House Dogs White", "displayText": "Book", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=QuEVvyZgkn5WF8vaQm1o4M7hMr5qas2CXeMjTf7RhX4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dBook%2bHouse%2bDogs%2bWhite%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Book%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5234.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Book+House+Dogs+White&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Book%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Book+House+Dogs+White&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dog 2017", "displayText": "2017", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=xpafUHU5BdxhSQ7bvZ8aY0fJNmkwy6_TDWLT8Oatq04&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2b2017%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%25222017%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5159.1",
+ {"text": "White House Dog 2017", "displayText": "2017", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=xpafUHU5BdxhSQ7bvZ8aY0fJNmkwy6_TDWLT8Oatq04&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2b2017%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%25222017%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5236.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dog+2017&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%222017%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Dog+2017&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dogs Die", "displayText": "Die", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=gCqwE0U7dwCl_v8KWjLoinvHS6SNdhmIjsdBjLij_og&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDogs%2bDie%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Die%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5161.1",
+ {"text": "White House Dogs Die", "displayText": "Die", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=gCqwE0U7dwCl_v8KWjLoinvHS6SNdhmIjsdBjLij_og&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDogs%2bDie%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Die%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5238.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dogs+Die&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Die%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Dogs+Die&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dog Bugs", "displayText": "Bugs", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=LOD4l_DbNkClbh_e2KuSBo0xkPbEiLiHp9thgkubJCY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBugs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bugs%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5163.1",
+ {"text": "White House Dog Bugs", "displayText": "Bugs", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=LOD4l_DbNkClbh_e2KuSBo0xkPbEiLiHp9thgkubJCY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBugs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bugs%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5240.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dog+Bugs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bugs%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Dog+Bugs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Buddy Dog", "displayText": "Buddy", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=TZJ5_voPoyF1V5ffYVTZEksavVLqExZgGT6QfyJrulQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBuddy%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Buddy%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5165.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=TZJ5_voPoyF1V5ffYVTZEksavVLqExZgGT6QfyJrulQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBuddy%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Buddy%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5242.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Buddy+Dog&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Buddy%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Buddy+Dog&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "1st White House Dogs", "displayText": "1st", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=_TtKkAytQLLd6yRYhsCC6fy4pXL0q1RVyaYhktujjQM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3d1st%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%25221st%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5167.1",
+ {"text": "1st White House Dogs", "displayText": "1st", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=_TtKkAytQLLd6yRYhsCC6fy4pXL0q1RVyaYhktujjQM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3d1st%2bWhite%2bHouse%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%25221st%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5244.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=1st+White+House+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%221st%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=1st+White+House+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dog Bowl", "displayText": "Bowl", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=2LjPGchiZy-8kbK5jiJ_cPKIRfz9sBmG6XaRXEyHo5E&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBowl%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bowl%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5169.1",
+ {"text": "White House Dog Bowl", "displayText": "Bowl", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=2LjPGchiZy-8kbK5jiJ_cPKIRfz9sBmG6XaRXEyHo5E&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bBowl%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bowl%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5246.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dog+Bowl&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bowl%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Dog+Bowl&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Animated White Dog House", "displayText": "Animated", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=64v1zygCi7jhmljXfGXJH3OPHsgYVgyMymqrCNMAGl8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dAnimated%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Animated%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5171.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=64v1zygCi7jhmljXfGXJH3OPHsgYVgyMymqrCNMAGl8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dAnimated%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Animated%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5248.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Animated+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animated%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Animated+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White Cartoon Dog House", "displayText": "Cartoon", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=k-2xf607v-_Y57XmyYljgkrrKJnPmuimBSsF83irrI4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bCartoon%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cartoon%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5173.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=k-2xf607v-_Y57XmyYljgkrrKJnPmuimBSsF83irrI4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bCartoon%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cartoon%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5250.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+Cartoon+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cartoon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+Cartoon+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Dog Costume White House", "displayText": "Costume", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=CIGamvqk6v8fUS2oH4E0ctSmIi6su_xAkJ6QkefQb_I&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dDog%2bCostume%2bWhite%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Costume%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5175.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=CIGamvqk6v8fUS2oH4E0ctSmIi6su_xAkJ6QkefQb_I&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dDog%2bCostume%2bWhite%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Costume%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5252.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Dog+Costume+White+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Costume%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Dog+Costume+White+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White Dog House Air Condition", "displayText": "Air Condition",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=8rI7kdIN30y71Z7-09jnF4_wKrK3KUezwn-XvXSAeEU&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bHouse%2bAir%2bCondition%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Air%2bCondition%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5177.1",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=8rI7kdIN30y71Z7-09jnF4_wKrK3KUezwn-XvXSAeEU&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bHouse%2bAir%2bCondition%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Air%2bCondition%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5254.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+Dog+House+Air+Condition&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Air+Condition%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+Dog+House+Air+Condition&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Cutest White Dog House", "displayText": "Cutest", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=nW8QAa7RwYN9i-K22W1XNWQZSFSpE2GfxPnUqIFYbPQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dCutest%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cutest%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5179.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=nW8QAa7RwYN9i-K22W1XNWQZSFSpE2GfxPnUqIFYbPQ&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dCutest%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cutest%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5256.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Cutest+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cutest%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Cutest+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White Dog House Clip Art", "displayText": "Clip Art", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=Gcl5_EW9J7U2FksIoao3yN0DdzY9sIRGPWCAsEUH2Ak&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bHouse%2bClip%2bArt%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Clip%2bArt%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5181.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=Gcl5_EW9J7U2FksIoao3yN0DdzY9sIRGPWCAsEUH2Ak&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bHouse%2bClip%2bArt%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Clip%2bArt%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5258.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+Dog+House+Clip+Art&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Clip+Art%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+Dog+House+Clip+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Broken Dogs", "displayText": "Broken", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=daSLitRIOTc4x1PqFiBXM3CKO40pi_rPEypR7fw8lak&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBroken%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Broken%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5183.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=daSLitRIOTc4x1PqFiBXM3CKO40pi_rPEypR7fw8lak&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBroken%2bDogs%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Broken%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5260.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Broken+Dogs&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Broken%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Broken+Dogs&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "Squads White House Dog", "displayText": "Squads", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=yMnt2P7GCY2JvgV8gFqEMpV6VTzE2Ok9S4Qfxh_kEv0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dSquads%2bWhite%2bHouse%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Squads%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5185.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=yMnt2P7GCY2JvgV8gFqEMpV6VTzE2Ok9S4Qfxh_kEv0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dSquads%2bWhite%2bHouse%2bDog%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Squads%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5262.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Squads+White+House+Dog&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Squads%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Squads+White+House+Dog&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "Grey White Dog House", "displayText": "Grey", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=3eEJdFy1eyKCey8C3y9RWtAhLAO8fXzxoe7lbOcmYI0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dGrey%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Grey%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5187.1",
+ {"text": "Grey White Dog House", "displayText": "Grey", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=3eEJdFy1eyKCey8C3y9RWtAhLAO8fXzxoe7lbOcmYI0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dGrey%2bWhite%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Grey%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5264.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=Grey+White+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Grey%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Grey+White+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White Dog Front House", "displayText": "Front", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=EUB54G-no86vjhHnotA7aSEG5f6ORhPFbcAJDUSe8k4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bFront%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Front%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5189.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=EUB54G-no86vjhHnotA7aSEG5f6ORhPFbcAJDUSe8k4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bDog%2bFront%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Front%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5266.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+Dog+Front+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Front%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.explicit.bing.net\/th?q=White+Dog+Front+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Dog Puppies", "displayText": "Puppies", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=cE1Xf0HylvWzKfdlat57RtV6hcE_lG9P6z556Rhw-Yg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bPuppies%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Puppies%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5191.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=cE1Xf0HylvWzKfdlat57RtV6hcE_lG9P6z556Rhw-Yg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDog%2bPuppies%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Puppies%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5268.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dog+Puppies&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Puppies%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Dog+Puppies&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White Goldendoodle Dog House", "displayText": "Goldendoodle", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=05pdvlfn8ftWiDu1ttshAWl0ilv8XYBuIO4x2qQbgLs&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bGoldendoodle%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Goldendoodle%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5193.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=05pdvlfn8ftWiDu1ttshAWl0ilv8XYBuIO4x2qQbgLs&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bGoldendoodle%2bDog%2bHouse%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Goldendoodle%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5270.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+Goldendoodle+Dog+House&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Goldendoodle%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+Goldendoodle+Dog+House&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Dogs Cats", "displayText": "Cats", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=ydXxlMo-vVDhS-SphGSGMOUs4_zSjdu8NVmCLqy_w-4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDogs%2bCats%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cats%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx,5195.1",
+ {"text": "White House Dogs Cats", "displayText": "Cats", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=ydXxlMo-vVDhS-SphGSGMOUs4_zSjdu8NVmCLqy_w-4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bDogs%2bCats%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cats%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRPATC&p=DevEx.LB.1,5272.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Dogs+Cats&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cats%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Dogs+Cats&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
- "nextOffsetAddCount": 1, "pivotSuggestions": [{"pivot": "whitehouse", "suggestions":
+ "nextOffsetAddCount": 0, "pivotSuggestions": [{"pivot": "whitehouse", "suggestions":
[]}, {"pivot": "dog", "suggestions": [{"text": "White House Animals", "displayText":
- "Animals", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=hwRiX-PwG5OwYv50reS9HWNAICFVEShULNIUKw5qGLY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bAnimals%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Animals%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5206.1",
+ "Animals", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=hwRiX-PwG5OwYv50reS9HWNAICFVEShULNIUKw5qGLY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bAnimals%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Animals%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5283.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Animals&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Animals%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Animals&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Cats", "displayText": "Cats", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=4ZIC4J1UnyUn_FAfu07Jw2SQfCL7xx-ru6f6cgwH2O8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bCats%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cats%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5208.1",
+ {"text": "White House Cats", "displayText": "Cats", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=4ZIC4J1UnyUn_FAfu07Jw2SQfCL7xx-ru6f6cgwH2O8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bCats%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cats%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5285.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Cats&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cats%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Cats&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Bowling Alley", "displayText": "Bowling Alley", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=nj-PxSHvOT48PNx2b6f8ppTu6CO7OhaGrw6lNlQ7sC4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBowling%2bAlley%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bowling%2bAlley%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5210.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=nj-PxSHvOT48PNx2b6f8ppTu6CO7OhaGrw6lNlQ7sC4&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBowling%2bAlley%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Bowling%2bAlley%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5287.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Bowling+Alley&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bowling+Alley%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Bowling+Alley&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Family", "displayText": "Family", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=mSADk8uMEXNZeRJBVo3UTQUvh6H-b7_DUhDuDB630bg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bFamily%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Family%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5212.1",
+ {"text": "White House Family", "displayText": "Family", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=mSADk8uMEXNZeRJBVo3UTQUvh6H-b7_DUhDuDB630bg&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bFamily%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Family%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5289.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Family&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Family%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Family&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Basketball Court", "displayText": "Basketball Court",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=EMcsSivdO_wYGcfnk9QSUwF4VP1cNn0fu61bB8tOf08&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBasketball%2bCourt%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Basketball%2bCourt%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5214.1",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=EMcsSivdO_wYGcfnk9QSUwF4VP1cNn0fu61bB8tOf08&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bBasketball%2bCourt%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Basketball%2bCourt%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5291.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Basketball+Court&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Basketball+Court%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Basketball+Court&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House K9", "displayText": "K9", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=sxA3ClcjAI2vJPY-CNHnI6167u-6xW_pPs1VzYpOqNY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bK9%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522K9%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5216.1",
+ {"text": "White House K9", "displayText": "K9", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=sxA3ClcjAI2vJPY-CNHnI6167u-6xW_pPs1VzYpOqNY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bK9%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522K9%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5293.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+K9&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22K9%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+K9&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Rat", "displayText": "Rat", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=dXGHxKWnPe7igmpHeMBDVccC71trHArokzQueMlCW9A&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bRat%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Rat%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5218.1",
+ {"text": "White House Rat", "displayText": "Rat", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=dXGHxKWnPe7igmpHeMBDVccC71trHArokzQueMlCW9A&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bRat%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Rat%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5295.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Rat&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rat%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Rat&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Cow", "displayText": "Cow", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=io1ductc-12G_knVBlZXkZh7SlkQ9iLJo_gAwHDl3BA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bCow%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cow%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5220.1",
+ {"text": "White House Cow", "displayText": "Cow", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=io1ductc-12G_knVBlZXkZh7SlkQ9iLJo_gAwHDl3BA&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bCow%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Cow%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5297.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Cow&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cow%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Cow&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Puns", "displayText": "Puns", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=YR8Z2nEYgzvM6OW995QuWSW4WsWzevqn1AVaAiAxmAI&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPuns%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Puns%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5222.1",
+ {"text": "White House Puns", "displayText": "Puns", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=YR8Z2nEYgzvM6OW995QuWSW4WsWzevqn1AVaAiAxmAI&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPuns%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Puns%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5299.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Puns&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Puns%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Puns&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Private Helicopters", "displayText": "Private Helicopters",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=jaudnBTZFGVfgJ9E6R0xEsB1Uy9SFya6CXsckvReO_E&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPrivate%2bHelicopters%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Private%2bHelicopters%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5224.1",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=jaudnBTZFGVfgJ9E6R0xEsB1Uy9SFya6CXsckvReO_E&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPrivate%2bHelicopters%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Private%2bHelicopters%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5301.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Private+Helicopters&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Private+Helicopters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Private+Helicopters&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Christmas 2009", "displayText": "Christmas 2009", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=ZLqz6UgNTlnz5GBxVg309cv5qQ1mf2GQ0zYLKAPbZLo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bChristmas%2b2009%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Christmas%2b2009%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5226.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=ZLqz6UgNTlnz5GBxVg309cv5qQ1mf2GQ0zYLKAPbZLo&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bChristmas%2b2009%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Christmas%2b2009%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5303.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Christmas+2009&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Christmas+2009%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Christmas+2009&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Singing", "displayText": "Singing", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=FnXIMr_jTbCqVOitd4GUWNsLjU2Gg9akRyjm97ZkNqY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bSinging%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Singing%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5228.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=FnXIMr_jTbCqVOitd4GUWNsLjU2Gg9akRyjm97ZkNqY&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bSinging%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Singing%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5305.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Singing&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Singing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Singing&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Puppies", "displayText": "Puppies", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=h_xOFS8AKztKpO7QbAg2764R1stWWTFMe1nvw6eoxMM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPuppies%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Puppies%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5230.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=h_xOFS8AKztKpO7QbAg2764R1stWWTFMe1nvw6eoxMM&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPuppies%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Puppies%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5307.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Puppies&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Puppies%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Puppies&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Treasures", "displayText": "Treasures", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=t4Wns5OhA0Ealxs6f1PuABLPnxa-5p1xqb9GpC32Ees&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bTreasures%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Treasures%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5232.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=t4Wns5OhA0Ealxs6f1PuABLPnxa-5p1xqb9GpC32Ees&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bTreasures%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Treasures%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5309.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Treasures&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Treasures%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Treasures&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Fail", "displayText": "Fail", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=gV0COixwjGeWDH4VK9PHLRQQY1JY-7usvueCwPViPL8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bFail%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Fail%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5234.1",
+ {"text": "White House Fail", "displayText": "Fail", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=gV0COixwjGeWDH4VK9PHLRQQY1JY-7usvueCwPViPL8&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bFail%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Fail%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5311.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Fail&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fail%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Fail&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
- {"text": "White House Maze", "displayText": "Maze", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=Hd4Nrp5pdPyDbmPhHbm6xFsweTCWkeIHQt2FZ7brLY0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bMaze%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Maze%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5236.1",
+ {"text": "White House Maze", "displayText": "Maze", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=Hd4Nrp5pdPyDbmPhHbm6xFsweTCWkeIHQt2FZ7brLY0&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bMaze%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Maze%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5313.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Maze&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Maze%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=White+House+Maze&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Vehicles", "displayText": "Vehicles", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=6LdgXqTwiS77U4xH-W4NFfgPNf58-_C8uKCkrpUu59M&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bVehicles%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Vehicles%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5238.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=6LdgXqTwiS77U4xH-W4NFfgPNf58-_C8uKCkrpUu59M&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bVehicles%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Vehicles%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5315.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Vehicles&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Vehicles%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=White+House+Vehicles&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Thanksgiving 2014", "displayText": "Thanksgiving 2014",
- "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=4q-PDbnUXGCtpd-XjQxrk991mtsmZxH80QjaHKB039w&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bThanksgiving%2b2014%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Thanksgiving%2b2014%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5240.1",
+ "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=4q-PDbnUXGCtpd-XjQxrk991mtsmZxH80QjaHKB039w&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bThanksgiving%2b2014%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Thanksgiving%2b2014%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5317.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Thanksgiving+2014&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Thanksgiving+2014%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Thanksgiving+2014&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Paper Dolls", "displayText": "Paper Dolls", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=XEPQtl7iVs4lC8tuefBSSG84AtMgvv2x4FMKbzYY2is&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPaper%2bDolls%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Paper%2bDolls%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5242.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=XEPQtl7iVs4lC8tuefBSSG84AtMgvv2x4FMKbzYY2is&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bPaper%2bDolls%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Paper%2bDolls%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5319.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Paper+Dolls&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Paper+Dolls%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=White+House+Paper+Dolls&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
{"text": "White House Criminals", "displayText": "Criminals", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=6FaOEPdXda5MdCuwqu8eTz7IBeY4mwiK_oU3oGWduss&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bCriminals%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Criminals%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx,5244.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=6FaOEPdXda5MdCuwqu8eTz7IBeY4mwiK_oU3oGWduss&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dWhite%2bHouse%2bCriminals%26tq%3d%257b%2522pq%2522%253a%2522whitehouse%2bdog%2522%252c%2522qs%2522%253a%255b%257b%2522cv%2522%253a%2522whitehouse%2522%252c%2522pv%2522%253a%2522whitehouse%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522dog%2522%252c%2522pv%2522%253a%2522dog%2522%252c%2522hps%2522%253atrue%252c%2522iqp%2522%253afalse%257d%252c%257b%2522cv%2522%253a%2522Criminals%2522%252c%2522pv%2522%253a%2522%2522%252c%2522hps%2522%253afalse%252c%2522iqp%2522%253atrue%257d%255d%257d%26FORM%3dIRQBPS&p=DevEx.LB.1,5321.1",
"searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/images\/search?q=White+House+Criminals&tq=%7b%22pq%22%3a%22whitehouse+dog%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22whitehouse%22%2c%22pv%22%3a%22whitehouse%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22dog%22%2c%22pv%22%3a%22dog%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Criminals%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
"thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=White+House+Criminals&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}],
- "displayShoppingSourcesBadges": false, "displayRecipeSourcesBadges": true,
+ "displayShoppingSourcesBadges": false, "displayRecipeSourcesBadges": false,
"similarTerms": [{"text": "puppies", "displayText": "puppies", "webSearchUrl":
- "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=cHpFVy-BLLv1g27DL6ZCe5X3xiXEAgwECcFKpB8jdxc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dpuppies%26FORM%3dIDINTS&p=DevEx,5261.1",
+ "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=cHpFVy-BLLv1g27DL6ZCe5X3xiXEAgwECcFKpB8jdxc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dpuppies%26FORM%3dIDINTS&p=DevEx.LB.1,5417.1",
"thumbnail": {"url": "https:\/\/tse1.mm.bing.net\/th?q=puppies&pid=Api&mkt=en-US&adlt=moderate"}},
- {"text": "cat", "displayText": "cat", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=6BkmZsJbBZNR_rZPvxtDOHOSRJTJykQshUvkBoWzh_U&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dcat%26FORM%3dIDINTS&p=DevEx,5262.1",
+ {"text": "cat", "displayText": "cat", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=6BkmZsJbBZNR_rZPvxtDOHOSRJTJykQshUvkBoWzh_U&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dcat%26FORM%3dIDINTS&p=DevEx.LB.1,5419.1",
"thumbnail": {"url": "https:\/\/tse3.mm.bing.net\/th?q=cat&pid=Api&mkt=en-US&adlt=moderate"}},
- {"text": "duck", "displayText": "duck", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=7lEwQybUl3EYRJ9dG5M7PJ_If4DRhkkPxcqeFe25rGc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dduck%26FORM%3dIDINTS&p=DevEx,5263.1",
+ {"text": "duck", "displayText": "duck", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=7lEwQybUl3EYRJ9dG5M7PJ_If4DRhkkPxcqeFe25rGc&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dduck%26FORM%3dIDINTS&p=DevEx.LB.1,5421.1",
"thumbnail": {"url": "https:\/\/tse2.mm.bing.net\/th?q=duck&pid=Api&mkt=en-US&adlt=moderate"}},
- {"text": "chicken", "displayText": "chicken", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=75C2707D84A24687982073E3C539AF71&CID=24DCC782ABC967E42BDECD3DAACF660E&rd=1&h=rPv6sHGP-FVzzbBhfWF1G7coFr3cSxA_x2zL0JQaz8E&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dchicken%26FORM%3dIDINTS&p=DevEx,5264.1",
+ {"text": "chicken", "displayText": "chicken", "webSearchUrl": "https:\/\/www.bing.com\/cr?IG=C6E74B5B4106461CA590B5DA71DAC585&CID=25BB299408C26F8939EC25C3093F6EBD&rd=1&h=rPv6sHGP-FVzzbBhfWF1G7coFr3cSxA_x2zL0JQaz8E&v=1&r=https%3a%2f%2fwww.bing.com%2fimages%2fsearch%3fq%3dchicken%26FORM%3dIDINTS&p=DevEx.LB.1,5423.1",
"thumbnail": {"url": "https:\/\/tse2.mm.bing.net\/th?q=chicken&pid=Api&mkt=en-US&adlt=moderate"}}]}'
http_version:
- recorded_at: Fri, 14 Jul 2017 16:19:14 GMT
-recorded_with: VCR 3.0.3
+ recorded_at: Sun, 26 Aug 2018 23:58:44 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v5_web_engine/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml b/spec/vcr_cassettes/bing_v5_web_engine/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
new file mode 100644
index 0000000000..cd168d2b5f
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v5_web_engine/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
@@ -0,0 +1,47 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v5.0/search?count=20&mkt=en-US&offset=0&q&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - b1rd1sth3p4ssw0rd
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 401
+ message: Access Denied
+ headers:
+ Content-Length:
+ - '143'
+ Content-Type:
+ - application/json
+ Apim-Request-Id:
+ - ecd40c4f-59cb-4296-9af8-83a95b8dab26
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Www-Authenticate:
+ - AzureApiManagementKey realm="https://api.cognitive.microsoft.com/bing/v5.0",name="Ocp-Apim-Subscription-Key",type="header"
+ Date:
+ - Fri, 31 Aug 2018 21:46:10 GMT
+ body:
+ encoding: UTF-8
+ string: '{ "statusCode": 401, "message": "Access denied due to invalid subscription
+ key. Make sure to provide a valid key for an active subscription." }'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:46:11 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v5_web_engine_execute_query.yml b/spec/vcr_cassettes/bing_v5_web_engine_execute_query.yml
index a0dda20d55..dad57b9dd4 100644
--- a/spec/vcr_cassettes/bing_v5_web_engine_execute_query.yml
+++ b/spec/vcr_cassettes/bing_v5_web_engine_execute_query.yml
@@ -2,7 +2,7 @@
http_interactions:
- request:
method: get
- uri: https://api.cognitive.microsoft.com/bing/v5.0/search?count=10&mkt=en-US&offset=20&q=consumer%20financial%20protection%20bureau&responseFilter=WebPages,SpellSuggestions&safeSearch=Moderate&textDecorations=false
+ uri: https://api.cognitive.microsoft.com/bing/v5.0/search?count=10&mkt=en-US&offset=20&q=consumer%20financial%20protection%20bureau&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
@@ -18,7 +18,7 @@ http_interactions:
Connection:
- keep-alive
Keep-Alive:
- - 30
+ - '30'
response:
status:
code: 200
@@ -26,108 +26,109 @@ http_interactions:
headers:
Cache-Control:
- private, max-age=0
- Content-Length:
- - '2627'
+ Transfer-Encoding:
+ - chunked
Content-Type:
- application/json; charset=utf-8
Expires:
- - Fri, 14 Jul 2017 16:18:14 GMT
+ - Sun, 26 Aug 2018 23:57:44 GMT
Vary:
- Accept-Encoding
- Server:
- - Microsoft-IIS/10.0 Microsoft-HTTPAPI/2.0
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
- Bingapis-Traceid:
- - 4D18DD47A15F4608A1AD33373A247F27
- X-Msedge-Clientid:
- - 33296C1756ED6F8531D166A857EB6E64
- X-Msapi-Userstate:
- - 7a19
Bingapis-Market:
- en-US
+ Bingapis-Traceid:
+ - BD49EDD64F284A9B98D79EAD1AB5CC99
+ Bingapis-Sessionid:
+ - 1B9EC4D1D6FB45E795EFEDECB1736F39
+ X-Msapi-Userstate:
+ - 74fa
+ X-Msedge-Clientid:
+ - 162EF3B59525686124B4FFE294D869FC
X-Msedge-Ref:
- - 'Ref A: 4D18DD47A15F4608A1AD33373A247F27 Ref B: BL2EDGE0908 Ref C: Fri Jul
- 14 09:19:14 2017 PST'
+ - 'Ref A: BD49EDD64F284A9B98D79EAD1AB5CC99 Ref B: BLUEDGE0316 Ref C: 2018-08-26T23:58:45Z'
Apim-Request-Id:
- - bd20d797-246f-4467-a132-07f743620421
+ - 46396919-cb05-4b9c-9351-d2629ee16637
Strict-Transport-Security:
- max-age=31536000; includeSubDomains; preload
X-Content-Type-Options:
- nosniff
Date:
- - Fri, 14 Jul 2017 16:19:13 GMT
+ - Sun, 26 Aug 2018 23:58:44 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=TvLW1nIkoMQB2bM4hV15ITlYFwQc3g7tF3tCWUQk-oc&v=1&r=https%3a%2f%2fwww.bing.com%2fsearch%3fq%3dconsumer%2bfinancial%2bprotection%2bbureau&p=DevEx,5275.1",
- "totalEstimatedMatches": 17200000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.0",
- "name": "Judges Mull Future of Consumer Financial Protection Bureau", "url":
- "http:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=jPD5WkL4XhBzajWWCWnjr60KxDheSawyHqwoeAh4lQQ&v=1&r=http%3a%2f%2fwww.consumerreports.org%2fconsumer-financial-protection-bureau%2fbalance-of-power-CFPB%2f&p=DevEx,5054.1",
- "displayUrl": "www.consumerreports.org\/consumer-financial-protection-bureau\/...",
- "snippet": "A federal appeals court heard arguments that could help determine
- the fate of the Consumer Financial Protection Bureau and its director, Richard
- Cordray. Consumer ...", "dateLastCrawled": "2017-07-13T16:04:00"}, {"id":
- "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.1", "name": "Consumer
- Financial Protection Bureau - Debt.org", "url": "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=N9XAuEm0b8rkK7JuDWlUYKUbY4QgyVFoDzl743tLVao&v=1&r=https%3a%2f%2fwww.debt.org%2fcredit%2fyour-consumer-rights%2ffinancial-protection-bureau%2f&p=DevEx,5071.1",
- "displayUrl": "https:\/\/www.debt.org\/...\/financial-protection-bureau",
- "snippet": "The Consumer Financial Protection Bureau is a new federal agency
- created to protect consumers of financial products and services.", "dateLastCrawled":
- "2017-06-22T21:56:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.2",
- "name": "Bureau of Consumer Financial Protection", "url": "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=trkxmc-9rdpPv_D5fKhr5fEc59D9I06H9AnmdEh3ckA&v=1&r=https%3a%2f%2fwww.gpo.gov%2ffdsys%2fpkg%2fFR-2016-08-15%2fpdf%2f2016-18426.pdf&p=DevEx,5083.1",
- "displayUrl": "https:\/\/www.gpo.gov\/fdsys\/pkg\/FR-2016-08-15\/pdf\/2016-18426.pdf",
- "snippet": "Vol. 81 Monday, No. 157 August 15, 2016 Part III Bureau of Consumer
- Financial Protection 12 CFR Part 1026 Amendments to Federal Mortgage Disclosure
- Requirements Under ...", "dateLastCrawled": "2017-07-05T06:22:00"}, {"id":
- "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.3", "name": "More
- Companies Willing to Take on the Consumer Financial ...", "url": "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=j8YNzx1H2KBaapEysOoruUd1R44xAoB2dGiZlRTTz1M&v=1&r=https%3a%2f%2fwww.wsj.com%2farticles%2fmore-companies-willing-to-take-on-the-consumer-financial-protection-bureau-1493976600&p=DevEx,5095.1",
- "displayUrl": "https:\/\/www.wsj.com\/articles\/more-companies-willing-to-take-on-the...",
- "snippet": "Companies targeted by the Consumer Financial Protection Bureau
- are more frequently choosing to fight enforcement actions rather than settle,
- as Republican control of ...", "dateLastCrawled": "2017-07-06T21:42:00"},
- {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.4", "name":
- "Is the Consumer Financial Protection Bureau constitutional ...", "url": "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=OD0GWrc9CkT9mo1YO13FE1CdGhtFLJHoCV7MFC5ZDM0&v=1&r=https%3a%2f%2fwww.washingtonpost.com%2fnews%2fmonkey-cage%2fwp%2f2016%2f10%2f19%2fis-the-consumer-financial-protection-bureau-constitutional-the-d-c-circuit-says-no-heres-why%2f&p=DevEx,5109.1",
- "displayUrl": "https:\/\/www.washingtonpost.com\/news\/monkey-cage\/wp\/2016\/10\/19\/is...",
- "snippet": "The Consumer Financial Protection Bureau (CFPB) was created in
- 2010 by the Dodd-Frank Act to help reform Wall Street practices. But last
- week the D.C. Circuit Court ...", "dateLastCrawled": "2017-07-05T12:04:00"},
- {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.5", "name":
- "Consumer Financial Protection Bureau - NPR.org", "url": "http:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=KkGIfGm19lr4T0zuyIc75bCnXlgWGGUAhNv3-I0R5Bw&v=1&r=http%3a%2f%2fwww.npr.org%2f2017%2f01%2f12%2f509542819%2fconsumer-financial-protection-bureau-report-outlines-abuses-by-debt-collectors&p=DevEx,5124.1",
- "displayUrl": "www.npr.org\/2017\/01\/12\/509542819", "snippet": "The Consumer
- Financial Protection Bureau on Thursday is releasing a new report about abuses
- in the debt collection industry. This comes as the CFPB is ...", "dateLastCrawled":
- "2017-07-02T03:47:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.6",
- "name": "Consumer Financial Protection Bureau", "url": "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=fKpaas17y0zkutxad863Bv6HZdLF-EYcw3lMKMn0wLw&v=1&r=https%3a%2f%2fexam.consumerfinance.gov%2f&p=DevEx,5137.1",
- "displayUrl": "https:\/\/exam.consumerfinance.gov", "snippet": "This is a
- Consumer Financial Protection Bureau (CFPB) information system. The CFPB is
- an independent agency of the United States Government. CFPB ...", "dateLastCrawled":
- "2017-07-01T23:17:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.7",
- "name": "Petitioners, CONSUMER FINANCIAL PROTECTION BUREAU,", "url": "http:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=c71lq71zTo6KwizKe527dES8ebvRcBN9-SY96SnHAcY&v=1&r=http%3a%2f%2fwww.ct.gov%2fag%2flib%2fag%2fpress_releases%2f2017%2f20170123_phh_cfpb_motiontointervene.pdf&p=DevEx,5149.1",
- "displayUrl": "www.ct.gov\/ag\/lib\/ag\/press_releases\/2017\/20170123_phh_cfpb_motion...",
- "snippet": "2 Pub. L. No. 111-203. The CFPB''s purpose is to provide a single
- point of accountability for enforcing federal consumer financial laws and
- protecting", "dateLastCrawled": "2017-07-07T05:09:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.8",
- "name": "The CFPB Is In The Crosshairs, Exactly Where It Belongs", "url":
- "https:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=FJ9p_05RPn8qjjOjzhVTZSDuov_Vd-Qx5UgLEbEBIPg&v=1&r=https%3a%2f%2fwww.forbes.com%2fsites%2fnorbertmichel%2f2017%2f01%2f24%2fthe-cfpb-is-in-the-crosshairs-exactly-where-it-belongs%2f&p=DevEx,5164.1",
- "displayUrl": "https:\/\/www.forbes.com\/sites\/norbertmichel\/2017\/01\/24\/the-cfpb-is...",
- "snippet": "The Consumer Financial Protection Bureau (CFPB) has been one of
- the most controversial components of the 2010 Dodd-Frank Act. It has issued
- contentious ...", "dateLastCrawled": "2017-07-06T20:16:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.9",
- "name": "Trump Budget: Big CFPB Cuts Would Kill Consumer ... - time.com",
- "url": "http:\/\/www.bing.com\/cr?IG=AC80BB1ABD3A4C3387918D182B33339F&CID=33296C1756ED6F8531D166A857EB6E64&rd=1&h=IIG7MGpWrPcn8sX3SB4tsx6ukas6OSGeuIAH-jRLLnw&v=1&r=http%3a%2f%2ftime.com%2fmoney%2f4790486%2ftrump-budget-2018-cuts-cfpb-consumers%2f&p=DevEx,5177.1",
- "displayUrl": "time.com\/money\/4790486\/trump-budget-2018-cuts-cfpb-consumers",
- "snippet": "Deep in President Donald Trump’s 2018 budget request to Congress
- is a section headed “Restructure the Consumer Financial Protection Bureau.”",
- "dateLastCrawled": "2017-07-10T11:19:00"}]}, "rankingResponse": {"mainline":
- {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.0"}},
- {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.1"}},
- {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.2"}},
- {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.3"}},
- {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.4"}},
- {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.5"}},
- {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.6"}},
- {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.7"}},
- {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.8"}},
- {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v5\/#WebPages.9"}}]}}}'
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "consumer
+ financial protection bureau"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=TvLW1nIkoMQB2bM4hV15ITlYFwQc3g7tF3tCWUQk-oc&v=1&r=https%3a%2f%2fwww.bing.com%2fsearch%3fq%3dconsumer%2bfinancial%2bprotection%2bbureau&p=DevEx.LB.1,5425.1",
+ "totalEstimatedMatches": 10700000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "CFPB Open Tech – Home", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=sR5BjFugPkYkWvogGJzcTWXC2VRQrzZWbk6pmNQ4Fn0&v=1&r=https%3a%2f%2fcfpb.github.io%2f&p=DevEx.LB.1,5236.1",
+ "displayUrl": "https:\/\/cfpb.github.io", "snippet": "Learn about the technology
+ work the Consumer Financial Protection Bureau undertakes to support its mission.",
+ "dateLastCrawled": "2018-08-19T00:41:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Trump taps Kathy Kraninger to take over consumer ...", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=uFV_QTdpptdtUKmBpFCQJ5wK52cQ0ec91DdlBGp4O5o&v=1&r=https%3a%2f%2fwww.cbsnews.com%2fnews%2fkathy-kraninger-nominated-today-bureau-of-consumer-financial-protection-mick-mulvaney-2018-06-16%2f&p=DevEx.LB.1,5249.1",
+ "displayUrl": "https:\/\/www.cbsnews.com\/news\/kathy-kraninger-nominated-today...",
+ "snippet": "President Trump intends to nominate Kathy Kraninger to replace
+ Mick Mulvaney as head of the Bureau of Consumer Financial Protection, the
+ White House announced late Saturday.", "dateLastCrawled": "2018-08-19T21:31:00"},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Consumer Financial Protection Bureau’s Tragic Failures ...", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=GjyEISnFd1nf1Z76NSQiUnM3JOYn3jB-FabOXWIINzI&v=1&r=https%3a%2f%2fwww.nationalreview.com%2f2016%2f12%2fconsumer-financial-protection-bureau-tragic-failures%2f&p=DevEx.LB.1,5262.1",
+ "about": [{"name": "Consumer Financial Protection Bureau"}], "displayUrl":
+ "https:\/\/www.nationalreview.com\/2016\/12\/consumer-financial...", "snippet":
+ "The Consumer Financial Protection Bureau had noble aims, but it was doomed
+ by a structure that made it inherently political.", "dateLastCrawled": "2018-08-21T09:23:00"},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "United States Court of Appeals", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=3SCmwsSl3FmDVBWhhDQUrzKEs0Ksg1oKHFVZc0-m1H8&v=1&r=https%3a%2f%2fwww.cadc.uscourts.gov%2finternet%2fopinions.nsf%2fB7623651686D60D585258226005405AC%2f%24file%2f15-1177.pdf&p=DevEx.LB.1,5274.1",
+ "displayUrl": "https:\/\/www.cadc.uscourts.gov\/internet\/opinions.nsf\/B7623651686D60...",
+ "snippet": "the Consumer Financial Protection Bureau. Congress’s solution
+ was not so much to write new consumer protection laws , but to collect under
+ one roof existing", "dateLastCrawled": "2018-08-11T23:13:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Consumer Financial Protection Bureau - Debt.org", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=N9XAuEm0b8rkK7JuDWlUYKUbY4QgyVFoDzl743tLVao&v=1&r=https%3a%2f%2fwww.debt.org%2fcredit%2fyour-consumer-rights%2ffinancial-protection-bureau%2f&p=DevEx.LB.1,5286.1",
+ "about": [{"name": "Consumer Financial Protection Bureau"}], "displayUrl":
+ "https:\/\/www.debt.org\/...\/financial-protection-bureau", "snippet": "The
+ Consumer Financial Protection Bureau is a new federal agency created to protect
+ consumers of financial products and services.", "dateLastCrawled": "2018-08-05T04:31:00"},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5", "name":
+ "Consumer Financial Protection Bureau: Company Profile ...", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=j7CrxuurMGMbdQRbJsBVFHejEXzMYsEbgA9Insw9ri0&v=1&r=https%3a%2f%2fwww.bloomberg.com%2fprofiles%2fcompanies%2f0111068D%3aUS-consumer-financial-protection-bureau&p=DevEx.LB.1,5300.1",
+ "about": [{"name": "Consumer Financial Protection Bureau"}], "displayUrl":
+ "https:\/\/www.bloomberg.com\/profiles\/companies\/0111068D:US", "snippet":
+ "Company profile & key executives for Consumer Financial Protection Bureau
+ (0111068D:-) including description, corporate address, management team and
+ contact info.", "dateLastCrawled": "2018-08-18T23:38:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "CONSUMER FINANCIAL PROTECTION BUREAU", "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=bjhhEFjN_T3WuEDC5tUXh7XAJSlhFrmW8QaISSUsa30&v=1&r=https%3a%2f%2fwww.centerforcapitalmarkets.com%2fwp-content%2fuploads%2f2018%2f03%2fCCMC_CFPB-Agenda.pdf&p=DevEx.LB.1,5311.1",
+ "displayUrl": "https:\/\/www.centerforcapitalmarkets.com\/wp-content\/uploads\/2018\/03\/...",
+ "snippet": "The U.S. Chamber of Commerce (Chamber) is releasing several recommendations
+ to the Consumer Financial Protection Bureau (CFPB or Bureau) ...", "dateLastCrawled":
+ "2018-08-19T18:22:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Consumer Financial Protection Bureau - 14 Reviews - Public ...",
+ "url": "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=Ez4uTu6PdiII5kKnY5vASrY_uEvYX8d7PqRAIVzBykw&v=1&r=https%3a%2f%2fwww.yelp.com%2fbiz%2fconsumer-financial-protection-bureau-washington&p=DevEx.LB.1,5334.1",
+ "about": [{"name": "Consumer Financial Protection Bureau"}], "displayUrl":
+ "https:\/\/www.yelp.com\/biz\/consumer-financial-protection-bureau...", "snippet":
+ "14 reviews of Consumer Financial Protection Bureau \"Excellent service! The
+ two lady''s I spoke with were so helpful and patient with me. They had awesome
+ customer service!\"", "dateLastCrawled": "2018-08-13T02:00:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Dodd–Frank Wall Street Reform and Consumer Protection Act", "url":
+ "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=98wR2kzcb7qz3jnLrbPo5PZ7MWKnGu1Fsoiz9SeP_j8&v=1&r=https%3a%2f%2fen.wikipedia.org%2fwiki%2fDodd%25E2%2580%2593Frank_Wall_Street_Reform_and_Consumer_Protection_Act&p=DevEx.LB.1,5352.1",
+ "about": [{"name": "Dodd–Frank Wall Street Reform and Consumer Protection
+ Act"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Dodd–Frank_Wall_Street_Reform_and...",
+ "snippet": "The Consumer Financial Protection Bureau can be found on the web.
+ The Bureau was formally established when Dodd–Frank was enacted, on July 21,
+ 2010.", "dateLastCrawled": "2018-08-20T10:11:00"}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Consumer Complaints with Consumer Complaint Narratives ...", "url":
+ "https:\/\/www.bing.com\/cr?IG=AD3CCC01CDFF49DFABB55621DC40FE49&CID=162EF3B59525686124B4FFE294D869FC&rd=1&h=YjUMIVJ0Nwpf9Q3vk-9RHGkO4rfp0P6UUSVZ8QmBErY&v=1&r=https%3a%2f%2fdata.consumerfinance.gov%2fdataset%2fConsumer-Complaints-with-Consumer-Complaint-Narrat%2fnsyy-je5y%2fdata&p=DevEx.LB.1,5366.1",
+ "displayUrl": "https:\/\/data.consumerfinance.gov\/dataset\/Consumer-Complaints-with...",
+ "snippet": "Each week we send thousands of consumers'' complaints about financial
+ products ... More about the Consumer ... Consumer Financial Protection Bureau.",
+ "dateLastCrawled": "2018-08-20T17:28:00"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}}]}}}'
http_version:
- recorded_at: Fri, 14 Jul 2017 16:19:14 GMT
-recorded_with: VCR 3.0.3
+ recorded_at: Sun, 26 Aug 2018 23:58:45 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_image_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml b/spec/vcr_cassettes/bing_v6_image_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
new file mode 100644
index 0000000000..ab8794fc11
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v6_image_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
@@ -0,0 +1,73 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=20&mkt=en-US&offset=0&q&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - b1rd1sth3p4ssw0rd
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 400
+ message: ''
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '161'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=07D7C410CCF367823570C84CCD2466F6; path=/; expires=Wed, 25-Sep-2019 21:46:11
+ GMT; domain=bingapis.com
+ - MUIDB=07D7C410CCF367823570C84CCD2466F6; path=/; httponly; expires=Wed, 25-Sep-2019
+ 21:46:11 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Mon, 31-Aug-2020 21:46:11 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=5E8CBCA779E249F19585B7FC3E3815F8&dmnchg=1; domain=.bingapis.com;
+ expires=Mon, 31-Aug-2020 21:46:11 GMT; path=/
+ - SRCHUSR=DOB=20180831; domain=.bingapis.com; expires=Mon, 31-Aug-2020 21:46:11
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=0F8871A1B1B76DF11AE07DFDB0606CDC; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Wed, 25-Sep-2019 21:46:11 GMT; domain=bingapis.com
+ - _SS=SID=0F8871A1B1B76DF11AE07DFDB0606CDC; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 50F762499DD043B5ACDD040A7D1933CC
+ X-Msedge-Clientid:
+ - 07D7C410CCF367823570C84CCD2466F6
+ X-Msapi-Userstate:
+ - 11f0
+ X-Msedge-Ref:
+ - 'Ref A: 50F762499DD043B5ACDD040A7D1933CC Ref B: CO1EDGE0921 Ref C: 2018-08-31T21:46:11Z'
+ Date:
+ - Fri, 31 Aug 2018 21:46:11 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "ErrorResponse", "instrumentation": {}, "errors": [{"code":
+ "RequestParameterMissing", "message": "Required parameter is missing.", "parameter":
+ "q"}]}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:46:11 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_image_search/behaves_like_an_image_search_execute_query.yml b/spec/vcr_cassettes/bing_v6_image_search/behaves_like_an_image_search_execute_query.yml
index eae3b55fa8..9372c2a59d 100644
--- a/spec/vcr_cassettes/bing_v6_image_search/behaves_like_an_image_search_execute_query.yml
+++ b/spec/vcr_cassettes/bing_v6_image_search/behaves_like_an_image_search_execute_query.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=10&mkt=en-US&offset=20&q=agncy%20(site:nasa.gov)&safeSearch=moderate&traffictype=test
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=10&mkt=en-US&offset=20&q=agncy%20(site:nasa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -29,7 +27,7 @@ http_interactions:
Pragma:
- no-cache
Content-Length:
- - '51833'
+ - '51644'
Content-Type:
- application/json; charset=utf-8
Expires:
@@ -39,146 +37,145 @@ http_interactions:
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=038E0756EEDB663E10C00B77EF0C67FC; path=/; expires=Sun, 28-Jul-2019 18:54:53
+ - MUID=2458A0BA5DE564952D27ACED5CEA6598; path=/; expires=Fri, 20-Sep-2019 23:58:45
GMT; domain=bingapis.com
- - MUIDB=038E0756EEDB663E10C00B77EF0C67FC; path=/; httponly; expires=Sun, 28-Jul-2019
- 18:54:53 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Fri, 03-Jul-2020 18:54:53 GMT;
+ - MUIDB=2458A0BA5DE564952D27ACED5CEA6598; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:45 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:45 GMT;
path=/
- - SRCHUID=V=2&GUID=13F2389C8E6C4B98A4BB3E412BFF0FFD&dmnchg=1; domain=.bingapis.com;
- expires=Fri, 03-Jul-2020 18:54:53 GMT; path=/
- - SRCHUSR=DOB=20180703; domain=.bingapis.com; expires=Fri, 03-Jul-2020 18:54:53
+ - SRCHUID=V=2&GUID=5ED209DC2B844B3084F5BFDDF2B638CD&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:45 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:45
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=28AAC89B4ABB63FA3484C4BA4B6C621D; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=1AEC14177C986F8B353D18407D976E38; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Sun, 28-Jul-2019 18:54:53 GMT; domain=bingapis.com
- - _SS=SID=28AAC89B4ABB63FA3484C4BA4B6C621D; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:45 GMT; domain=bingapis.com
+ - _SS=SID=1AEC14177C986F8B353D18407D976E38; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - B2064D33F3AF4F3C849D5746FEABEDEE
+ - 06D35BB554B44272849D4B46AA892CE6
X-Msedge-Clientid:
- - '038E0756EEDB663E10C00B77EF0C67FC'
+ - 2458A0BA5DE564952D27ACED5CEA6598
X-Msapi-Userstate:
- - 52e2
+ - '3550'
X-Msedge-Ref:
- - 'Ref A: B2064D33F3AF4F3C849D5746FEABEDEE Ref B: CO1EDGE0118 Ref C: 2018-07-03T18:54:53Z'
+ - 'Ref A: 06D35BB554B44272849D4B46AA892CE6 Ref B: BAYEDGE0115 Ref C: 2018-08-26T23:58:45Z'
Date:
- - Tue, 03 Jul 2018 18:54:52 GMT
+ - Sun, 26 Aug 2018 23:58:45 GMT
body:
encoding: UTF-8
- string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=B56B9D2FF84A4A4DB90E794D58A7D72D&CID=038E0756EEDB663E10C00B77EF0C67FC&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=B56B9D2FF84A4A4DB90E794D58A7D72D&CID=038E0756EEDB663E10C00B77EF0C67FC&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=603D25FB1A324C39ABB17D1C3E868C4D&CID=2458A0BA5DE564952D27ACED5CEA6598&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=603D25FB1A324C39ABB17D1C3E868C4D&CID=2458A0BA5DE564952D27ACED5CEA6598&Type=Event.CPT&DATA=0"},
"webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=agncy%20(site:nasa.gov)&FORM=OIIARP",
- "webSearchUrlPingSuffix": "DevEx,5126.1", "totalEstimatedMatches": 110, "nextOffset":
- 31, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=714622A44D92987B0C0126D943BB969116A2F981&simid=608033145204376838",
- "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Ka-Band Represents the
- Future of Space Communications | NASA", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.M-5rVWMdLr4tpS8SyiOouwHaE6&pid=Api",
- "datePublished": "2018-02-09T23:02:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/akihiko.jpg",
- "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/research\/news\/ka_band",
- "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "1559733 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/research\/news\/ka_band",
- "width": 4288, "height": 2848, "thumbnail": {"width": 474, "height": 314},
- "imageInsightsToken": "ccid_M+5rVWMd*mid_714622A44D92987B0C0126D943BB969116A2F981*simid_608033145204376838",
+ "webSearchUrlPingSuffix": "DevEx,5126.1", "totalEstimatedMatches": 121, "nextOffset":
+ 30, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=684444DEFD0E6E0910881D307C93C8912AD59EF6&simid=608024894699013819",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Measuring Earth’s Magnetism
+ : Image of the Day", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.n9VLx6ZvZsm261TMfHqoRgHaF7&pid=Api",
+ "datePublished": "2017-01-28T01:08:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/84000\/84266\/magneticfieldchange_swa_201401-06_lrg.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=84266",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "2770723 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "earthobservatory.nasa.gov\/IOTD\/view.php?id=84266",
+ "width": 6000, "height": 4800, "thumbnail": {"width": 474, "height": 379},
+ "imageInsightsToken": "ccid_n9VLx6Zv*mid_684444DEFD0E6E0910881D307C93C8912AD59EF6*simid_608024894699013819",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "714622A44D92987B0C0126D943BB969116A2F981", "accentColor": "9F752C"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=5218DACE0AADBB9BE232E995A97F162A841C99C9&simid=608036529637753763",
- "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "NASA Television to Provide
- Coverage of European Mission Comet Landing | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.q4Lqp5DlUFTGq1e_3WmtSQHaEK&pid=Api",
- "datePublished": "2014-11-07T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/rosetta20141107-16.jpg",
- "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/www.nasa.gov\/press\/2014\/november\/nasa-television-to-provide-coverage-of-european-mission-comet-landing",
- "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "225769 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/press\/2014\/november\/nasa-television-to-provide...",
- "width": 1600, "height": 901, "thumbnail": {"width": 474, "height": 266},
- "imageInsightsToken": "ccid_q4Lqp5Dl*mid_5218DACE0AADBB9BE232E995A97F162A841C99C9*simid_608036529637753763",
- "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "5218DACE0AADBB9BE232E995A97F162A841C99C9", "accentColor": "716846"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=B1BB959D192C1C8C80B2F907927F80F118CC1A4A&simid=608010334643031424",
- "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Liège at Night : Image
- of the Day", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.r8rnhJYaZw6G_8fxGF2UVwHaE8&pid=Api",
- "datePublished": "2017-02-22T23:04:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/80000\/80145\/ISS034-E-005935_lrg.jpg",
- "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=80145",
- "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "339640 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "earthobservatory.nasa.gov\/IOTD\/view.php?id=80145",
- "width": 1440, "height": 960, "thumbnail": {"width": 474, "height": 316},
- "imageInsightsToken": "ccid_r8rnhJYa*mid_B1BB959D192C1C8C80B2F907927F80F118CC1A4A*simid_608010334643031424",
- "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "B1BB959D192C1C8C80B2F907927F80F118CC1A4A", "accentColor": "B84B01"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=E821B39EE448CFB2F969476451643B9F5A2F4D66&simid=608039652110174140",
- "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "NASA and Korean Space Agency
+ "imageId": "684444DEFD0E6E0910881D307C93C8912AD59EF6", "accentColor": "C70428"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=E821B39EE448CFB2F969476451643B9F5A2F4D66&simid=608039652233251852",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "NASA and Korean Space Agency
Discuss Space Cooperation | NASA", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.A6eut9uz-gJKfltrMSzf5AHaDt&pid=Api",
"datePublished": "2013-07-29T16:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/thumbnails\/image\/nasa_logo_press_release.jpg",
- "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "http:\/\/www.nasa.gov\/press\/2013\/july\/nasa-and-korean-space-agency-discuss-space-cooperation\/",
- "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "31132 B", "encodingFormat":
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/www.nasa.gov\/press\/2013\/july\/nasa-and-korean-space-agency-discuss-space-cooperation\/",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "31132 B", "encodingFormat":
"jpeg", "hostPageDisplayUrl": "www.nasa.gov\/press\/2013\/july\/nasa-and-korean-space-agency-discuss...",
"width": 946, "height": 473, "thumbnail": {"width": 474, "height": 237}, "imageInsightsToken":
- "ccid_A6eut9uz*mid_E821B39EE448CFB2F969476451643B9F5A2F4D66*simid_608039652110174140",
+ "ccid_A6eut9uz*mid_E821B39EE448CFB2F969476451643B9F5A2F4D66*simid_608039652233251852",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
"imageId": "E821B39EE448CFB2F969476451643B9F5A2F4D66", "accentColor": "C22209"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4&simid=608024026974588153",
- "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Logo: NASA Pathways Agency
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=04B1569F93AAFB7E11BC7AE4E821322328701E54&simid=608028403665667704",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Expedition 46 Soyuz Liftoff
+ | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.a8eEHboMtODTOxJaBNSOcgHaEo&pid=Api",
+ "datePublished": "2018-06-16T22:54:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/styles\/full_width\/public\/thumbnails\/image\/23400755339_2958be3888_o.jpg?itok=yOirgVdd",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.nasa.gov\/image-feature\/expedition-46-soyuz-liftoff\/",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "70853 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/image-feature\/expedition-46-soyuz-liftoff",
+ "width": 985, "height": 617, "thumbnail": {"width": 474, "height": 296}, "imageInsightsToken":
+ "ccid_a8eEHboM*mid_04B1569F93AAFB7E11BC7AE4E821322328701E54*simid_608028403665667704",
+ "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
+ "imageId": "04B1569F93AAFB7E11BC7AE4E821322328701E54", "accentColor": "B95C12"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4&simid=608024027111034107",
+ "webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Logo: NASA Pathways Agency
Cross-Center Collaboration (PAXC) | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.2GBhgY5EtfRZvRonPK0ZCwHaF-&pid=Api",
"datePublished": "2018-02-12T01:08:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/thumbnails\/image\/lorennewton_afrc_tshirt_white_bor.jpg",
- "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/armstrong\/multimedia\/imagegallery\/logos_patches\/PAXC.html",
- "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "389357 B", "encodingFormat":
+ "contentUrlPingSuffix": "DevEx,5045.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/armstrong\/multimedia\/imagegallery\/logos_patches\/PAXC.html",
+ "hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "389357 B", "encodingFormat":
"jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/armstrong\/multimedia\/imagegallery...",
"width": 1900, "height": 1535, "thumbnail": {"width": 474, "height": 382},
- "imageInsightsToken": "ccid_2GBhgY5E*mid_EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4*simid_608024026974588153",
+ "imageInsightsToken": "ccid_2GBhgY5E*mid_EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4*simid_608024027111034107",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
"imageId": "EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4", "accentColor": "001DCB"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC&simid=608024005496998736",
- "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "STS-112 Spacewalk | NASA",
- "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.EsGJPmTsC9VQmgINTTvSBwHaHa&pid=Api",
- "datePublished": "2016-04-08T16:08:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/sts112-709-073k.jpg",
- "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
- "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "6125356 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
- "width": 5723, "height": 5723, "thumbnail": {"width": 474, "height": 474},
- "imageInsightsToken": "ccid_EsGJPmTs*mid_5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC*simid_608024005496998736",
- "insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC", "accentColor": "2E4673"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=AB803D51B52F5B59AFEC87113AFF4D33D582177F&simid=608040485333568492",
- "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "NASA - Canadian Space Agency
- astronaut Chris Hadfield", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.QC_lnNGu95Am_PXgsR9FowHaE7&pid=Api",
- "datePublished": "2012-08-06T19:27:00.0000000Z", "contentUrl": "https:\/\/www.nasa.gov\/images\/content\/673702main_jsc2012e107922_full.jpg",
- "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/jsc2012e107922.html",
- "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "1970824 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery...",
- "width": 4256, "height": 2832, "thumbnail": {"width": 474, "height": 315},
- "imageInsightsToken": "ccid_QC\/lnNGu*mid_AB803D51B52F5B59AFEC87113AFF4D33D582177F*simid_608040485333568492",
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=EFEA92A054B7A2C864B71B940D2479FC4C00BE5F&simid=608049947245219095",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Rosetta: To Chase a Comet
+ | NASA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.cdNtihWesNSPnW1abH1AwAHaFV&pid=Api",
+ "datePublished": "2014-01-17T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/rosetta20140117.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "http:\/\/www.nasa.gov\/jpl\/news\/rosetta20140117",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "896500 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/jpl\/news\/rosetta20140117",
+ "width": 2971, "height": 2141, "thumbnail": {"width": 474, "height": 341},
+ "imageInsightsToken": "ccid_cdNtihWe*mid_EFEA92A054B7A2C864B71B940D2479FC4C00BE5F*simid_608049947245219095",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "AB803D51B52F5B59AFEC87113AFF4D33D582177F", "accentColor": "144473"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=4DE98EF3B797DB8C297251CBBA1243A52BE1F036&simid=608031551772495681",
- "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "The European Space Agency''s
+ "imageId": "EFEA92A054B7A2C864B71B940D2479FC4C00BE5F", "accentColor": "604B0C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=DAB7E30BDD1F92ECD06B26158A4A720EEED8F4B8&simid=608048796210956394",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "NASA - Launch and Landing",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP._nhv4QKfPAA8ZmGw0b090gHaE7&pid=Api",
+ "datePublished": "2008-03-11T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/images\/content\/220176main_launch-l.jpg",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.nasa.gov\/mission_pages\/shuttle\/shuttlemissions\/sts123\/launch\/index.html",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "3267812 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/mission_pages\/shuttle\/shuttlemissions\/sts123\/launch...",
+ "width": 3000, "height": 1995, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_Kr9uCXjX*mid_DAB7E30BDD1F92ECD06B26158A4A720EEED8F4B8*simid_608048796210956394",
+ "imageId": "DAB7E30BDD1F92ECD06B26158A4A720EEED8F4B8", "accentColor": "C97A02"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=4DE98EF3B797DB8C297251CBBA1243A52BE1F036&simid=608031551895636354",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "The European Space Agency''s
Automated Transfer Vehicle-4 | NASA", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.84FPV-IcQj8VQeKVLigcqgHaE8&pid=Api",
- "datePublished": "2018-05-30T19:04:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/images\/756494main_iss036e007747_full.jpg",
- "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/iss036e007747.html",
- "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "2356124 B", "encodingFormat":
+ "datePublished": "2018-07-17T18:50:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/images\/756494main_iss036e007747_full.jpg",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/iss036e007747.html",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "2356124 B", "encodingFormat":
"jpeg", "hostPageDisplayUrl": "www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/iss036e007747...",
"width": 6048, "height": 4032, "thumbnail": {"width": 474, "height": 316},
- "imageInsightsToken": "ccid_84FPV+Ic*mid_4DE98EF3B797DB8C297251CBBA1243A52BE1F036*simid_608031551772495681",
+ "imageInsightsToken": "ccid_84FPV+Ic*mid_4DE98EF3B797DB8C297251CBBA1243A52BE1F036*simid_608031551895636354",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
"imageId": "4DE98EF3B797DB8C297251CBBA1243A52BE1F036", "accentColor": "856846"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=0B1564E9E913863F52101B940D2479FC4C00BE5F&simid=608027402797449744",
- "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Rosetta: To Chase a Comet
- | NASA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.cdNtihWesNSPnW1abH1AwAHaFV&pid=Api",
- "datePublished": "2014-01-17T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/rosetta20140117.jpg",
- "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "https:\/\/www.nasa.gov\/jpl\/news\/rosetta20140117",
- "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "896500 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/jpl\/news\/rosetta20140117",
- "width": 2971, "height": 2141, "thumbnail": {"width": 474, "height": 341},
- "imageInsightsToken": "ccid_cdNtihWe*mid_0B1564E9E913863F52101B940D2479FC4C00BE5F*simid_608027402797449744",
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC&simid=608024005633377659",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "STS-112 Spacewalk | NASA",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.EsGJPmTsC9VQmgINTTvSBwHaHa&pid=Api",
+ "datePublished": "2016-04-08T16:08:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/sts112-709-073k.jpg",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "6125356 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
+ "width": 5723, "height": 5723, "thumbnail": {"width": 474, "height": 474},
+ "imageInsightsToken": "ccid_lEEY0Yi5*mid_5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC*simid_608024005633377659",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "0B1564E9E913863F52101B940D2479FC4C00BE5F", "accentColor": "604B0C"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=99C95D9A3BE90005F1E8736A38F4561456288050&simid=608022721343916043",
- "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "CME Accompanied X1.6 Solar
- Flare | NASA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.qa-ti6FmEZ8NA3g3DO12kAHaHa&pid=Api",
- "datePublished": "2014-09-12T11:48:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/styles\/800x600_autoletterbox\/public\/20140910_2006_c3_1024.jpg?itok=R06G73-6",
- "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "http:\/\/www.nasa.gov\/content\/goddard\/cme-accompanied-x16-solar-flare\/",
- "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "516911 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/content\/goddard\/cme-accompanied-x16-solar-flare",
- "width": 600, "height": 600, "thumbnail": {"width": 474, "height": 474}, "imageInsightsToken":
- "ccid_qa+ti6Fm*mid_99C95D9A3BE90005F1E8736A38F4561456288050*simid_608022721343916043",
+ "imageId": "5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC", "accentColor": "2E4673"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=B54B589914B742AD8380FED73A8ECDA8F1C767C7&simid=608042890616047275",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "NASA - NASA''s NEPA Program
+ and the Environmental Protection Agency", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.nq2zXyebmen2s9fkM1Bh8QHaFl&pid=Api",
+ "datePublished": "2018-07-19T00:25:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/images\/content\/483716main_EPA-Flag.jpg",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/www.nasa.gov\/agency\/nepa\/EPA-Information.html",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "35738 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/agency\/nepa\/EPA-Information.html",
+ "width": 325, "height": 245, "thumbnail": {"width": 474, "height": 357}, "imageInsightsToken":
+ "ccid_nq2zXyeb*mid_B54B589914B742AD8380FED73A8ECDA8F1C767C7*simid_608042890616047275",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "99C95D9A3BE90005F1E8736A38F4561456288050", "accentColor": "000108"}],
+ "imageId": "B54B589914B742AD8380FED73A8ECDA8F1C767C7", "accentColor": "0E4B7B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=6BC5B6EE4DD13E705792E40EC64EA0104C236E4D&simid=608025367146595539",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "JSC Features - Unleash
+ your inner innovator Nov. 1 to 2 - https:\/\/roundupreads.jsc.nasa.gov ...",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.x8aKajmIaAz-wKuDrj0DswHaFk&pid=Api",
+ "datePublished": "2016-10-25T02:44:00.0000000Z", "contentUrl": "http:\/\/jscfeatures.jsc.nasa.gov\/images\/imagefull-1853.png",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "http:\/\/jscfeatures.jsc.nasa.gov\/pages.ashx\/534\/Unleash%20your%20inner%20innovator%20Nov%201%20to%202",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "148400 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "jscfeatures.jsc.nasa.gov\/pages.ashx\/534\/Unleash
+ your inner...", "width": 928, "height": 697, "thumbnail": {"width": 474, "height":
+ 356}, "imageInsightsToken": "ccid_x8aKajmI*mid_6BC5B6EE4DD13E705792E40EC64EA0104C236E4D*simid_608025367146595539",
+ "imageId": "6BC5B6EE4DD13E705792E40EC64EA0104C236E4D", "accentColor": "035CC8"}],
"queryExpansions": [{"text": "Travel Agency", "displayText": "Travel", "webSearchUrl":
"https:\/\/www.bing.com\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
"webSearchUrlPingSuffix": "DevEx,5130.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
@@ -316,5 +313,5 @@ http_interactions:
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Personal+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
"pivotSuggestions": [{"pivot": "agncy (site:nasa.gov)", "suggestions": []}]}'
http_version:
- recorded_at: Tue, 03 Jul 2018 18:54:53 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:46 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_image_search_execute_query.yml b/spec/vcr_cassettes/bing_v6_image_search_execute_query.yml
index fd59c7a9e7..c957e482a3 100644
--- a/spec/vcr_cassettes/bing_v6_image_search_execute_query.yml
+++ b/spec/vcr_cassettes/bing_v6_image_search_execute_query.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=10&mkt=en-US&offset=20&q=agncy%20(site:nasa.gov)&safeSearch=moderate&traffictype=test
+ uri: https://www.bingapis.com/api/v6/images/search?AppId=&count=10&mkt=en-US&offset=20&q=agncy%20(site:nasa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -29,7 +27,7 @@ http_interactions:
Pragma:
- no-cache
Content-Length:
- - '51490'
+ - '51644'
Content-Type:
- application/json; charset=utf-8
Expires:
@@ -39,70 +37,70 @@ http_interactions:
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=1F1B41E0709C609E14724DC1714B6141; path=/; expires=Sun, 28-Jul-2019 18:54:53
+ - MUID=108F4406CA3461C633164851CB3B60F8; path=/; expires=Fri, 20-Sep-2019 23:58:46
GMT; domain=bingapis.com
- - MUIDB=1F1B41E0709C609E14724DC1714B6141; path=/; httponly; expires=Sun, 28-Jul-2019
- 18:54:53 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Fri, 03-Jul-2020 18:54:53 GMT;
+ - MUIDB=108F4406CA3461C633164851CB3B60F8; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:46 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:46 GMT;
path=/
- - SRCHUID=V=2&GUID=C0688EA403B347028DEED5841C979078&dmnchg=1; domain=.bingapis.com;
- expires=Fri, 03-Jul-2020 18:54:53 GMT; path=/
- - SRCHUSR=DOB=20180703; domain=.bingapis.com; expires=Fri, 03-Jul-2020 18:54:53
+ - SRCHUID=V=2&GUID=20D5219AEDD64F7BAF5FCF571C9E6F09&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:46 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:46
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=183EC2F24F7265A52C53CED34EA564D9; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=1F6AF32FC3746D330CE4FF78C27B6CA4; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Sun, 28-Jul-2019 18:54:53 GMT; domain=bingapis.com
- - _SS=SID=183EC2F24F7265A52C53CED34EA564D9; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:46 GMT; domain=bingapis.com
+ - _SS=SID=1F6AF32FC3746D330CE4FF78C27B6CA4; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 0BED869927BC44069FBF7B32FDF0FAAB
+ - 86C861CC72AF4DE9A6C9A6AFEE8E9835
X-Msedge-Clientid:
- - 1F1B41E0709C609E14724DC1714B6141
+ - 108F4406CA3461C633164851CB3B60F8
X-Msapi-Userstate:
- - 04cf
+ - d62d
X-Msedge-Ref:
- - 'Ref A: 0BED869927BC44069FBF7B32FDF0FAAB Ref B: CO1EDGE0421 Ref C: 2018-07-03T18:54:53Z'
+ - 'Ref A: 86C861CC72AF4DE9A6C9A6AFEE8E9835 Ref B: BAYEDGE0110 Ref C: 2018-08-26T23:58:46Z'
Date:
- - Tue, 03 Jul 2018 18:54:52 GMT
+ - Sun, 26 Aug 2018 23:58:46 GMT
body:
encoding: UTF-8
- string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8972D7E00B4A4A2F8C0119495569E6A5&CID=1F1B41E0709C609E14724DC1714B6141&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8972D7E00B4A4A2F8C0119495569E6A5&CID=1F1B41E0709C609E14724DC1714B6141&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "Images", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=27BB6DF3E5614310AE8A21CC794D9F0F&CID=108F4406CA3461C633164851CB3B60F8&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=27BB6DF3E5614310AE8A21CC794D9F0F&CID=108F4406CA3461C633164851CB3B60F8&Type=Event.CPT&DATA=0"},
"webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=agncy%20(site:nasa.gov)&FORM=OIIARP",
- "webSearchUrlPingSuffix": "DevEx,5126.1", "totalEstimatedMatches": 112, "nextOffset":
- 32, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC&simid=608024005496998736",
- "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "STS-112 Spacewalk | NASA",
- "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.EsGJPmTsC9VQmgINTTvSBwHaHa&pid=Api",
- "datePublished": "2016-04-08T16:08:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/sts112-709-073k.jpg",
- "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
- "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "6125356 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
- "width": 5723, "height": 5723, "thumbnail": {"width": 474, "height": 474},
- "imageInsightsToken": "ccid_EsGJPmTs*mid_5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC*simid_608024005496998736",
+ "webSearchUrlPingSuffix": "DevEx,5126.1", "totalEstimatedMatches": 121, "nextOffset":
+ 30, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=684444DEFD0E6E0910881D307C93C8912AD59EF6&simid=608024894699013819",
+ "webSearchUrlPingSuffix": "DevEx,5025.1", "name": "Measuring Earth’s Magnetism
+ : Image of the Day", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.n9VLx6ZvZsm261TMfHqoRgHaF7&pid=Api",
+ "datePublished": "2017-01-28T01:08:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/84000\/84266\/magneticfieldchange_swa_201401-06_lrg.jpg",
+ "contentUrlPingSuffix": "DevEx,5027.1", "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=84266",
+ "hostPageUrlPingSuffix": "DevEx,5026.1", "contentSize": "2770723 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "earthobservatory.nasa.gov\/IOTD\/view.php?id=84266",
+ "width": 6000, "height": 4800, "thumbnail": {"width": 474, "height": 379},
+ "imageInsightsToken": "ccid_n9VLx6Zv*mid_684444DEFD0E6E0910881D307C93C8912AD59EF6*simid_608024894699013819",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC", "accentColor": "2E4673"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=9ECEA93DE987DA14237D0DA341FDF05BE138D2F4&simid=608033978413025727",
- "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "2016 Agency Honor Awards
- | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.YJmEL9qiP7yqMmD3PFKFRQHaDt&pid=Api",
- "datePublished": "2018-01-28T00:29:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/thumbnails\/image\/nasa-logo-web-rgb.png",
- "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/about\/star\/nasa-honor-awards-2016.html",
- "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "125881 B", "encodingFormat":
- "png", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/about\/star\/nasa-honor-awards...",
- "width": 3400, "height": 1700, "thumbnail": {"width": 474, "height": 237},
- "imageInsightsToken": "ccid_YJmEL9qi*mid_9ECEA93DE987DA14237D0DA341FDF05BE138D2F4*simid_608033978413025727",
+ "imageId": "684444DEFD0E6E0910881D307C93C8912AD59EF6", "accentColor": "C70428"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=E821B39EE448CFB2F969476451643B9F5A2F4D66&simid=608039652233251852",
+ "webSearchUrlPingSuffix": "DevEx,5031.1", "name": "NASA and Korean Space Agency
+ Discuss Space Cooperation | NASA", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.A6eut9uz-gJKfltrMSzf5AHaDt&pid=Api",
+ "datePublished": "2013-07-29T16:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/thumbnails\/image\/nasa_logo_press_release.jpg",
+ "contentUrlPingSuffix": "DevEx,5033.1", "hostPageUrl": "http:\/\/www.nasa.gov\/press\/2013\/july\/nasa-and-korean-space-agency-discuss-space-cooperation\/",
+ "hostPageUrlPingSuffix": "DevEx,5032.1", "contentSize": "31132 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/press\/2013\/july\/nasa-and-korean-space-agency-discuss...",
+ "width": 946, "height": 473, "thumbnail": {"width": 474, "height": 237}, "imageInsightsToken":
+ "ccid_A6eut9uz*mid_E821B39EE448CFB2F969476451643B9F5A2F4D66*simid_608039652233251852",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "9ECEA93DE987DA14237D0DA341FDF05BE138D2F4", "accentColor": "C42007"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=9DBC7C2708AB5E61A41852427D8FAEB30A3A728B&simid=608036821680194409",
- "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Catalog Page for PIA08118",
- "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.aFLoh_rSlTQSVyPQ4hE7wQHaFj&pid=Api",
- "datePublished": "2018-04-22T17:47:00.0000000Z", "contentUrl": "http:\/\/photojournal.jpl.nasa.gov\/jpeg\/PIA08118.jpg",
- "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "http:\/\/photojournal.jpl.nasa.gov\/catalog\/PIA08118",
- "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "41463 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "photojournal.jpl.nasa.gov\/catalog\/PIA08118",
- "width": 516, "height": 387, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
- "ccid_aFLoh\/rS*mid_9DBC7C2708AB5E61A41852427D8FAEB30A3A728B*simid_608036821680194409",
+ "imageId": "E821B39EE448CFB2F969476451643B9F5A2F4D66", "accentColor": "C22209"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=04B1569F93AAFB7E11BC7AE4E821322328701E54&simid=608028403665667704",
+ "webSearchUrlPingSuffix": "DevEx,5037.1", "name": "Expedition 46 Soyuz Liftoff
+ | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.a8eEHboMtODTOxJaBNSOcgHaEo&pid=Api",
+ "datePublished": "2018-06-16T22:54:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/styles\/full_width\/public\/thumbnails\/image\/23400755339_2958be3888_o.jpg?itok=yOirgVdd",
+ "contentUrlPingSuffix": "DevEx,5039.1", "hostPageUrl": "https:\/\/www.nasa.gov\/image-feature\/expedition-46-soyuz-liftoff\/",
+ "hostPageUrlPingSuffix": "DevEx,5038.1", "contentSize": "70853 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/image-feature\/expedition-46-soyuz-liftoff",
+ "width": 985, "height": 617, "thumbnail": {"width": 474, "height": 296}, "imageInsightsToken":
+ "ccid_a8eEHboM*mid_04B1569F93AAFB7E11BC7AE4E821322328701E54*simid_608028403665667704",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "9DBC7C2708AB5E61A41852427D8FAEB30A3A728B", "accentColor": "C76F04"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4&simid=608024026974588153",
+ "imageId": "04B1569F93AAFB7E11BC7AE4E821322328701E54", "accentColor": "B95C12"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4&simid=608024027111034107",
"webSearchUrlPingSuffix": "DevEx,5043.1", "name": "Logo: NASA Pathways Agency
Cross-Center Collaboration (PAXC) | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.2GBhgY5EtfRZvRonPK0ZCwHaF-&pid=Api",
"datePublished": "2018-02-12T01:08:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/thumbnails\/image\/lorennewton_afrc_tshirt_white_bor.jpg",
@@ -110,73 +108,74 @@ http_interactions:
"hostPageUrlPingSuffix": "DevEx,5044.1", "contentSize": "389357 B", "encodingFormat":
"jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/armstrong\/multimedia\/imagegallery...",
"width": 1900, "height": 1535, "thumbnail": {"width": 474, "height": 382},
- "imageInsightsToken": "ccid_2GBhgY5E*mid_EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4*simid_608024026974588153",
+ "imageInsightsToken": "ccid_2GBhgY5E*mid_EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4*simid_608024027111034107",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
"imageId": "EDD3D17D84ADFD69EF5007660FF2475E9C17D3A4", "accentColor": "001DCB"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=04B1569F93AAFB7E11BC796F0FBB8AEEB71F8149&simid=608022373456285672",
- "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Expedition 46 Soyuz Liftoff
- | NASA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.1lbKZdJolvWka65qRaYnogHaEp&pid=Api",
- "datePublished": "2018-05-04T21:51:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/thumbnails\/image\/23400755339_2958be3888_o.jpg",
- "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "https:\/\/www.nasa.gov\/image-feature\/expedition-46-soyuz-liftoff",
- "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "9383418 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/image-feature\/expedition-46-soyuz-liftoff",
- "width": 5759, "height": 3610, "thumbnail": {"width": 474, "height": 297},
- "imageInsightsToken": "ccid_1lbKZdJo*mid_04B1569F93AAFB7E11BC796F0FBB8AEEB71F8149*simid_608022373456285672",
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=EFEA92A054B7A2C864B71B940D2479FC4C00BE5F&simid=608049947245219095",
+ "webSearchUrlPingSuffix": "DevEx,5049.1", "name": "Rosetta: To Chase a Comet
+ | NASA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.cdNtihWesNSPnW1abH1AwAHaFV&pid=Api",
+ "datePublished": "2014-01-17T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/rosetta20140117.jpg",
+ "contentUrlPingSuffix": "DevEx,5051.1", "hostPageUrl": "http:\/\/www.nasa.gov\/jpl\/news\/rosetta20140117",
+ "hostPageUrlPingSuffix": "DevEx,5050.1", "contentSize": "896500 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/jpl\/news\/rosetta20140117",
+ "width": 2971, "height": 2141, "thumbnail": {"width": 474, "height": 341},
+ "imageInsightsToken": "ccid_cdNtihWe*mid_EFEA92A054B7A2C864B71B940D2479FC4C00BE5F*simid_608049947245219095",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "04B1569F93AAFB7E11BC796F0FBB8AEEB71F8149", "accentColor": "C55806"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=4DE98EF3B797DB8C297251CBBA1243A52BE1F036&simid=608031551772495681",
- "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "The European Space Agency''s
+ "imageId": "EFEA92A054B7A2C864B71B940D2479FC4C00BE5F", "accentColor": "604B0C"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=DAB7E30BDD1F92ECD06B26158A4A720EEED8F4B8&simid=608048796210956394",
+ "webSearchUrlPingSuffix": "DevEx,5055.1", "name": "NASA - Launch and Landing",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP._nhv4QKfPAA8ZmGw0b090gHaE7&pid=Api",
+ "datePublished": "2008-03-11T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/images\/content\/220176main_launch-l.jpg",
+ "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.nasa.gov\/mission_pages\/shuttle\/shuttlemissions\/sts123\/launch\/index.html",
+ "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "3267812 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/mission_pages\/shuttle\/shuttlemissions\/sts123\/launch...",
+ "width": 3000, "height": 1995, "thumbnail": {"width": 474, "height": 315},
+ "imageInsightsToken": "ccid_Kr9uCXjX*mid_DAB7E30BDD1F92ECD06B26158A4A720EEED8F4B8*simid_608048796210956394",
+ "imageId": "DAB7E30BDD1F92ECD06B26158A4A720EEED8F4B8", "accentColor": "C97A02"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=4DE98EF3B797DB8C297251CBBA1243A52BE1F036&simid=608031551895636354",
+ "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "The European Space Agency''s
Automated Transfer Vehicle-4 | NASA", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.84FPV-IcQj8VQeKVLigcqgHaE8&pid=Api",
- "datePublished": "2018-05-30T19:04:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/images\/756494main_iss036e007747_full.jpg",
- "contentUrlPingSuffix": "DevEx,5057.1", "hostPageUrl": "http:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/iss036e007747.html",
- "hostPageUrlPingSuffix": "DevEx,5056.1", "contentSize": "2356124 B", "encodingFormat":
+ "datePublished": "2018-07-17T18:50:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/images\/756494main_iss036e007747_full.jpg",
+ "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "http:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/iss036e007747.html",
+ "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "2356124 B", "encodingFormat":
"jpeg", "hostPageDisplayUrl": "www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/iss036e007747...",
"width": 6048, "height": 4032, "thumbnail": {"width": 474, "height": 316},
- "imageInsightsToken": "ccid_84FPV+Ic*mid_4DE98EF3B797DB8C297251CBBA1243A52BE1F036*simid_608031551772495681",
+ "imageInsightsToken": "ccid_84FPV+Ic*mid_4DE98EF3B797DB8C297251CBBA1243A52BE1F036*simid_608031551895636354",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
"imageId": "4DE98EF3B797DB8C297251CBBA1243A52BE1F036", "accentColor": "856846"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=AB803D51B52F5B59AFEC87113AFF4D33D582177F&simid=608040485333568492",
- "webSearchUrlPingSuffix": "DevEx,5061.1", "name": "NASA - Canadian Space Agency
- astronaut Chris Hadfield", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.QC_lnNGu95Am_PXgsR9FowHaE7&pid=Api",
- "datePublished": "2012-08-06T19:27:00.0000000Z", "contentUrl": "https:\/\/www.nasa.gov\/images\/content\/673702main_jsc2012e107922_full.jpg",
- "contentUrlPingSuffix": "DevEx,5063.1", "hostPageUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery\/jsc2012e107922.html",
- "hostPageUrlPingSuffix": "DevEx,5062.1", "contentSize": "1970824 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/mission_pages\/station\/multimedia\/gallery...",
- "width": 4256, "height": 2832, "thumbnail": {"width": 474, "height": 315},
- "imageInsightsToken": "ccid_QC\/lnNGu*mid_AB803D51B52F5B59AFEC87113AFF4D33D582177F*simid_608040485333568492",
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC&simid=608024005633377659",
+ "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "STS-112 Spacewalk | NASA",
+ "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.EsGJPmTsC9VQmgINTTvSBwHaHa&pid=Api",
+ "datePublished": "2016-04-08T16:08:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/sts112-709-073k.jpg",
+ "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
+ "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "6125356 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/centers\/marshall\/history\/launch_of_sts-112.html",
+ "width": 5723, "height": 5723, "thumbnail": {"width": 474, "height": 474},
+ "imageInsightsToken": "ccid_lEEY0Yi5*mid_5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC*simid_608024005633377659",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "AB803D51B52F5B59AFEC87113AFF4D33D582177F", "accentColor": "144473"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=8DF1130B541297C43A481084E142ECBE9A5AE422&simid=608034824519486421",
- "webSearchUrlPingSuffix": "DevEx,5067.1", "name": "NASA - 2007 Heads of Agency
- Joint Statement | NASA", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.BGnl8xs_uhYVcp-j5-0onwHaF7&pid=Api",
- "datePublished": "2007-01-23T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/styles\/full_width\/public\/thumbnails\/image\/ed08-0172-04.jpg?itok=ispxg9rX",
- "contentUrlPingSuffix": "DevEx,5069.1", "hostPageUrl": "http:\/\/www.nasa.gov\/about\/highlights\/hoa_20070123.html",
- "hostPageUrlPingSuffix": "DevEx,5068.1", "contentSize": "21822 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/about\/highlights\/hoa_20070123.html",
- "width": 985, "height": 788, "thumbnail": {"width": 474, "height": 379}, "imageInsightsToken":
- "ccid_BGnl8xs\/*mid_8DF1130B541297C43A481084E142ECBE9A5AE422*simid_608034824519486421",
- "imageId": "8DF1130B541297C43A481084E142ECBE9A5AE422", "accentColor": "1E4A66"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=0B1564E9E913863F52101B940D2479FC4C00BE5F&simid=608027402797449744",
- "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "Rosetta: To Chase a Comet
- | NASA", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.cdNtihWesNSPnW1abH1AwAHaFV&pid=Api",
- "datePublished": "2014-01-17T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/rosetta20140117.jpg",
- "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "https:\/\/www.nasa.gov\/jpl\/news\/rosetta20140117",
- "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "896500 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "https:\/\/www.nasa.gov\/jpl\/news\/rosetta20140117",
- "width": 2971, "height": 2141, "thumbnail": {"width": 474, "height": 341},
- "imageInsightsToken": "ccid_cdNtihWe*mid_0B1564E9E913863F52101B940D2479FC4C00BE5F*simid_608027402797449744",
+ "imageId": "5323DD4C8A973FF8891EF39CC31F12A75CAA9BDC", "accentColor": "2E4673"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=B54B589914B742AD8380FED73A8ECDA8F1C767C7&simid=608042890616047275",
+ "webSearchUrlPingSuffix": "DevEx,5073.1", "name": "NASA - NASA''s NEPA Program
+ and the Environmental Protection Agency", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.nq2zXyebmen2s9fkM1Bh8QHaFl&pid=Api",
+ "datePublished": "2018-07-19T00:25:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/images\/content\/483716main_EPA-Flag.jpg",
+ "contentUrlPingSuffix": "DevEx,5075.1", "hostPageUrl": "http:\/\/www.nasa.gov\/agency\/nepa\/EPA-Information.html",
+ "hostPageUrlPingSuffix": "DevEx,5074.1", "contentSize": "35738 B", "encodingFormat":
+ "jpeg", "hostPageDisplayUrl": "www.nasa.gov\/agency\/nepa\/EPA-Information.html",
+ "width": 325, "height": 245, "thumbnail": {"width": 474, "height": 357}, "imageInsightsToken":
+ "ccid_nq2zXyeb*mid_B54B589914B742AD8380FED73A8ECDA8F1C767C7*simid_608042890616047275",
"insightsMetadata": {"shoppingSourcesCount": 0, "recipeSourcesCount": 0},
- "imageId": "0B1564E9E913863F52101B940D2479FC4C00BE5F", "accentColor": "604B0C"},
- {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=87281CA3F6B33C17EE5640E5A9D8718D606D087B&simid=608027089243344450",
- "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "Space Images | Two Models
- of Black Hole Spin (Artist''s Concept)", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.2ITmqGL1JSpwSVte9-st4gHaE8&pid=Api",
- "datePublished": "2016-11-22T19:45:00.0000000Z", "contentUrl": "http:\/\/www.jpl.nasa.gov\/spaceimages\/images\/mediumsize\/PIA16697_ip.jpg",
- "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "http:\/\/www.jpl.nasa.gov\/spaceimages\/details.php?id=PIA16697",
- "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "65803 B", "encodingFormat":
- "jpeg", "hostPageDisplayUrl": "www.jpl.nasa.gov\/spaceimages\/details.php?id=PIA16697",
- "width": 900, "height": 600, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
- "ccid_2ITmqGL1*mid_87281CA3F6B33C17EE5640E5A9D8718D606D087B*simid_608027089243344450",
- "imageId": "87281CA3F6B33C17EE5640E5A9D8718D606D087B", "accentColor": "BD800E"}],
+ "imageId": "B54B589914B742AD8380FED73A8ECDA8F1C767C7", "accentColor": "0E4B7B"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=6BC5B6EE4DD13E705792E40EC64EA0104C236E4D&simid=608025367146595539",
+ "webSearchUrlPingSuffix": "DevEx,5079.1", "name": "JSC Features - Unleash
+ your inner innovator Nov. 1 to 2 - https:\/\/roundupreads.jsc.nasa.gov ...",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.x8aKajmIaAz-wKuDrj0DswHaFk&pid=Api",
+ "datePublished": "2016-10-25T02:44:00.0000000Z", "contentUrl": "http:\/\/jscfeatures.jsc.nasa.gov\/images\/imagefull-1853.png",
+ "contentUrlPingSuffix": "DevEx,5081.1", "hostPageUrl": "http:\/\/jscfeatures.jsc.nasa.gov\/pages.ashx\/534\/Unleash%20your%20inner%20innovator%20Nov%201%20to%202",
+ "hostPageUrlPingSuffix": "DevEx,5080.1", "contentSize": "148400 B", "encodingFormat":
+ "png", "hostPageDisplayUrl": "jscfeatures.jsc.nasa.gov\/pages.ashx\/534\/Unleash
+ your inner...", "width": 928, "height": 697, "thumbnail": {"width": 474, "height":
+ 356}, "imageInsightsToken": "ccid_x8aKajmI*mid_6BC5B6EE4DD13E705792E40EC64EA0104C236E4D*simid_608025367146595539",
+ "imageId": "6BC5B6EE4DD13E705792E40EC64EA0104C236E4D", "accentColor": "035CC8"}],
"queryExpansions": [{"text": "Travel Agency", "displayText": "Travel", "webSearchUrl":
"https:\/\/www.bing.com\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
"webSearchUrlPingSuffix": "DevEx,5130.1", "searchLink": "https:\/\/www.bingapis.com\/api\/v6\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
@@ -314,5 +313,5 @@ http_interactions:
"thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Personal+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
"pivotSuggestions": [{"pivot": "agncy (site:nasa.gov)", "suggestions": []}]}'
http_version:
- recorded_at: Tue, 03 Jul 2018 18:54:53 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:46 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
new file mode 100644
index 0000000000..0474f945b8
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
@@ -0,0 +1,73 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - b1rd1sth3p4ssw0rd
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Content-Length:
+ - '243'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 21:45:12 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Set-Cookie:
+ - MUID=18543E3CE8B56C9110603260E9626D6C; path=/; expires=Wed, 25-Sep-2019 21:46:12
+ GMT; domain=bingapis.com
+ - MUIDB=18543E3CE8B56C9110603260E9626D6C; path=/; httponly; expires=Wed, 25-Sep-2019
+ 21:46:12 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Mon, 31-Aug-2020 21:46:12 GMT;
+ path=/
+ - SRCHUID=V=2&GUID=836FCB90E2D4466587BA71F64FF4936D&dmnchg=1; domain=.bingapis.com;
+ expires=Mon, 31-Aug-2020 21:46:12 GMT; path=/
+ - SRCHUSR=DOB=20180831; domain=.bingapis.com; expires=Mon, 31-Aug-2020 21:46:12
+ GMT; path=/
+ - _EDGE_S=mkt=en-us&F=1&SID=1654E25FAD2F692B0396EE03ACF86818; path=/; httponly;
+ domain=bingapis.com
+ - _EDGE_V=1; path=/; httponly; expires=Wed, 25-Sep-2019 21:46:12 GMT; domain=bingapis.com
+ - _SS=SID=1654E25FAD2F692B0396EE03ACF86818; domain=.bingapis.com; path=/
+ Bingapis-Traceid:
+ - 51E0B4D8196A4F228220064870D13DE8
+ X-Msedge-Clientid:
+ - 18543E3CE8B56C9110603260E9626D6C
+ X-Msapi-Userstate:
+ - c2c2
+ Bingapis-Market:
+ - en-US
+ X-Msedge-Ref:
+ - 'Ref A: 51E0B4D8196A4F228220064870D13DE8 Ref B: CO1EDGE0315 Ref C: 2018-08-31T21:46:12Z'
+ Date:
+ - Fri, 31 Aug 2018 21:46:12 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5FE48C8E719248F2A57103F3D6F83903&CID=18543E3CE8B56C9110603260E9626D6C&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5FE48C8E719248F2A57103F3D6F83903&CID=18543E3CE8B56C9110603260E9626D6C&Type=Event.CPT&DATA=0"},
+ "rankingResponse": {}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:46:12 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml
index da70f7e771..edf6faf776 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=sailing%20dingies&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=sailing%20dingies&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,206 +25,182 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '4082'
+ - '3303'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:53 GMT
+ - Sun, 26 Aug 2018 23:57:49 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=158306D548C768BE07C00D08495069C0; path=/; expires=Tue, 21-May-2019 23:26:54
+ - MUID=00333678903E6E282D803A2F91316FB1; path=/; expires=Fri, 20-Sep-2019 23:58:49
GMT; domain=bingapis.com
- - MUIDB=158306D548C768BE07C00D08495069C0; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:54 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:53 GMT;
+ - MUIDB=00333678903E6E282D803A2F91316FB1; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:49 GMT;
path=/
- - SRCHUID=V=2&GUID=3FA87AFEFC1647FCBD297B480EBDA7CC&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:53 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:53
+ - SRCHUID=V=2&GUID=4FF55A4BE9A74C25BF8956AF7164E38B&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:49 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:49
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=301BB241EFC2640732FAB99CEE5565B9; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=2429D402EA086DB004CFD855EB076C1C; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:54 GMT; domain=bingapis.com
- - _SS=SID=301BB241EFC2640732FAB99CEE5565B9; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:49 GMT; domain=bingapis.com
+ - _SS=SID=2429D402EA086DB004CFD855EB076C1C; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 8B757457C7A64DD28E49D5E253EBDA5E
+ - 56B74C05C1F1406682D49A54B5D72CCA
X-Msedge-Clientid:
- - 158306D548C768BE07C00D08495069C0
+ - '00333678903E6E282D803A2F91316FB1'
X-Msapi-Userstate:
- - 9e95
+ - 81f1
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 8B757457C7A64DD28E49D5E253EBDA5E Ref B: CO1EDGE0221 Ref C: 2018-04-26T23:26:54Z'
+ - 'Ref A: 56B74C05C1F1406682D49A54B5D72CCA Ref B: BAYEDGE0517 Ref C: 2018-08-26T23:58:49Z'
Date:
- - Thu, 26 Apr 2018 23:26:54 GMT
+ - Sun, 26 Aug 2018 23:58:49 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=89438672B1014DDC891035F34F2DB358&CID=158306D548C768BE07C00D08495069C0&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=89438672B1014DDC891035F34F2DB358&CID=158306D548C768BE07C00D08495069C0&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=7DD0724448A3488A9987BE2934AA9004&CID=00333678903E6E282D803A2F91316FB1&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=7DD0724448A3488A9987BE2934AA9004&CID=00333678903E6E282D803A2F91316FB1&Type=Event.CPT&DATA=0"},
"queryContext": {"originalQuery": "sailing dingies", "alteredQuery": "sailing
dinghies", "alterationOverrideQuery": "+sailing dingies", "adultIntent": false},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=sailing+dingies",
- "webSearchUrlPingSuffix": "DevEx,5660.1", "totalEstimatedMatches": 8300000,
+ "webSearchUrlPingSuffix": "DevEx,5441.1", "totalEstimatedMatches": 8160000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
"Dinghy sailing - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing",
- "urlPingSuffix": "DevEx,5112.1", "about": [{"name": "Dinghy sailing"}, {"name":
+ "urlPingSuffix": "DevEx,5063.1", "about": [{"name": "Dinghy sailing"}, {"name":
"Dinghy sailing"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing",
"snippet": "Dinghy sailing is the activity of sailing small boats by using
five essential controls: the sails; the foils (i.e. the daggerboard or centreboard
- and rudder and ...", "deepLinks": [{"name": "Development of the dinghy", "url":
- "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing#Development_of_the_dinghy",
- "urlPingSuffix": "DevEx,5101.1", "snippet": "There has always been a need
- for small tender boats for transporting goods and personnel to and from anchored
- sailing ships. Together with other smaller work craft such as fishing and
- light cargo, small inshore craft have always been in evidence. Charles II
- of England had a priva"}, {"name": "Types of dinghies", "url": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing#Types_of_dinghies",
- "urlPingSuffix": "DevEx,5102.1", "snippet": "Some dinghies come into more
- than one category, either because boundaries overlap or because different
- categories are measuring different things; e.g. both \"one design\" boats
- and boats of much freer design can be found in each of the main categories
- below. Dinghy designs are often referred to as \"classes\"; these classes
- are usually categorised as one design, open, or restricted. A more formal
- term for open is \"Development Class\". One design dinghies are supposed to
- be identical, though in realit"}, {"name": "Learning to sail", "url": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing#Learning_to_sail",
- "urlPingSuffix": "DevEx,5103.1", "snippet": "Many people learn to sail at
- accredited sailing schools, or through their local sailing club. Many books
- and training DVDs are also available, allowing the novice sailor to reinforce
- the learning in their own time. Boats that many children learn to sail in
- are the Optimist, Topper and the Laser Funboat and Laser Picos. The Optimist
- is primarily used in supervised racing situations because it is easily capsized
- and very difficult to right from the water. In the USA, the Portland Pudgy
- safety ding"}, {"name": "Dinghy racing", "url": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing#Dinghy_racing",
- "urlPingSuffix": "DevEx,5104.1", "snippet": "Racing is one of the most popular
- forms of dinghy sailing, and it contributes to the development of sailing
- skills as well as to improvements in dinghy and sail construction and design.
- Sometimes the Olympic triangle is used as a course for dinghy races where
- space permits, particularly for events where there ought to be little local
- advantage such as State and National titles and for classes which are mainly
- displacement sailing such as the Heron. The olympic triangle is the most popular
- choice"}], "dateLastCrawled": "2018-04-23T01:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
- "name": "Best Dinghy | Sailing World", "url": "https:\/\/www.sailingworld.com\/best-dinghy-melges-14",
- "urlPingSuffix": "DevEx,5128.1", "displayUrl": "https:\/\/www.sailingworld.com\/best-dinghy-melges-14",
+ and rudder and ...", "dateLastCrawled": "2018-08-16T22:48:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Best Dinghy |
+ Sailing World", "url": "https:\/\/www.sailingworld.com\/best-dinghy-melges-14",
+ "urlPingSuffix": "DevEx,5076.1", "displayUrl": "https:\/\/www.sailingworld.com\/best-dinghy-melges-14",
"snippet": "The Melges 14 delivers on a quick and modern singlehander and
- earns its stripes as 2016''s Best Dinghy.", "dateLastCrawled": "2018-04-22T14:46:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Trinka-The
- Best Rowing\/Sailing Dinghy in the World.", "url": "http:\/\/www.trinka.com\/",
- "urlPingSuffix": "DevEx,5152.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
- "www.trinka.com", "snippet": "Trinka-The best rowing dinghy and sailing yacht
- dinghy in the world.", "dateLastCrawled": "2018-04-22T15:46:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "25 best
- beginner sailing dinghies - boats.com", "url": "http:\/\/uk.boats.com\/boat-buyers-guide\/25-best-beginner-sailing-dinghies\/",
- "urlPingSuffix": "DevEx,5168.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
- "uk.boats.com\/boat-buyers-guide\/25-best-beginner-sailing-dinghies", "snippet":
+ earns its stripes as 2016''s Best Dinghy.", "dateLastCrawled": "2018-08-18T14:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "25 best
+ beginner sailing dinghies - boats.com", "url": "https:\/\/uk.boats.com\/boat-buyers-guide\/25-best-beginner-sailing-dinghies\/",
+ "urlPingSuffix": "DevEx,5089.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "https:\/\/uk.boats.com\/...\/25-best-beginner-sailing-dinghies", "snippet":
"There is a lot of choice on the dinghy sailing market, so which is the best
sailing dinghy for beginners? Paula Irish reviews the market.", "dateLastCrawled":
- "2018-04-22T23:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "2018-08-21T19:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
"name": "Sailing Dinghy | Portland Pudgy", "url": "http:\/\/www.portlandpudgy.com\/sailing-dinghy\/",
- "urlPingSuffix": "DevEx,5185.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "urlPingSuffix": "DevEx,5103.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
"www.portlandpudgy.com\/sailing-dinghy", "snippet": "Portland Pudgy Sailing
Dinghy The sail kit makes your Portland Pudgy a fun, safe sailing dinghy.
- It also makes it a proactive self-rescue boat.", "dateLastCrawled": "2018-04-22T05:53:00.0000000Z"},
+ It also makes it a proactive self-rescue boat.", "dateLastCrawled": "2018-08-19T13:56:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Trinka-The
+ Best Rowing\/Sailing Dinghy in the World.", "url": "http:\/\/www.trinka.com\/",
+ "urlPingSuffix": "DevEx,5116.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "www.trinka.com", "snippet": "Trinka-The best rowing dinghy and sailing yacht
+ dinghy in the world.", "dateLastCrawled": "2018-08-19T19:13:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Sailing
- Dinghies for sale, used yachts, new sailing dinghy ...", "url": "http:\/\/sailingdinghies.apolloduck.com\/",
- "urlPingSuffix": "DevEx,5201.1", "displayUrl": "sailingdinghies.apolloduck.com",
+ dinghy, Navigation tender - All boating and marine ...", "url": "http:\/\/www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760.html",
+ "urlPingSuffix": "DevEx,5132.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760.html", "snippet":
+ "Find your sailing dinghy easily amongst the 178 products from the leading
+ brands (Walker Bay, Laser Performance, ...) on NauticExpo, the boating and
+ maritime industry specialist for your professional purchases.", "dateLastCrawled":
+ "2018-08-20T13:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Dinghy | Discover Boating", "url": "https:\/\/www.discoverboating.com\/buying\/boat\/dinghies",
+ "urlPingSuffix": "DevEx,5144.1", "about": [{"name": "Dinghy"}], "displayUrl":
+ "https:\/\/www.discoverboating.com\/buying\/boat\/dinghies", "snippet": "Dinghies
+ come in a wide variety of types, ... A sail-equipped dinghy is also a great
+ first boat for introducing children to sailing. Which Engine is Right For
+ Your Boat.", "dateLastCrawled": "2018-08-20T20:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Sailing Dinghies for sale, used yachts, new sailing dinghy ...",
+ "url": "http:\/\/sailingdinghies.apolloduck.com\/", "urlPingSuffix": "DevEx,5158.1",
+ "about": [{"name": "Dinghy sailing"}], "displayUrl": "sailingdinghies.apolloduck.com",
"snippet": "Sailing dinghies, sailing dinghies for sale, Apollo Duck new and
used dinghy sales. Sell your dinghy fast with a free photo advert. Find your
dinghy in our database of sailing dinghies, sailing boats, skiffs, beach cats,
- keel boats, catamarans, one designs and racers.", "dateLastCrawled": "2018-04-22T01:53:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Sailing
- dinghy, Navigation tender - All boating and marine ...", "url": "http:\/\/www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760.html",
- "urlPingSuffix": "DevEx,5218.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
- "www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760.html", "snippet":
- "Find all the manufacturers of sailing dinghy and contact them directly on
- NauticExpo.", "dateLastCrawled": "2018-04-21T02:10:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
- "name": "Dinghy - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Dingy",
- "urlPingSuffix": "DevEx,5239.1", "about": [{"name": "Dinghy"}], "displayUrl":
- "https:\/\/en.wikipedia.org\/wiki\/Dingy", "snippet": "A typical sailing rig
- for a dinghy is a gunter with a two-piece folding mast stepped through a thwart
- and resting on the keel.", "dateLastCrawled": "2018-04-12T21:17:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Sailing
- Dinghies for sale | Boats and Outboards", "url": "https:\/\/www.boatsandoutboards.co.uk\/Sailboats\/Sailing-dinghies-for-sale",
- "urlPingSuffix": "DevEx,5255.1", "displayUrl": "https:\/\/www.boatsandoutboards.co.uk\/...\/Sailing-dinghies-for-sale",
- "snippet": "Sailing Dinghies for sale in and around the UK. Buy your Topper,
- Mirror, Avon and Laser sailing dinghy at Boats and Outboards", "dateLastCrawled":
- "2018-04-23T00:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
- "name": "Gig Harbor Boat Works - Official Site", "url": "http:\/\/www.ghboats.com\/",
- "urlPingSuffix": "DevEx,5271.1", "about": [{"name": "Whitehall rowboat"},
- {"name": "Dinghy sailing"}], "displayUrl": "www.ghboats.com", "snippet": "Gig
- Harbor Boat Works is the builder of a unique line of custom small boats for
- rowing and sailing. Our boats are modern reproductions of traditional working
- boats, used by people who earned their living using only wind and oar.", "dateLastCrawled":
- "2018-04-22T21:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
- "name": "In Search of the Perfect Dinghy: - www.ruach.net: Dinghy ...", "url":
- "http:\/\/www.ruach.net\/Dinghy.html", "urlPingSuffix": "DevEx,5286.1", "about":
- [{"name": "Dinghy sailing"}], "displayUrl": "www.ruach.net\/Dinghy.html",
- "snippet": "Another line of boats that are being brought into the US Market
- are made by RS Sailing. In the US, probably the best known model is the RS
- Feva, a 12'' two-handed, rotomolded polyethelyne dinghy which is becoming
- increasingly popular among youth sailing programs.", "dateLastCrawled": "2018-04-19T00:45:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Dinghy
- Buyers Guide | Discover Boating", "url": "http:\/\/www.discoverboating.com\/buying\/boat\/dinghies",
- "urlPingSuffix": "DevEx,5302.1", "about": [{"name": "Dinghy"}], "displayUrl":
- "www.discoverboating.com\/buying\/boat\/dinghies", "snippet": "Dinghies come
- in a wide variety of types, ... as well as its range. A sail-equipped dinghy
- is also a great first boat for introducing children to sailing.", "dateLastCrawled":
- "2018-04-19T17:06:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
- "name": "Sailing Dinghies | West Marine", "url": "https:\/\/www.westmarine.com\/sailing-dinghies",
- "urlPingSuffix": "DevEx,5322.1", "displayUrl": "https:\/\/www.westmarine.com\/sailing-dinghies",
- "snippet": "Shop, read reviews, or ask questions about Sailing Dinghies at
- the official West Marine online store. Since 1968, West Marine has grown to
- over 250 local stores, with knowledgeable Associates happy to assist.", "dateLastCrawled":
- "2018-04-20T23:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
- "name": "Sailing Dinghy | eBay", "url": "http:\/\/www.ebay.com\/bhp\/sailing-dinghy",
- "urlPingSuffix": "DevEx,5341.1", "displayUrl": "www.ebay.com\/bhp\/sailing-dinghy",
- "snippet": "Find great deals on eBay for Sailing Dinghy in Paragliding Equipment
- and Accessories. Shop with confidence.", "dateLastCrawled": "2018-04-22T20:18:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Dinghy
- Gear: Tops, Bottoms, Wet\/Dry Suits, Hikers ...", "url": "http:\/\/www.sailingproshop.com\/dinghy-gear",
- "urlPingSuffix": "DevEx,5356.1", "displayUrl": "www.sailingproshop.com\/dinghy-gear",
- "snippet": "Dinghy Racing? We''ve got your covered with our great selection
- of Tops, Bottoms, Wet\/Dry Suits, Hikers & Accessories.", "dateLastCrawled":
- "2018-04-19T10:38:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
- "name": "Sailing dinghy sail - All boating and marine industry ...", "url":
- "http:\/\/www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-sail-36619.html",
- "urlPingSuffix": "DevEx,5373.1", "displayUrl": "www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-sail-36619.html",
- "snippet": "Find all the manufacturers of sailing dinghy sail and contact
- them directly on NauticExpo.", "dateLastCrawled": "2018-04-22T04:28:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Puffin
- Boats - A manufacturer of small Boats", "url": "http:\/\/www.puffinboats.com\/",
- "urlPingSuffix": "DevEx,5388.1", "displayUrl": "www.puffinboats.com", "snippet":
- "Puffin Boats is a manufacturer of Puffin Dinghies and other small boats as
- well as fiberglass engineering.", "dateLastCrawled": "2018-04-22T08:04:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Sailing
+ keel boats, catamarans, one designs and racers.", "dateLastCrawled": "2018-08-01T03:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Dinghy
+ - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Dingy", "urlPingSuffix":
+ "DevEx,5176.1", "about": [{"name": "Dinghy"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Dingy",
+ "snippet": "A typical sailing rig for a dinghy is a gunter with a two-piece
+ folding mast stepped through a thwart and resting on the keel.", "dateLastCrawled":
+ "2018-08-20T02:08:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Sailing Dinghies that You Can Build! - CLC boats", "url": "https:\/\/www.clcboats.com\/shop\/wooden-sailboat-kits\/sailing-dinghies\/",
+ "urlPingSuffix": "DevEx,5189.1", "displayUrl": "https:\/\/www.clcboats.com\/shop\/wooden-sailboat-kits\/sailing-dinghies",
+ "snippet": "Tenderly 10-foot Dinghy. Here''s a beautiful 10-foot dinghy or
+ daysailer that slots between our 7''9\" Eastport Pram and the 11''7\" Passagemaker
+ Dinghy.", "dateLastCrawled": "2018-08-18T15:04:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Gig Harbor Boat Works | Rowing and Sailing Dinghies ...", "url":
+ "http:\/\/www.ghboats.com\/", "urlPingSuffix": "DevEx,5203.1", "about": [{"name":
+ "Gig Harbor Boat Works"}, {"name": "Whitehall rowboat"}], "displayUrl": "www.ghboats.com",
+ "snippet": "Gig Harbor Boat Works is the builder of a unique line of custom
+ small boats for rowing and sailing. Our boats are modern reproductions of
+ traditional working boats, used by people who earned their living using only
+ wind and oar.", "dateLastCrawled": "2018-08-21T12:19:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "Singlehanded
+ sailing dinghies - boats.com", "url": "https:\/\/uk.boats.com\/reviews\/singlehanded-sailing-dinghies\/",
+ "urlPingSuffix": "DevEx,5215.1", "displayUrl": "https:\/\/uk.boats.com\/reviews\/singlehanded-sailing-dinghies",
+ "snippet": "We look at the world of singlehanded sailing dinghies in the UK,
+ whether you are looking for a dinghy that''s easy to sail or a real challenge
+ with a trapeze or even foils, this is the guide for you.", "dateLastCrawled":
+ "2018-08-18T14:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Sailing Chandlery (Previously Dinghy Rope) | Online ...", "url":
+ "https:\/\/www.sailingchandlery.com\/", "urlPingSuffix": "DevEx,5229.1", "about":
+ [{"name": "Sailing Chandlery - Sporting Goods Store - Benfleet, Essex, United
+ Kingdom - 9 Reviews - 1,125 Photos"}], "displayUrl": "https:\/\/www.sailingchandlery.com",
+ "snippet": "Sailing Chandlery (previously Dinghy Rope) is an online chandlery
+ and rope suppliers for marine and boat rope. We stock a variety of sailing
+ boat ropes from Kingfisher and Marlow at less than the RRP with fast delivery.
+ 10% off your first order.", "dateLastCrawled": "2018-08-21T09:06:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Dinghy
+ Sailing - Topic - YouTube", "url": "https:\/\/www.youtube.com\/channel\/UC1aj5lpRZiCfzVgmN95Pq3Q",
+ "urlPingSuffix": "DevEx,5243.1", "displayUrl": "https:\/\/www.youtube.com\/channel\/UC1aj5lpRZiCfzVgmN95Pq3Q",
+ "snippet": "Dinghy sailing is the activity of sailing small boats by using
+ five essential controls: the sails the foils the trim side-to-side balance
+ of the dinghy by hi...", "dateLastCrawled": "2018-08-14T15:21:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "In Search
+ of the Perfect Dinghy: - www.ruach.net: Dinghy ...", "url": "http:\/\/www.ruach.net\/Dinghy.html",
+ "urlPingSuffix": "DevEx,5256.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "www.ruach.net\/Dinghy.html", "snippet": "Another line of boats that are being
+ brought into the US Market are made by RS Sailing. In the US, probably the
+ best known model is the RS Feva, a 12'' two-handed, rotomolded polyethelyne
+ dinghy which is becoming increasingly popular among youth sailing programs.",
+ "dateLastCrawled": "2018-08-18T09:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Sailing Dinghy | eBay", "url": "https:\/\/www.ebay.com\/bhp\/sailing-dinghy",
+ "urlPingSuffix": "DevEx,5271.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "https:\/\/www.ebay.com\/bhp\/sailing-dinghy", "snippet": "Find great deals
+ on eBay for Sailing Dinghy in Paragliding Equipment and Accessories. Shop
+ with confidence.", "dateLastCrawled": "2018-08-20T11:16:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Mallard Sailing
+ dinghy - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=MrVBWZpJjXo",
+ "urlPingSuffix": "DevEx,5290.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=MrVBWZpJjXo",
+ "snippet": "Just a short video showing how best to spend an hour on a Monday
+ morning before entering that horrible world of traffic, work, and the grind
+ of life...", "dateLastCrawled": "2018-07-30T05:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Sailing dinghy, Navigation tender - All boating and marine ...",
+ "url": "http:\/\/www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760-_2.html",
+ "urlPingSuffix": "DevEx,5306.1", "displayUrl": "www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760-_2.html",
+ "snippet": "Find your sailing dinghy easily amongst the 178 products from
+ the leading brands on NauticExpo, the boating and maritime industry specialist
+ for your professional purchases.", "dateLastCrawled": "2018-08-16T01:08:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Buy Sailing
Dinghies & Boats | eBay", "url": "https:\/\/www.ebay.co.uk\/b\/Sailing-Dinghies-Boats\/98955\/bn_2318024",
- "urlPingSuffix": "DevEx,5406.1", "displayUrl": "https:\/\/www.ebay.co.uk\/b\/Sailing-Dinghies-Boats\/98955",
+ "urlPingSuffix": "DevEx,5322.1", "displayUrl": "https:\/\/www.ebay.co.uk\/b\/Sailing-Dinghies-Boats\/98955",
"snippet": "Shop from the world''s largest selection and best deals for Sailing
- Dinghies & Boats. Shop with confidence on eBay!", "dateLastCrawled": "2018-04-17T12:34:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Amazon.com:
- sailing dinghy", "url": "https:\/\/www.amazon.com\/sailing-dinghy\/s?ie=UTF8&page=1&rh=i%3Aaps%2Ck%3Asailing%20dinghy",
- "urlPingSuffix": "DevEx,5425.1", "displayUrl": "https:\/\/www.amazon.com\/sailing-dinghy\/s?ie=UTF8&page=1&rh=i:aps,k...",
- "snippet": "Sailing Gloves Men Women for Sailing, Fishing, Boating, Kayaking,
- Surfing, Canoe Padding, Dinghy and Water Sports, Leather in Palm to Enhance
- Gripping, 3\/4 Finger Design, Blue\/Grey", "dateLastCrawled": "2018-04-16T19:38:00.0000000Z"},
+ Dinghies & Boats. Shop with confidence on eBay!", "dateLastCrawled": "2018-08-15T06:35:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "sailing
dinghy | eBay", "url": "https:\/\/www.ebay.com\/sch\/i.html?_nkw=sailing+dinghy",
- "urlPingSuffix": "DevEx,5443.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
+ "urlPingSuffix": "DevEx,5335.1", "about": [{"name": "Dinghy sailing"}], "displayUrl":
"https:\/\/www.ebay.com\/sch\/i.html?_nkw=sailing+dinghy", "snippet": "Find
- great deals on eBay for sailing dinghy and used sailboats. Shop with confidence.",
- "dateLastCrawled": "2018-04-20T23:14:00.0000000Z"}]}, "rankingResponse": {"mainline":
- {"items": [{"answerType": "Facts"}, {"answerType": "WebPages", "resultIndex":
- 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
- "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
- {"answerType": "Images"}, {"answerType": "WebPages", "resultIndex": 2, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}}, {"answerType":
- "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ great deals on eBay for sailing dinghy. Shop with confidence.", "dateLastCrawled":
+ "2018-07-28T13:29:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
{"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
- {"answerType": "Videos"}, {"answerType": "WebPages", "resultIndex": 5, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}}, {"answerType":
- "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
{"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
{"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
@@ -241,5 +215,5 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:54 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:49 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml
index c38bde99b0..423e8cd96c 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=11&q=anything&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=11&q=anything&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,109 +25,107 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '1983'
+ - '1962'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:49 GMT
+ - Sun, 26 Aug 2018 23:57:47 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=1EFFED441907606F3F6BE6991890611C; path=/; expires=Tue, 21-May-2019 23:26:49
+ - MUID=2F100231FD3E6DF63D1A0E66FC316C56; path=/; expires=Fri, 20-Sep-2019 23:58:47
GMT; domain=bingapis.com
- - MUIDB=1EFFED441907606F3F6BE6991890611C; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:49 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:49 GMT;
+ - MUIDB=2F100231FD3E6DF63D1A0E66FC316C56; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:47 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:47 GMT;
path=/
- - SRCHUID=V=2&GUID=D03EB3F4A93E472187BBC835737B5538&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:49 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:49
+ - SRCHUID=V=2&GUID=F885EDA1A5504FAAAF613FB241488ABD&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:47 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:47
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=3B3597D6608560F22CC29C0B61126151; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=36A18882D5956DE80A7284D5D49A6CCB; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:49 GMT; domain=bingapis.com
- - _SS=SID=3B3597D6608560F22CC29C0B61126151; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:47 GMT; domain=bingapis.com
+ - _SS=SID=36A18882D5956DE80A7284D5D49A6CCB; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 24614D6E99D540ABBAE7EA5D76321AFD
+ - DCD32BCD92E74494973E402802EB8C4C
X-Msedge-Clientid:
- - 1EFFED441907606F3F6BE6991890611C
+ - 2F100231FD3E6DF63D1A0E66FC316C56
X-Msapi-Userstate:
- - 55eb
+ - 4f80
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 24614D6E99D540ABBAE7EA5D76321AFD Ref B: CO1EDGE0312 Ref C: 2018-04-26T23:26:49Z'
+ - 'Ref A: DCD32BCD92E74494973E402802EB8C4C Ref B: BAYEDGE0312 Ref C: 2018-08-26T23:58:47Z'
Date:
- - Thu, 26 Apr 2018 23:26:49 GMT
+ - Sun, 26 Aug 2018 23:58:47 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=571B432E1BEC468A9610DCF7D5653A8A&CID=1EFFED441907606F3F6BE6991890611C&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=571B432E1BEC468A9610DCF7D5653A8A&CID=1EFFED441907606F3F6BE6991890611C&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=AE5F3CC783374ABD8FD1E4DDDB09DE88&CID=2F100231FD3E6DF63D1A0E66FC316C56&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=AE5F3CC783374ABD8FD1E4DDDB09DE88&CID=2F100231FD3E6DF63D1A0E66FC316C56&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=anything",
- "webSearchUrlPingSuffix": "DevEx,5337.1", "totalEstimatedMatches": 45100000,
+ "webSearchUrlPingSuffix": "DevEx,5271.1", "totalEstimatedMatches": 38200000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
- "Anythink Libraries | Anythink Libraries", "url": "https:\/\/www.anythinklibraries.org\/",
- "urlPingSuffix": "DevEx,5070.1", "about": [{"name": "Rangeview Library District"}],
- "displayUrl": "https:\/\/www.anythinklibraries.org", "snippet": "Anythink.
- A Revolution of Rangeview Libraries. Adams County, Colorado.", "dateLastCrawled":
- "2018-04-21T13:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
- "name": "Anything dictionary definition | anything defined", "url": "http:\/\/www.yourdictionary.com\/anything",
- "urlPingSuffix": "DevEx,5086.1", "displayUrl": "www.yourdictionary.com\/anything",
- "snippet": "any object, event, fact, etc.: do you know anything about it?
- · a thing, no matter of what kind: do anything you want · in any way; at all:
- is he anything like his father ...", "dateLastCrawled": "2018-04-19T15:41:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "anything
- - English-French Dictionary WordReference.com", "url": "http:\/\/www.wordreference.com\/enfr\/anything",
- "urlPingSuffix": "DevEx,5102.1", "displayUrl": "www.wordreference.com\/enfr\/anything",
- "snippet": "anything - traduction anglais-français. Forums pour discuter de
- anything, voir ses formes composées, des exemples et poser vos questions.
- Gratuit.", "dateLastCrawled": "2018-04-07T04:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
- "name": "Anything - Definition for English-Language Learners from ...", "url":
- "http:\/\/www.learnersdictionary.com\/definition\/anything", "urlPingSuffix":
- "DevEx,5119.1", "displayUrl": "www.learnersdictionary.com\/definition\/anything",
+ "anything Meaning in the Cambridge English Dictionary", "url": "https:\/\/dictionary.cambridge.org\/dictionary\/english\/anything",
+ "urlPingSuffix": "DevEx,5054.1", "displayUrl": "https:\/\/dictionary.cambridge.org\/dictionary\/english\/anything",
+ "snippet": "anything definition: 1. used in questions and negatives to mean
+ \"something\": 2. any event, act, object, or situation: . Learn more.", "dateLastCrawled":
+ "2018-07-21T03:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "Anything - definition of anything by The Free Dictionary", "url":
+ "https:\/\/www.thefreedictionary.com\/anything", "urlPingSuffix": "DevEx,5068.1",
+ "displayUrl": "https:\/\/www.thefreedictionary.com\/anything", "snippet":
+ "an·y·thing (ĕn′ē-thĭng′) pron. Any object, occurrence, or matter whatever.
+ adv. To any degree or extent; at all: They aren''t anything like last year''s
+ team. n ...", "dateLastCrawled": "2018-08-19T09:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Anything: The Prayer That Unlocked My God and My Soul ...", "url":
+ "https:\/\/www.amazon.com\/Anything-Prayer-That-Unlocked-Soul\/dp\/0718037200",
+ "urlPingSuffix": "DevEx,5093.1", "about": [{"name": "Anything: The Prayer
+ That Unlocked My God and My Soul"}, {"name": "Anything: The Prayer That Unlocked
+ My God and My Soul"}], "displayUrl": "https:\/\/www.amazon.com\/Anything-Prayer-That-Unlocked-Soul\/dp\/...",
+ "snippet": "Anything: The Prayer That Unlocked My God and My Soul [Jennie
+ Allen] on Amazon.com. *FREE* shipping on qualifying offers. What if you told
+ God you would do anything . . . and he took you up on it?", "dateLastCrawled":
+ "2018-07-29T07:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "anything", "url": "https:\/\/www.anything.com\/#!", "urlPingSuffix":
+ "DevEx,5105.1", "displayUrl": "https:\/\/www.anything.com\/#!", "snippet":
+ "Anything.com, Ltd. © 2018 Anything.com, Ltd.", "dateLastCrawled": "2018-08-02T03:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Anything
+ - Definition for English-Language Learners from ...", "url": "http:\/\/www.learnersdictionary.com\/definition\/anything",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "www.learnersdictionary.com\/definition\/anything",
"snippet": "Definition of anything written for English Language Learners from
the Merriam-Webster Learner''s Dictionary with audio pronunciations, usage
- examples, and count\/noncount noun labels.", "dateLastCrawled": "2018-04-22T05:54:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Anything
- in Spanish | English to Spanish Translation ...", "url": "http:\/\/www.spanishdict.com\/translate\/anything",
- "urlPingSuffix": "DevEx,5135.1", "displayUrl": "www.spanishdict.com\/translate\/anything",
- "snippet": "Translate Anything. See 4 authoritative translations of Anything
- in Spanish with example sentences, phrases and audio pronunciations.", "dateLastCrawled":
- "2018-04-22T23:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
- "name": "Dramarama - Anything, Anything Lyrics | MetroLyrics", "url": "http:\/\/www.metrolyrics.com\/anything-anything-lyrics-dramarama.html",
- "urlPingSuffix": "DevEx,5152.1", "about": [{"name": "Anything, Anything (I''ll
- Give You)"}, {"name": "Anything, Anything (I''ll Give You)"}], "displayUrl":
- "www.metrolyrics.com\/anything-anything-lyrics-dramarama.html", "snippet":
- "Lyrics to ''Anything, Anything'' by Dramarama: I''ll even let you hear the
- songs I want to sing Because you married me, married me, married me", "dateLastCrawled":
- "2018-04-14T05:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
- "name": "A NEW YORK THING", "url": "http:\/\/www.anewyorkthing.com\/", "urlPingSuffix":
- "DevEx,5166.1", "displayUrl": "www.anewyorkthing.com", "snippet": "A NEW YORK
- THING", "dateLastCrawled": "2018-04-20T03:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
- "name": "Anything but | Define Anything but at Dictionary.com", "url": "http:\/\/www.dictionary.com\/browse\/anything--but",
- "urlPingSuffix": "DevEx,5181.1", "displayUrl": "www.dictionary.com\/browse\/anything--but",
- "snippet": "Anything but definition, any thing whatever; something, no matter
- what: Do you have anything for a toothache? See more.", "dateLastCrawled":
- "2018-04-20T06:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
- "name": "Anything (3T song) - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Anything_(3T_song)",
- "urlPingSuffix": "DevEx,5201.1", "about": [{"name": "Anything"}, {"name":
- "Anything"}, {"name": "Anything"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Anything_(3T_song)",
- "snippet": "\"Anything\" is a song composed and recorded by American R&B trio
- 3T. It was their first released single, and was extracted from their first
- album Brotherhood.This single received a Gold Certification on January 26,
- 1996.", "snippetAttribution": {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/",
- "urlPingSuffix": "DevEx,5338.1"}, "licenseNotice": "Text under CC-BY-SA license"},
- "dateLastCrawled": "2018-04-22T03:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
- "name": "Anything | Disney Wiki | FANDOM powered by Wikia", "url": "http:\/\/disney.wikia.com\/wiki\/Anything",
- "urlPingSuffix": "DevEx,5218.1", "displayUrl": "disney.wikia.com\/wiki\/Anything",
- "snippet": "\"Anything \" is a song from the Sofia the First episode \"Just
- One of the Princes \". Sung by Sofia, it expresses her determination on becoming
- a Flying Derby rider and prove that she can do anything if she puts her mind
- to it.", "dateLastCrawled": "2018-04-22T17:48:00.0000000Z"}]}, "rankingResponse":
- {"mainline": {"items": [{"answerType": "Videos"}, {"answerType": "WebPages",
- "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ examples, and count\/noncount noun labels.", "dateLastCrawled": "2018-08-20T13:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Anything
+ - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Anything", "urlPingSuffix":
+ "DevEx,5135.1", "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Anything",
+ "snippet": "This disambiguation page lists articles associated with the title
+ Anything. If an internal link led you here, you may wish to change the link
+ to point directly to the intended article.", "dateLastCrawled": "2018-08-19T11:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Natasha
+ Mosley- Anything (Lyrics) - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=7WanP7v1wFk",
+ "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=7WanP7v1wFk",
+ "snippet": "BUY NOW ON iTUNEShttps:\/\/itunes.apple.com\/us\/album\/anything\/id991557313?i=991557320
+ \"Anything\", (Lyric) video by Natasha Mosley (c) 2015 ISO Music, LLC", "dateLastCrawled":
+ "2018-08-16T17:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "anything - Dizionario inglese-italiano WordReference", "url": "http:\/\/www.wordreference.com\/enit\/anything",
+ "urlPingSuffix": "DevEx,5166.1", "displayUrl": "www.wordreference.com\/enit\/anything",
+ "snippet": "anything - Traduzione del vocabolo e dei suoi composti, e discussioni
+ del forum.", "dateLastCrawled": "2018-08-13T07:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Anything - Jennie Allen", "url": "http:\/\/www.jennieallen.com\/books\/anything\/",
+ "urlPingSuffix": "DevEx,5180.1", "displayUrl": "www.jennieallen.com\/books\/anything",
+ "snippet": "What Is Your Anything? As a generation, I believe we are all yawning
+ and waking up, identifying these currents, and comparing them to the truth
+ of God. We’re considering this simple but game-changing thought: “If God is
+ real and we are going to live with him forever, shouldn’t he be the only thing?”",
+ "dateLastCrawled": "2018-08-19T13:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "anything | Definition of anything in English by Oxford ...", "url":
+ "https:\/\/en.oxforddictionaries.com\/definition\/anything", "urlPingSuffix":
+ "DevEx,5193.1", "displayUrl": "https:\/\/en.oxforddictionaries.com\/definition\/anything",
+ "snippet": "Definition of anything - used to refer to a thing, no matter what",
+ "dateLastCrawled": "2018-08-17T03:37:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
{"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
{"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
{"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
@@ -140,5 +136,5 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:49 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:47 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml
index a89b6fe4eb..21d60eaac8 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=%E4%B8%AD%E5%9B%BD&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=%E4%B8%AD%E5%9B%BD&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,143 +25,136 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '4696'
+ - '4652'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:51 GMT
+ - Sun, 26 Aug 2018 23:57:48 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=176F2BEDF25A6536024A2030F3CD6476; path=/; expires=Tue, 21-May-2019 23:26:52
+ - MUID=25A3A585BCAE61462098A9D2BDA160F1; path=/; expires=Fri, 20-Sep-2019 23:58:48
GMT; domain=bingapis.com
- - MUIDB=176F2BEDF25A6536024A2030F3CD6476; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:52 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:51 GMT;
+ - MUIDB=25A3A585BCAE61462098A9D2BDA160F1; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:48 GMT;
path=/
- - SRCHUID=V=2&GUID=01B8A6657B044936A5832E367FD19E39&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:51 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:51
+ - SRCHUID=V=2&GUID=22E303A6C50B4802BEC2AB4487573130&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:48 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:48
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=3875C50CADB363CB1F2BCED1AC2462D9; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=20BA3E7F2D75678A30C132282C7A66A3; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:52 GMT; domain=bingapis.com
- - _SS=SID=3875C50CADB363CB1F2BCED1AC2462D9; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:48 GMT; domain=bingapis.com
+ - _SS=SID=20BA3E7F2D75678A30C132282C7A66A3; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 2FD664B4E8CA40D7A68E3257BA89152B
+ - D96ADCF989014FEC811E5A761B354FB7
X-Msedge-Clientid:
- - 176F2BEDF25A6536024A2030F3CD6476
+ - 25A3A585BCAE61462098A9D2BDA160F1
X-Msapi-Userstate:
- - 23ea
+ - 8a50
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 2FD664B4E8CA40D7A68E3257BA89152B Ref B: CO1EDGE0409 Ref C: 2018-04-26T23:26:52Z'
+ - 'Ref A: D96ADCF989014FEC811E5A761B354FB7 Ref B: BAYEDGE0110 Ref C: 2018-08-26T23:58:48Z'
Date:
- - Thu, 26 Apr 2018 23:26:51 GMT
+ - Sun, 26 Aug 2018 23:58:48 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=9AE22AF4880B41E69835C3699936BC13&CID=176F2BEDF25A6536024A2030F3CD6476&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=9AE22AF4880B41E69835C3699936BC13&CID=176F2BEDF25A6536024A2030F3CD6476&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=720050A4FB734969AFBE9FED672A5D38&CID=25A3A585BCAE61462098A9D2BDA160F1&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=720050A4FB734969AFBE9FED672A5D38&CID=25A3A585BCAE61462098A9D2BDA160F1&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=%e4%b8%ad%e5%9b%bd",
- "webSearchUrlPingSuffix": "DevEx,5522.1", "totalEstimatedMatches": 25000000,
+ "webSearchUrlPingSuffix": "DevEx,5435.1", "totalEstimatedMatches": 22000000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
"中国_360百科", "url": "https:\/\/baike.so.com\/doc\/1279856-24188840.html", "urlPingSuffix":
- "DevEx,5089.1", "displayUrl": "https:\/\/baike.so.com\/doc\/1279856-24188840.html",
+ "DevEx,5064.1", "displayUrl": "https:\/\/baike.so.com\/doc\/1279856-24188840.html",
"snippet": "中国,中国位于东亚,是以华夏文明为主体、中华文化为基础,以汉族为主要民族的统一多民族国家,通用汉语。中国人一般称呼自己为龙的传人、炎黄子孙或中华民族。",
- "dateLastCrawled": "2018-04-22T19:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "dateLastCrawled": "2018-08-20T08:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
"name": "中国网--网上中国", "url": "http:\/\/www.china.com.cn\/", "urlPingSuffix":
- "DevEx,5113.1", "displayUrl": "www.china.com.cn", "snippet": "国家重点新闻网站,拥有十个语种独立新闻采编、报道和发布权;第一时间报道国家重大新闻事件;国情信息库服务全球读者了解中国;国务院新闻办公室发布会独家网络直播发布网站;拥有国内外顶级学者专家资源,独家编发各种相关政策解读。",
- "deepLinks": [{"name": "娱乐", "url": "http:\/\/ent.china.com.cn\/", "urlPingSuffix":
- "DevEx,5103.1"}, {"name": "财经", "url": "http:\/\/finance.china.com.cn\/",
- "urlPingSuffix": "DevEx,5104.1"}, {"name": "联系方式", "url": "http:\/\/www.china.com.cn\/fuwu\/lianxifangshi.htm",
- "urlPingSuffix": "DevEx,5105.1"}, {"name": "视频", "url": "http:\/\/v.china.com.cn\/",
- "urlPingSuffix": "DevEx,5106.1"}, {"name": "本站地图", "url": "http:\/\/www.china.com.cn\/fuwu\/node_7028918.htm",
- "urlPingSuffix": "DevEx,5107.1"}, {"name": "客户端", "url": "http:\/\/app.china.com.cn\/",
- "urlPingSuffix": "DevEx,5108.1"}], "dateLastCrawled": "2018-04-22T22:15:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "中国银行全球门户网站",
- "url": "http:\/\/www.boc.cn\/", "urlPingSuffix": "DevEx,5140.1", "displayUrl":
- "www.boc.cn", "snippet": "中国银行是中国国际化和多元化程度最高的银行,在中国内地及53个国家和地区为客户提供全面的金融服务。主要经营商业银行业务:公司金融、个人金融和金融市场业务,并通过附属机构开展投资银行、保险、直接投资、投资管理、基金管理和飞机租赁业务。",
- "dateLastCrawled": "2018-04-22T05:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "DevEx,5078.1", "displayUrl": "www.china.com.cn", "snippet": "国家重点新闻网站,拥有十个语种独立新闻采编、报道和发布权;第一时间报道国家重大新闻事件;国情信息库服务全球读者了解中国;国务院新闻办公室发布会独家网络直播发布网站;拥有国内外顶级学者专家资源,独家编发各种相关政策解读。",
+ "dateLastCrawled": "2018-08-21T08:32:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "中国银行全球门户网站", "url": "http:\/\/www.boc.cn\/", "urlPingSuffix": "DevEx,5092.1",
+ "about": [{"name": "Bank of China"}], "displayUrl": "www.boc.cn", "snippet":
+ "中国银行是中国国际化和多元化程度最高的银行,在中国内地及53个国家和地区为客户提供全面的金融服务。主要经营商业银行业务:公司金融、个人金融和金融市场业务,并通过附属机构开展投资银行、保险、直接投资、投资管理、基金管理和飞机租赁业务。",
+ "dateLastCrawled": "2018-08-19T01:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "佳能(中国)-首页", "url": "http:\/\/www.canon.com.cn\/", "urlPingSuffix":
+ "DevEx,5106.1", "about": [{"name": "Canon (China) Co., Ltd"}], "displayUrl":
+ "www.canon.com.cn", "snippet": "佳能公司是以光学为核心的相机与办公设备制造商,始终以创造世界一流产品为目标,积极推动事业向多元化和全球化发展。",
+ "dateLastCrawled": "2018-08-15T06:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "中國 - 维基百科,自由的百科全书", "url": "https:\/\/zh.wikipedia.org\/wiki\/%E4%B8%AD%E5%9C%8B",
+ "urlPingSuffix": "DevEx,5126.1", "displayUrl": "https:\/\/zh.wikipedia.org\/wiki\/中國",
+ "snippet": "中国历史系列條目; 史 前 時 代: 舊石器時代: 中石器時代: 新石器時代: 黄河 文明: 長江 文明: 青銅器時代: 传说時代
+ (三皇五帝、虞朝) 夏 约前21世纪–约前17世纪", "dateLastCrawled": "2018-08-20T05:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "美国福禄克(Fluke)-
+ 中国官方网站", "url": "https:\/\/www.fluke.com.cn\/", "urlPingSuffix": "DevEx,5140.1",
+ "about": [{"name": "Fluke China Limited"}], "displayUrl": "https:\/\/www.fluke.com.cn",
+ "snippet": "福禄克(Fluke)——精密、紧凑、专业电子测试工具的全球翘楚,美国500强FORTIVE集团下属全资子公司,以精准、耐用、安全、易用等特点取胜于市场,备受用户赞誉。",
+ "dateLastCrawled": "2018-08-01T09:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
"name": "中国政府网 中央人民政府门户网站 - gov.cn", "url": "http:\/\/www.gov.cn\/", "urlPingSuffix":
- "DevEx,5156.1", "about": [{"name": "Sichuan"}], "displayUrl": "www.gov.cn",
+ "DevEx,5154.1", "about": [{"name": "Shaoguan"}], "displayUrl": "www.gov.cn",
"snippet": "中国政府网由国务院办公厅主办,中国政府网运行中心负责运行维护,是国务院和国务院各部门,以及各省、自治区、直辖市人民政府在国际互联网上发布政府信息和提供在线服务的综合平台,第一时间权威发布国务院重大决策部署和重要政策文件,国务院领导
- ...", "dateLastCrawled": "2018-04-22T22:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
- "name": "国内新闻_环球网", "url": "http:\/\/china.huanqiu.com\/", "urlPingSuffix":
- "DevEx,5172.1", "displayUrl": "china.huanqiu.com", "snippet": "环球网国内新闻着力于报道国内最新要闻、时事新闻、海外看中国、国内各地动态、港澳新闻、政策观察与解读、深度报道、新闻图片、新闻人物等中国新闻。",
- "dateLastCrawled": "2018-04-22T12:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
- "name": "中国供应商 - 免费B2B网站,中小企业推广首选B2B平台", "url": "https:\/\/cn.china.cn\/",
- "urlPingSuffix": "DevEx,5189.1", "about": [{"name": "CECT"}, {"name": "China"}],
- "displayUrl": "https:\/\/cn.china.cn", "snippet": "中国供应商(www.china.cn)国内优质的B2B网站,一直秉承“推进诚信贸易、创建国际品牌”的宗旨,专注于为企业提供互联网推广服务,企业老板首选B2B平台,客服电话:400-010-1866。",
- "dateLastCrawled": "2018-04-22T03:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
- "name": "佳能(中国)-首页", "url": "http:\/\/www.canon.com.cn\/", "urlPingSuffix":
- "DevEx,5205.1", "displayUrl": "www.canon.com.cn", "snippet": "佳能公司是以光学为核心的相机与办公设备制造商,始终以创造世界一流产品为目标,积极推动事业向多元化和全球化发展。",
- "dateLastCrawled": "2018-04-23T03:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
- "name": "中国农业银行", "url": "http:\/\/www.abchina.com\/", "urlPingSuffix": "DevEx,5221.1",
- "about": [{"name": "Agricultural Bank of China"}, {"name": "Agricultural Bank
- of China"}], "displayUrl": "www.abchina.com", "snippet": "私人银行. 至尊荣耀,为您专享.
- 立即查看 贵宾服务. 机场贵宾等专享增值服务. 立即查看 助业贷款. 享最高1000万元贷款,为您的事业加油助力!", "dateLastCrawled":
- "2018-04-21T22:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
- "name": "baidu.com - 百度一下,你就知道", "url": "http:\/\/www.baidu.com\/", "urlPingSuffix":
- "DevEx,5236.1", "about": [{"name": "Baidu"}, {"name": "Baidu"}], "displayUrl":
- "www.baidu.com", "snippet": "输入法. 手写; 拼音; 关闭; 百度首页 设置 登录. 新闻 hao123 地图 视频
- 贴吧 学术 登录 设置 更多产品", "dateLastCrawled": "2018-04-22T15:04:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "中国银行", "url":
- "https:\/\/ebsnew.boc.cn\/boc15\/login.html", "urlPingSuffix": "DevEx,5252.1",
- "displayUrl": "https:\/\/ebsnew.boc.cn\/boc15\/login.html", "snippet": "*登录时需已安装
- Windows 或 Mac “网上银行登录安全控件”, * 请持有中银E盾的客户,下载并安装 Windows 或 Mac “USBKey管理工具”
- 。 * 网上银行服务使用完毕后,请点击页面右上角的“安全退出”按钮退出服务。", "dateLastCrawled": "2018-04-21T02:33:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "China.com
- - Your guide on traveling and living in China", "url": "http:\/\/english.china.com\/",
- "urlPingSuffix": "DevEx,5269.1", "about": [{"name": "China"}], "displayUrl":
- "english.china.com", "snippet": "English.china.com is a one-stop shop for
- everything about China – news, events, culture, people, lifestyle, language.
- It also provides information about traveling and living in China.", "dateLastCrawled":
- "2018-04-22T14:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ ...", "dateLastCrawled": "2018-08-21T14:45:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "baidu.com - 百度一下,你就知道", "url": "https:\/\/www.baidu.com\/", "urlPingSuffix":
+ "DevEx,5167.1", "about": [{"name": "Baidu"}, {"name": "Baidu"}], "displayUrl":
+ "https:\/\/www.baidu.com", "snippet": "输入法. 手写; 拼音; 关闭; 百度首页 设置 登录. 新闻 hao123
+ 地图 视频 贴吧 学术 登录 设置 更多产品", "dateLastCrawled": "2018-08-20T14:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "亚马逊中国
+ z.cn, 一站放心购全球", "url": "https:\/\/www.amazon.cn\/", "urlPingSuffix": "DevEx,5181.1",
+ "about": [{"name": "Amazon China"}], "displayUrl": "https:\/\/www.amazon.cn",
+ "snippet": "亚马逊z.cn-国际网购平台「亚马逊」中国站,数万国际品牌,千万选品,货源信誉及品质保障,服装鞋靴/母婴/保健/美妆/家居/图书等直邮到手,Prime
+ 会员单笔订单满¥200享跨境免邮。", "dateLastCrawled": "2018-08-21T00:36:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "189邮箱", "url":
+ "http:\/\/www.189.cn\/", "urlPingSuffix": "DevEx,5194.1", "displayUrl": "www.189.cn",
+ "snippet": "中国电信网上营业厅,为电信客户提供充值交费、费用查询、业务办理、在线客服、故障申告、投诉咨询及品牌专区等全方位的电子自助服务;中国电信——世界触手可及。",
+ "dateLastCrawled": "2018-08-16T20:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "中国农业银行", "url": "http:\/\/www.abchina.com\/", "urlPingSuffix": "DevEx,5207.1",
+ "about": [{"name": "Agricultural Bank of China Limited, Singapore Branch"},
+ {"name": "Agricultural Bank of China"}], "displayUrl": "www.abchina.com",
+ "snippet": "私人银行. 至尊荣耀,为您专享. 立即查看 贵宾服务. 机场贵宾等专享增值服务. 立即查看 助业贷款. 享最高1000万元贷款,为您的事业加油助力!",
+ "dateLastCrawled": "2018-08-15T14:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "中国法院网", "url": "https:\/\/www.chinacourt.org\/index.shtml", "urlPingSuffix":
+ "DevEx,5220.1", "about": [{"name": "People''s Court Daily"}], "displayUrl":
+ "https:\/\/www.chinacourt.org", "snippet": "中国法院网是经最高人民法院批准成立,经国务院新闻办公室批准从事登载新闻业务的综合性新闻网站,并经国家广电总局批准自办视频播放业务。",
+ "dateLastCrawled": "2018-08-14T06:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "军事_中国网_权威军事新闻网站", "url": "http:\/\/military.china.com.cn\/", "urlPingSuffix":
+ "DevEx,5234.1", "displayUrl": "military.china.com.cn", "snippet": "中国网军事频道是中国最权威的军事网站之一,报道中国、国际等全球军事新闻。主要有以下栏目:军方发布、中国军事、国际军事、军情24小时、武器库、论战、军史、军事图库、军事论坛。",
+ "dateLastCrawled": "2018-08-19T17:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
"name": "中国上海", "url": "http:\/\/www.shanghai.gov.cn\/", "urlPingSuffix":
- "DevEx,5284.1", "about": [{"name": "Shanghai"}, {"name": "Shanghai"}], "displayUrl":
+ "DevEx,5248.1", "about": [{"name": "Shanghai"}, {"name": "Shanghai"}], "displayUrl":
"www.shanghai.gov.cn", "snippet": "“中国上海”是在上海市委、市政府领导亲自关心、指导下建立和发展起来的政府门户网站,始终坚持以努力建设“服务政府、责任政府、法治政府”为目标,以“为民、便民、利民”为宗旨,以发布政府信息、拓展网上办事、提供便民服务和开展互动交流为
- ...", "dateLastCrawled": "2018-04-22T16:27:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
- "name": "Google", "url": "http:\/\/www.google.cn\/", "urlPingSuffix": "DevEx,5298.1",
- "about": [{"name": "Google China"}, {"name": "Google China"}], "displayUrl":
- "www.google.cn", "snippet": "google.com.hk. 请收藏我们的网址 翻译 ©2011 - ICP证合字B2-20070004号ICP证合字B2-20070004号",
- "dateLastCrawled": "2018-04-21T20:06:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
- "name": "亚马逊-网上购物商城:要网购, 就来Z.cn!", "url": "https:\/\/www.amazon.cn\/", "urlPingSuffix":
- "DevEx,5313.1", "displayUrl": "https:\/\/www.amazon.cn", "snippet": "亚马逊中国(z.cn)坚持“以客户为中心”的理念,秉承“天天低价,正品行货”信念,销售图书、电脑、数码家电、母婴百货、服饰箱包等上千万种产品。",
- "dateLastCrawled": "2018-04-23T03:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
- "name": "中国共产党第十九次全国代表大会_中国政府网", "url": "http:\/\/www.gov.cn\/zhuanti\/19thcpc\/index.htm",
- "urlPingSuffix": "DevEx,5329.1", "displayUrl": "www.gov.cn\/zhuanti\/19thcpc\/index.htm",
- "snippet": "从十九大报告看新时代中国特色社会主义发展战略安排. 在习近平新时代中国特色社会主义思想指引下,一个有着5000多年文明历史的东方大国,正焕发出蓬勃生机、绽放璀璨光彩!",
- "dateLastCrawled": "2018-04-21T13:51:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
- "name": "Apple (中国) - 官方网站", "url": "https:\/\/www.apple.com\/cn\/", "urlPingSuffix":
- "DevEx,5346.1", "displayUrl": "https:\/\/www.apple.com\/cn", "snippet": "探索
- Apple 充满创新的世界,选购各式 iPhone、iPad、Apple Watch 和 Mac,浏览各种配件、娱乐产品,并获得相关产品的专家支持服务。",
- "dateLastCrawled": "2018-04-23T03:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
- "name": "军事_中国网_权威军事新闻网站", "url": "http:\/\/military.china.com.cn\/", "urlPingSuffix":
- "DevEx,5362.1", "displayUrl": "military.china.com.cn", "snippet": "中国网军事频道是中国最权威的军事网站之一,报道中国、国际等全球军事新闻。主要有以下栏目:军方发布、中国军事、国际军事、军情24小时、武器库、论战、军史、军事图库、军事论坛。",
- "dateLastCrawled": "2018-04-22T12:07:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
- "name": "IBM - 中国", "url": "https:\/\/www.ibm.com\/cn-zh\/", "urlPingSuffix":
- "DevEx,5378.1", "about": [{"name": "IBM"}], "displayUrl": "https:\/\/www.ibm.com\/cn-zh",
- "snippet": "有了 IBM Watson,世界会怎样? 有了 Watson,世界正变得更健康,更安全,更清洁,更富创造力,更加个性化。 Watson
- 每天都在进步,因此认知能力在持续发展,这已经开始改变整个世界的", "dateLastCrawled": "2018-04-22T20:02:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "中国制造网-立足内贸领域,专注中国制造的B2B电子商务平台",
- "url": "http:\/\/cn.made-in-china.com\/", "urlPingSuffix": "DevEx,5395.1",
- "about": [{"name": "Hecho en China"}], "displayUrl": "cn.made-in-china.com",
- "snippet": "中国制造网-国内著名b2b电子商务平台,覆盖全行业品类:工业品、原材料、家居百货和商务服务等。为供应商提供免费搭建企业展厅、免费发布产品、移动营销及深度推广服务,帮助供应商获取商机。",
- "dateLastCrawled": "2018-04-22T20:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
- "name": "NBA中国官方网站", "url": "http:\/\/china.nba.com\/", "urlPingSuffix": "DevEx,5412.1",
- "displayUrl": "china.nba.com", "snippet": "猛龙双枪角色如何分工 怎带替补该教练思考; 双枪互补比尔解放沃尔
- 投篮全开兼分担控球; 沃尔28+14比尔28分 奇才胜猛龙扳回一城", "dateLastCrawled": "2018-04-22T12:08:00.0000000Z"}]},
- "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
- 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
- "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ ...", "dateLastCrawled": "2018-08-19T11:37:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "国内新闻_环球网", "url": "http:\/\/china.huanqiu.com\/", "urlPingSuffix":
+ "DevEx,5262.1", "displayUrl": "china.huanqiu.com", "snippet": "环球网国内新闻着力于报道国内要闻、时事新闻、海外看中国、国内各地动态、港澳新闻、政策观察与解读、深度报道、新闻图片、新闻人物等中国新闻。",
+ "dateLastCrawled": "2018-08-19T23:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "中国人事考试网--人民网", "url": "http:\/\/www.cpta.com.cn\/", "urlPingSuffix":
+ "DevEx,5276.1", "displayUrl": "www.cpta.com.cn", "snippet": "人力资源和社会保障部人事考试中心是直接隶属于人力资源和社会保障部的事业单位。按照部赋予的职能,人事考试中心主要承担公务员录用考试、专业技术人员资格考试、公务员遴选考试、中央单位接收安置军转干部考试和事业单位公开招聘考试等五大类,50
+ ...", "dateLastCrawled": "2018-08-21T12:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "中国银行", "url": "https:\/\/ebsnew.boc.cn\/boc15\/login.html", "urlPingSuffix":
+ "DevEx,5290.1", "displayUrl": "https:\/\/ebsnew.boc.cn\/boc15\/login.html",
+ "snippet": "*登录时需已安装 Windows 或 Mac “网上银行登录安全控件”, * 请持有中银E盾的客户,下载并安装 Windows
+ 或 Mac “USBKey管理工具” 。 * 网上银行服务使用完毕后,请点击页面右上角的“安全退出”按钮退出服务。", "dateLastCrawled":
+ "2018-08-17T19:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "中国搜索-国家权威搜索", "url": "http:\/\/www.chinaso.com\/", "urlPingSuffix":
+ "DevEx,5304.1", "about": [{"name": "ChinaSo.com"}], "displayUrl": "www.chinaso.com",
+ "snippet": "中国搜索信息科技股份有限公司由中央七大新闻媒体——人民日报、新华社、中央电视台、光明日报、经济日报、中国日报和中新社联手创办。",
+ "dateLastCrawled": "2018-08-20T09:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "欢迎光临东亚银行(中国)有限公司", "url": "http:\/\/www.hkbea.com.cn\/", "urlPingSuffix":
+ "DevEx,5318.1", "about": [{"name": "The Bank of East Asia (China) Ltd."}],
+ "displayUrl": "www.hkbea.com.cn", "snippet": "[2018-08-02] 东亚银行公益基金“支起一片天”长期支教项…
+ [2018-07-12] 东亚中国成为首家获准在前海开设分行的外资… [2018-05-11] 东亚银行公益基金与西班牙商业银行基金会继…", "dateLastCrawled":
+ "2018-08-21T17:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "NBA中国官方网站", "url": "http:\/\/china.nba.com\/", "urlPingSuffix": "DevEx,5333.1",
+ "about": [{"name": "NBA China"}], "displayUrl": "china.nba.com", "snippet":
+ "沃克:我是霍华德的球迷 他去奇才是件好事; 纳瓦罗退役 大加:你对篮球的贡献无以言表; 库里愿意在勇士结束生涯:这里就是我的家", "dateLastCrawled":
+ "2018-08-19T20:56:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
{"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
{"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
- {"answerType": "Places"}, {"answerType": "WebPages", "resultIndex": 4, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}}, {"answerType":
- "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
{"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
{"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
{"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
@@ -177,8 +168,7 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
{"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
{"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
- {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]},
- "sidebar": {"items": [{"answerType": "Entities"}]}}}'
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:52 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:48 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml
index cbfc783cbc..a792ffa4fc 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=english&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=english&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,178 +25,176 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '3168'
+ - '3265'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:52 GMT
+ - Sun, 26 Aug 2018 23:57:48 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=3A7E3669656166003F523DB464F66735; path=/; expires=Tue, 21-May-2019 23:26:53
+ - MUID=3CD1E13E5E6466C01412ED695F6B67B3; path=/; expires=Fri, 20-Sep-2019 23:58:49
GMT; domain=bingapis.com
- - MUIDB=3A7E3669656166003F523DB464F66735; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:53 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:52 GMT;
+ - MUIDB=3CD1E13E5E6466C01412ED695F6B67B3; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:48 GMT;
path=/
- - SRCHUID=V=2&GUID=647B70F0599B488794DFB8A1CE441C1A&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:52 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:52
+ - SRCHUID=V=2&GUID=FE23E380E201469DB43C674563F03A03&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:48 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:48
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=04BC4FC8FC0E648A07004415FD996585; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=236CE16113E06DBE134EED3612EF6C0B; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:53 GMT; domain=bingapis.com
- - _SS=SID=04BC4FC8FC0E648A07004415FD996585; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:49 GMT; domain=bingapis.com
+ - _SS=SID=236CE16113E06DBE134EED3612EF6C0B; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - DCEB8024E53A4E12BE4B839B41737E1D
+ - 3B1E04AF163A4463A97CF9220E6B6539
X-Msedge-Clientid:
- - 3A7E3669656166003F523DB464F66735
+ - 3CD1E13E5E6466C01412ED695F6B67B3
X-Msapi-Userstate:
- - 5b4c
+ - 71dd
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: DCEB8024E53A4E12BE4B839B41737E1D Ref B: CO1EDGE0107 Ref C: 2018-04-26T23:26:53Z'
+ - 'Ref A: 3B1E04AF163A4463A97CF9220E6B6539 Ref B: BAYEDGE0409 Ref C: 2018-08-26T23:58:49Z'
Date:
- - Thu, 26 Apr 2018 23:26:52 GMT
+ - Sun, 26 Aug 2018 23:58:48 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F583DDA802354393AF243719C349BF73&CID=3A7E3669656166003F523DB464F66735&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F583DDA802354393AF243719C349BF73&CID=3A7E3669656166003F523DB464F66735&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=E93FD7DFF00D4BB2B4DFDFFE08ECE464&CID=3CD1E13E5E6466C01412ED695F6B67B3&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=E93FD7DFF00D4BB2B4DFDFFE08ECE464&CID=3CD1E13E5E6466C01412ED695F6B67B3&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=english", "webSearchUrlPingSuffix":
- "DevEx,5626.1", "totalEstimatedMatches": 80500000, "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0",
+ "DevEx,5421.1", "totalEstimatedMatches": 65500000, "value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0",
"name": "English language - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/English_language",
- "urlPingSuffix": "DevEx,5115.1", "about": [{"name": "English"}], "displayUrl":
+ "urlPingSuffix": "DevEx,5065.1", "about": [{"name": "English"}], "displayUrl":
"https:\/\/en.wikipedia.org\/wiki\/English_language", "snippet": "English
is an Indo-European language and belongs to the West Germanic group of the
Germanic languages. Old English originated from a Germanic tribal and linguistic
continuum along the coast of the North Sea, whose languages are now known
as the Anglo-Frisian subgroup within West Germanic.", "snippetAttribution":
{"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/",
- "urlPingSuffix": "DevEx,5625.1"}, "licenseNotice": "Text under CC-BY-SA license"},
- "dateLastCrawled": "2018-04-15T21:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
- "name": "English | Define English at Dictionary.com", "url": "http:\/\/www.dictionary.com\/browse\/english",
- "urlPingSuffix": "DevEx,5151.1", "about": [{"name": "Dictionary.com"}], "displayUrl":
- "www.dictionary.com\/browse\/english", "snippet": "English definition, of,
- relating to, or characteristic of England or its inhabitants, institutions,
- etc. See more.", "dateLastCrawled": "2018-04-20T09:41:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "English - Wikipedia",
- "url": "https:\/\/en.wikipedia.org\/wiki\/English", "urlPingSuffix": "DevEx,5170.1",
- "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/English", "snippet": "Peoples,
- culture, and language. English, an adjective for something of, from, or related
- to England. English national identity, an identity and common culture ...",
- "dateLastCrawled": "2018-04-21T07:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
- "name": "Advanced English lessons", "url": "https:\/\/www.englishpage.com\/",
- "urlPingSuffix": "DevEx,5187.1", "displayUrl": "https:\/\/www.englishpage.com",
- "snippet": "Englishpage.com offers free English lessons with English grammar
- and vocabulary exercises online. Hundreds of English lessons to help you learn
- English today!", "dateLastCrawled": "2018-04-20T11:25:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "English Grammar:
- a complete guide", "url": "https:\/\/www.ef.com\/english-resources\/english-grammar\/",
- "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www.ef.com\/english-resources\/english-grammar",
- "snippet": "This is a complete English grammar guide with the rules of English
- usage. Each grammatical rule is explained in plain English with several examples,
- and when needed, counter-examples.", "dateLastCrawled": "2018-04-20T06:55:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Google",
- "url": "https:\/\/www.google.com\/intl\/en\/", "urlPingSuffix": "DevEx,5220.1",
+ "urlPingSuffix": "DevEx,5420.1"}, "licenseNotice": "Text under CC-BY-SA license"},
+ "dateLastCrawled": "2018-08-20T11:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "name": "English | Define English at Dictionary.com", "url": "https:\/\/www.dictionary.com\/browse\/english",
+ "urlPingSuffix": "DevEx,5076.1", "displayUrl": "https:\/\/www.dictionary.com\/browse\/english",
+ "snippet": "English definition, of, relating to, or characteristic of England
+ or its inhabitants, institutions, etc. See more.", "dateLastCrawled": "2018-08-16T20:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Google",
+ "url": "https:\/\/www.google.com\/intl\/en\/", "urlPingSuffix": "DevEx,5090.1",
"about": [{"name": "Google"}], "displayUrl": "https:\/\/www.google.com\/intl\/en",
"snippet": "Search the world''s information, including webpages, images, videos
and more. Google has many special features to help you find exactly what you''re
- looking for.", "dateLastCrawled": "2018-04-22T15:18:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Cambridge Dictionary
- | English Dictionary, Translations ...", "url": "http:\/\/dictionary.cambridge.org\/",
- "urlPingSuffix": "DevEx,5237.1", "about": [{"name": "Cambridge Advanced Learner''s
- Dictionary"}, {"name": "Cambridge Advanced Learner''s Dictionary"}], "displayUrl":
- "dictionary.cambridge.org", "snippet": "The most popular dictionary and thesaurus
- for learners of English. Meanings and definitions of words with pronunciations
- and translations.", "dateLastCrawled": "2018-04-22T16:31:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "English as a
- Second Language (ESL) for Teachers and Students", "url": "https:\/\/www.thoughtco.com\/esl-4133095",
- "urlPingSuffix": "DevEx,5254.1", "displayUrl": "https:\/\/www.thoughtco.com\/esl-4133095",
- "snippet": "Whether you are a teacher looking for ESL teaching materials,
- a beginner who''s just starting out, or an advanced student who wants to hone
- and polish reading comprehension, conversation, and writing skills, these
- resources can take you to the next level.", "dateLastCrawled": "2018-04-22T22:03:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Google
- Translate", "url": "http:\/\/translate.google.com\/", "urlPingSuffix": "DevEx,5269.1",
+ looking for.", "dateLastCrawled": "2018-08-19T03:43:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Advanced English
+ lessons", "url": "https:\/\/www.englishpage.com\/", "urlPingSuffix": "DevEx,5104.1",
+ "displayUrl": "https:\/\/www.englishpage.com", "snippet": "Englishpage.com
+ offers free English lessons with English grammar and vocabulary exercises
+ online. Hundreds of English lessons to help you learn English today!", "dateLastCrawled":
+ "2018-07-30T21:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "English | Oxford Dictionaries", "url": "https:\/\/en.oxforddictionaries.com\/english",
+ "urlPingSuffix": "DevEx,5118.1", "displayUrl": "https:\/\/en.oxforddictionaries.com\/english",
+ "snippet": "English. Oxford Dictionaries definitions. Looking for the meanings
+ of words, phrases, and expressions? We provide hundreds of thousands of definitions,
+ synonyms, antonyms, and pronunciations for English and other languages, derived
+ from our language research and expert analysis.", "dateLastCrawled": "2018-08-21T13:36:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "English
+ Listening Practice - Learn English Listening ...", "url": "https:\/\/www.youtube.com\/watch?v=qYb0LCqqJbU",
+ "urlPingSuffix": "DevEx,5132.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=qYb0LCqqJbU",
+ "snippet": "English listening comprehension - English listening practice.
+ Learn english via listening level 1 (full) - lesson 1 - 115. TOPICS: 1. First
+ Snow Fall - 00:01...", "dateLastCrawled": "2018-08-18T20:43:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Google
+ Translate", "url": "https:\/\/translate.google.com\/", "urlPingSuffix": "DevEx,5145.1",
"about": [{"name": "Google Translate"}, {"name": "Google Translate"}], "displayUrl":
- "translate.google.com", "snippet": "Google''s free service instantly translates
- words, phrases, and web pages between English and over 100 other languages.",
- "dateLastCrawled": "2018-04-20T10:44:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
- "name": "Dictionary.com - Official Site", "url": "http:\/\/www.dictionary.com\/",
- "urlPingSuffix": "DevEx,5286.1", "about": [{"name": "Dictionary.com"}], "displayUrl":
- "www.dictionary.com", "snippet": "Dictionary.com is the world’s leading online
- source for English definitions, synonyms, word origins and etymologies, audio
- pronunciations, example sentences, slang phrases, idioms, word games, legal
- and medical terms, Word of the Day and more.", "dateLastCrawled": "2018-04-22T22:18:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "English
+ "https:\/\/translate.google.com", "snippet": "Google''s free service instantly
+ translates words, phrases, and web pages between English and over 100 other
+ languages.", "dateLastCrawled": "2018-08-21T22:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Pearson English", "url": "https:\/\/www.pearsonelt.com\/", "urlPingSuffix":
+ "DevEx,5158.1", "about": [{"name": "Longman Publishing Group"}, {"name": "Longman
+ Publishing Group"}], "displayUrl": "https:\/\/www.pearsonelt.com", "snippet":
+ "If you''re studying with a Pearson course, you can access audio files and
+ extra revision activities online.", "dateLastCrawled": "2018-08-21T17:45:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "English
+ people - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/English_people",
+ "urlPingSuffix": "DevEx,5177.1", "about": [{"name": "English people"}, {"name":
+ "English people"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/English_people",
+ "snippet": "The English people are a nation and an ethnic group native to
+ England who speak the English language.The English identity is of early medieval
+ origin, when they were known in Old English as the Angelcynn (\"family of
+ the Angles\").", "snippetAttribution": {"license": {"name": "CC-BY-SA", "url":
+ "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/", "urlPingSuffix": "DevEx,5422.1"},
+ "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled": "2018-08-20T07:26:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "English
| Definition of English by Merriam-Webster", "url": "https:\/\/www.merriam-webster.com\/dictionary\/English",
- "urlPingSuffix": "DevEx,5303.1", "about": [{"name": "English"}], "displayUrl":
- "https:\/\/www.merriam-webster.com\/dictionary\/English", "snippet": "English
- definition is — Define English: of, relating to, or characteristic of England,
- the English people, or the English languageDefine English: of, relating to,
- or characteristic of England, the English people, or the English language.",
- "dateLastCrawled": "2018-04-22T12:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
- "name": "English Dictionary, Thesaurus, & grammar help | Oxford ...", "url":
- "https:\/\/en.oxforddictionaries.com\/", "urlPingSuffix": "DevEx,5320.1",
- "about": [{"name": "Oxford English Dictionary"}, {"name": "OxfordDictionaries.com"}],
- "displayUrl": "https:\/\/en.oxforddictionaries.com", "snippet": "The world’s
- most trusted English Dictionary and Thesaurus. Find definitions, meanings,
- and word origins as well as help with writing, spelling, and grammar", "dateLastCrawled":
- "2018-04-22T08:51:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
- "name": "EnglishClub : Learn or Teach English Today", "url": "https:\/\/www.englishclub.com\/",
- "urlPingSuffix": "DevEx,5336.1", "displayUrl": "https:\/\/www.englishclub.com",
- "snippet": "Free online resources for learning English or teaching it. From
- easy guides to grammar to fun games and quizzes.", "dateLastCrawled": "2018-04-22T07:19:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "BBC Bitesize
- - KS3 English", "url": "https:\/\/www.bbc.com\/education\/subjects\/z3kw2hv",
- "urlPingSuffix": "DevEx,5351.1", "displayUrl": "https:\/\/www.bbc.com\/education\/subjects\/z3kw2hv",
+ "urlPingSuffix": "DevEx,5190.1", "displayUrl": "https:\/\/www.merriam-webster.com\/dictionary\/English",
+ "snippet": "Seen and Heard. What made you want to look up English?Please tell
+ us where you read or heard it (including the quote, if possible).", "dateLastCrawled":
+ "2018-08-19T09:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Cambridge Dictionary | English Dictionary, Translations ...", "url":
+ "https:\/\/dictionary.cambridge.org\/", "urlPingSuffix": "DevEx,5204.1", "about":
+ [{"name": "Cambridge Advanced Learner''s Dictionary"}], "displayUrl": "https:\/\/dictionary.cambridge.org",
+ "snippet": "The most popular dictionary and thesaurus for learners of English.
+ Meanings and definitions of words with pronunciations and translations.",
+ "dateLastCrawled": "2018-08-20T12:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Vocabulary.com - Learn Words - English Dictionary", "url": "https:\/\/www.vocabulary.com\/",
+ "urlPingSuffix": "DevEx,5216.1", "about": [{"name": "Vocabulary.com"}], "displayUrl":
+ "https:\/\/www.vocabulary.com", "snippet": "Vocabulary.com helps you learn
+ new words, play games that improve your vocabulary, and explore language.",
+ "dateLastCrawled": "2018-08-18T18:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "English as a Second Language (ESL) for Teachers and Students", "url":
+ "https:\/\/www.thoughtco.com\/esl-4133095", "urlPingSuffix": "DevEx,5229.1",
+ "displayUrl": "https:\/\/www.thoughtco.com\/esl-4133095", "snippet": "Whether
+ you are a teacher looking for ESL teaching materials, a beginner who''s just
+ starting out, or an advanced student who wants to hone and polish reading
+ comprehension, conversation, and writing skills, these resources can take
+ you to the next level.", "dateLastCrawled": "2018-08-20T13:52:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "English
+ Grammar: a complete guide", "url": "https:\/\/www.ef.com\/english-resources\/english-grammar\/",
+ "urlPingSuffix": "DevEx,5243.1", "displayUrl": "https:\/\/www.ef.com\/english-resources\/english-grammar",
+ "snippet": "This is a complete English grammar guide with the rules of English
+ usage. Each grammatical rule is explained in plain English with several examples,
+ and when needed, counter-examples.", "dateLastCrawled": "2018-08-17T21:44:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Dictionary
+ by Merriam-Webster: America''s most-trusted ...", "url": "https:\/\/www.merriam-webster.com\/",
+ "urlPingSuffix": "DevEx,5257.1", "about": [{"name": "Merriam-Webster"}, {"name":
+ "Merriam-Webster"}], "displayUrl": "https:\/\/www.merriam-webster.com", "snippet":
+ "The dictionary by Merriam-Webster is America''s most trusted online dictionary
+ for English word definitions, meanings, and pronunciation. #wordsmatter",
+ "dateLastCrawled": "2018-07-29T18:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "BBC Bitesize - KS3 English", "url": "https:\/\/www.bbc.com\/bitesize\/subjects\/z3kw2hv",
+ "urlPingSuffix": "DevEx,5268.1", "displayUrl": "https:\/\/www.bbc.com\/bitesize\/subjects\/z3kw2hv",
"snippet": "KS3 English learning resources for adults, children, parents and
- teachers organised by topic.", "dateLastCrawled": "2018-04-21T19:05:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Sigma
- Tau Delta - Official Site", "url": "http:\/\/www.english.org\/", "urlPingSuffix":
- "DevEx,5367.1", "about": [{"name": "Sigma Tau Delta"}, {"name": "Sigma Tau
- Delta"}], "displayUrl": "www.english.org", "snippet": "SIGMA TAU DELTA - AT
- A GLANCE. English honor society for students at accredited colleges and universities
- that grant baccalaureate or higher degrees", "dateLastCrawled": "2018-04-22T16:10:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "English
- | California State University, Northridge", "url": "https:\/\/www.csun.edu\/humanities\/english",
- "urlPingSuffix": "DevEx,5382.1", "about": [{"name": "California State University,
- Northridge"}], "displayUrl": "https:\/\/www.csun.edu\/humanities\/english",
- "snippet": "Join us for a night of poetry, prose and fun at the Northridge
- Review Spring 18 Launch Party and Open Mic Night! Read more", "dateLastCrawled":
- "2018-04-18T23:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
- "name": "Vocabulary.com - Official Site", "url": "https:\/\/www.vocabulary.com\/",
- "urlPingSuffix": "DevEx,5397.1", "displayUrl": "https:\/\/www.vocabulary.com",
- "snippet": "Vocabulary.com helps you learn new words, play games that improve
- your vocabulary, and explore language.", "dateLastCrawled": "2018-04-22T21:56:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Merriam-Webster
- - Official Site", "url": "https:\/\/www.merriam-webster.com\/", "urlPingSuffix":
- "DevEx,5413.1", "about": [{"name": "Merriam-Webster"}, {"name": "Merriam-Webster"}],
- "displayUrl": "https:\/\/www.merriam-webster.com", "snippet": "The dictionary
- by Merriam-Webster is America''s most trusted online dictionary for English
- word definitions, meanings, and pronunciation. #wordsmatter", "dateLastCrawled":
- "2018-04-21T07:24:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
- "name": "Cambridge English Dictionary: Meanings & Definitions", "url": "https:\/\/dictionary.cambridge.org\/dictionary\/english\/",
- "urlPingSuffix": "DevEx,5428.1", "about": [{"name": "Cambridge Advanced Learner''s
- Dictionary"}, {"name": "Cambridge Advanced Learner''s Dictionary"}], "displayUrl":
- "https:\/\/dictionary.cambridge.org\/dictionary\/english", "snippet": "The
- most popular dictionary and thesaurus. Meanings & definitions of words in
- English with examples, synonyms, pronunciations and translations.", "dateLastCrawled":
- "2018-04-20T18:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ teachers organised by topic.", "dateLastCrawled": "2018-08-16T23:00:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "youtube.com",
+ "url": "https:\/\/youtube.com\/watch?v=juKd26qkNAw", "urlPingSuffix": "DevEx,5284.1",
+ "displayUrl": "https:\/\/youtube.com\/watch?v=juKd26qkNAw", "snippet": "youtube.com",
+ "dateLastCrawled": "2018-08-17T16:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
"name": "Learn English Speaking and Improve your Spoken English ...", "url":
- "http:\/\/www.talkenglish.com\/", "urlPingSuffix": "DevEx,5444.1", "displayUrl":
- "www.talkenglish.com", "snippet": "Learn English Speaking Online to improve
- your Spoken English. Speak English fluently with Free Spoken English lessons
- using over 10,000 free audio files!", "dateLastCrawled": "2018-04-21T13:49:00.0000000Z"}]},
- "rankingResponse": {"mainline": {"items": [{"answerType": "DictionaryWords"},
- {"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
- {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
- {"answerType": "Videos"}, {"answerType": "WebPages", "resultIndex": 2, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}}, {"answerType":
- "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ "https:\/\/www.talkenglish.com\/", "urlPingSuffix": "DevEx,5295.1", "about":
+ [{"name": "TalkEnglish"}], "displayUrl": "https:\/\/www.talkenglish.com",
+ "snippet": "Learn English Speaking Online to improve your Spoken English.
+ Speak English fluently with Free Spoken English lessons using over 10,000
+ free audio files!", "dateLastCrawled": "2018-08-18T11:42:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "English | University
+ of Colorado Boulder | University of ...", "url": "https:\/\/www.colorado.edu\/english\/",
+ "urlPingSuffix": "DevEx,5307.1", "about": [{"name": "CUBoulderEnglish"}],
+ "displayUrl": "https:\/\/www.colorado.edu\/english", "snippet": "English Department
+ official website for current students, faculty, staff, and alumni.", "dateLastCrawled":
+ "2018-08-21T18:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Dictionary.com | Meanings and Definitions of Words at ...", "url":
+ "https:\/\/www.dictionary.com\/", "urlPingSuffix": "DevEx,5320.1", "about":
+ [{"name": "Dictionary.com"}], "displayUrl": "https:\/\/www.dictionary.com",
+ "snippet": "Dictionary.com is the world’s leading online source for English
+ definitions, synonyms, word origins and etymologies, audio pronunciations,
+ example sentences, slang phrases, idioms, word games, legal and medical terms,
+ Word of the Day and more.", "dateLastCrawled": "2018-08-20T12:58:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
{"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
{"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
{"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
@@ -214,8 +210,7 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
{"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
{"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
- {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]},
- "sidebar": {"items": [{"answerType": "Entities"}]}}}'
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:53 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:49 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml
index fa86c834b2..58dc522576 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=tradiksyon&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=tradiksyon&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,160 +25,160 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '3472'
+ - '3293'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:52 GMT
+ - Sun, 26 Aug 2018 23:57:48 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=2381B9F48C336923171DB2298DA468CE; path=/; expires=Tue, 21-May-2019 23:26:52
+ - MUID=0462FF908B6668801864F3C78A6969E4; path=/; expires=Fri, 20-Sep-2019 23:58:48
GMT; domain=bingapis.com
- - MUIDB=2381B9F48C336923171DB2298DA468CE; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:52 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:52 GMT;
+ - MUIDB=0462FF908B6668801864F3C78A6969E4; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:48 GMT;
path=/
- - SRCHUID=V=2&GUID=821DE0002F3740DAA92DEFD04A8F244B&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:52 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:52
+ - SRCHUID=V=2&GUID=D69315C9FFF74950A6AB0DFE40B9AE06&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:48 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:48
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=0720956F897D64A212409EB288EA658F; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=1D467FDDE293699C17E0738AE39C68C1; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:52 GMT; domain=bingapis.com
- - _SS=SID=0720956F897D64A212409EB288EA658F; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:48 GMT; domain=bingapis.com
+ - _SS=SID=1D467FDDE293699C17E0738AE39C68C1; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 907E6B255E1C4089A4494F1CAC22A349
+ - 11E89BCEDE5F48A6962AF3D1D6E1E380
X-Msedge-Clientid:
- - 2381B9F48C336923171DB2298DA468CE
+ - 0462FF908B6668801864F3C78A6969E4
X-Msapi-Userstate:
- - 3c35
+ - 761b
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 907E6B255E1C4089A4494F1CAC22A349 Ref B: CO1EDGE0214 Ref C: 2018-04-26T23:26:52Z'
+ - 'Ref A: 11E89BCEDE5F48A6962AF3D1D6E1E380 Ref B: BAYEDGE0418 Ref C: 2018-08-26T23:58:48Z'
Date:
- - Thu, 26 Apr 2018 23:26:51 GMT
+ - Sun, 26 Aug 2018 23:58:48 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=59ACAA46B745488596824EE364638F02&CID=2381B9F48C336923171DB2298DA468CE&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=59ACAA46B745488596824EE364638F02&CID=2381B9F48C336923171DB2298DA468CE&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=8DE60B1D5778427FA652385C7169C477&CID=0462FF908B6668801864F3C78A6969E4&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=8DE60B1D5778427FA652385C7169C477&CID=0462FF908B6668801864F3C78A6969E4&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=tradiksyon",
- "webSearchUrlPingSuffix": "DevEx,5482.1", "totalEstimatedMatches": 185000,
+ "webSearchUrlPingSuffix": "DevEx,5416.1", "totalEstimatedMatches": 139000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
"Google Translate", "url": "https:\/\/translate.google.com\/?hl=ht", "urlPingSuffix":
- "DevEx,5088.1", "displayUrl": "https:\/\/translate.google.com\/?hl=ht", "snippet":
+ "DevEx,5057.1", "displayUrl": "https:\/\/translate.google.com\/?hl=ht", "snippet":
"Tradui Fèmen tradiksyon enstantane a. Kreyòl Ayisyen. Angl ...", "dateLastCrawled":
- "2018-04-22T23:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "2018-08-16T16:40:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
"name": "Google Traduction", "url": "https:\/\/translate.google.com\/?hl=fr",
- "urlPingSuffix": "DevEx,5106.1", "displayUrl": "https:\/\/translate.google.com\/?hl=fr",
+ "urlPingSuffix": "DevEx,5069.1", "displayUrl": "https:\/\/translate.google.com\/?hl=fr",
"snippet": "Ce service gratuit de Google traduit instantanément des mots,
des expressions et des pages Web du français vers plus de 100 autres langues.",
- "deepLinks": [{"name": "Google Translate", "url": "https:\/\/translate.google.com\/?tl=pt",
- "urlPingSuffix": "DevEx,5099.1"}, {"name": "Google Traduction", "url": "https:\/\/translate.google.com\/m\/translate?hl=fr",
- "urlPingSuffix": "DevEx,5100.1"}, {"name": "Translate Community", "url": "https:\/\/translate.google.com\/community",
- "urlPingSuffix": "DevEx,5101.1"}], "dateLastCrawled": "2018-04-15T01:28:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2", "name": "Tradiksyon
- - French - Arabic Translation and Examples", "url": "https:\/\/mymemory.translated.net\/en\/French\/Arabic\/tradiksyon",
- "urlPingSuffix": "DevEx,5122.1", "displayUrl": "https:\/\/mymemory.translated.net\/en\/French\/Arabic\/tradiksyon",
- "snippet": "tradiksyon, you just need your email, , , Translation, human translation,
- automatic translation.", "dateLastCrawled": "2018-04-07T02:57:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "Reemployment
- Assistance Foreign Language Guidance ...", "url": "http:\/\/sitefinity.floridajobs.org\/reemployment-assistance-foreign-language-guidance",
- "urlPingSuffix": "DevEx,5138.1", "displayUrl": "sitefinity.floridajobs.org\/reemployment-assistance-foreign...",
+ "dateLastCrawled": "2018-08-16T17:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Reemployment Assistance Foreign Language Guidance ...", "url": "http:\/\/sitefinity.floridajobs.org\/reemployment-assistance-foreign-language-guidance",
+ "urlPingSuffix": "DevEx,5084.1", "displayUrl": "sitefinity.floridajobs.org\/reemployment-assistance-foreign...",
"snippet": "Reemployment Assistance Foreign Language Guidance. ... analfabèt
òdinatè, baryè lang oswa enfimite rele 1-800-681-8102 pou asistans tradiksyon
- gratis. ...", "dateLastCrawled": "2018-04-22T16:14:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
- "name": "Class of 2018 Graduation Ceremony Dates and Times ...", "url": "https:\/\/www.palmbeachschools.org\/districtnews\/2017\/12\/04\/class-of-2018-graduation-dates-announced\/",
- "urlPingSuffix": "DevEx,5154.1", "displayUrl": "https:\/\/www.palmbeachschools.org\/districtnews\/2017\/12\/04\/class-of...",
- "snippet": "Mark your calendars graduates and families, the Class of 2018
- graduation ceremony dates and times have been released. Ceremonies are planned
- for graduat...", "dateLastCrawled": "2018-04-23T01:46:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Haitian tradiksyon
- diksyonè - Apps on Google Play", "url": "https:\/\/play.google.com\/store\/apps\/details?id=en.ht.bestdict",
- "urlPingSuffix": "DevEx,5171.1", "displayUrl": "https:\/\/play.google.com\/store\/apps\/details?id=en.ht.bestdict",
- "snippet": "User will be satisfied with this Haitian Creole - English dictionary
- because: - It has the largest vocabulary- Detail description for each word
- and a lot of samples- Simple UI & high performance make you feel easy when
- using* Full support pronunciation for both English and English will help you
- so much in study these languages.", "dateLastCrawled": "2018-04-21T12:29:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "PeopleSoft
- Unavailable Tonight | Employees", "url": "https:\/\/www.palmbeachschools.org\/employees\/2018\/03\/20\/peoplesoft-unavailable-tonight\/",
- "urlPingSuffix": "DevEx,5185.1", "displayUrl": "https:\/\/www.palmbeachschools.org\/employees\/2018\/03\/20\/peoplesoft...",
- "snippet": "Malgre sèvis tradiksyon Google la itilize teknoloji avanse dènye
- kri, li pa itilize entèvansyon moun pou fè tradiksyon yo. Kidonk, ...", "dateLastCrawled":
- "2018-04-18T13:53:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
- "name": "MyMemory - Machine translation meets human translation", "url": "https:\/\/mymemory.translated.net\/",
- "urlPingSuffix": "DevEx,5200.1", "about": [{"name": "Translation memory"}],
- "displayUrl": "https:\/\/mymemory.translated.net", "snippet": "MyMemory is
- the world largest collaborative translation archive.", "dateLastCrawled":
- "2018-04-22T01:16:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
- "name": "TradeKey - Official Site", "url": "https:\/\/www.tradekey.com\/",
- "urlPingSuffix": "DevEx,5214.1", "displayUrl": "https:\/\/www.tradekey.com",
- "snippet": "TradeKey.com Business to Business marketplace, B2B Marketplace,
- Import export marketplace - over 9,152,478 members, offers b2b directory,
- catalog & trade leads to importer, buyer, exporter, manufacturer, wholesaler,
- supplier.", "dateLastCrawled": "2018-04-22T14:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
- "name": "UI Online", "url": "https:\/\/connect.myflorida.com\/Claimant\/Benefits\/Payments\/ProcessContinuedClaims.ASPX",
- "urlPingSuffix": "DevEx,5229.1", "displayUrl": "https:\/\/connect.myflorida.com\/Claimant\/Benefits\/Payments\/Process...",
- "snippet": "This is a State of Florida computer system owned and operated
- by the Florida Department of Economic Opportunity (Department) and is for
- authorized use only.", "dateLastCrawled": "2018-04-21T21:59:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Affordable
- Housing for Rent", "url": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/408.pdf",
- "urlPingSuffix": "DevEx,5243.1", "displayUrl": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/...",
- "snippet": "Affordable Housing for Rent 695 GRAND STREET LLC ... Pou resevwa
- yon tradiksyon anons sa a nan lang Kreyòl Ayisyen ak aplikasyon an sou papye,
- ...", "dateLastCrawled": "2018-04-22T06:36:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
- "name": "Affordable Senior Housing for Rent", "url": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/439.pdf",
- "urlPingSuffix": "DevEx,5255.1", "displayUrl": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/...",
- "snippet": "Affordable Senior Housing for Rent SEAVIEW SITE C ... Pou resevwa
- yon tradiksyon anons sa a nan lang Kreyòl Ayisyen ak aplikasyon an sou papye,
- ...", "dateLastCrawled": "2018-04-19T11:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
- "name": "NY DCJS - Translations", "url": "http:\/\/www.criminaljustice.ny.gov\/pio\/translations.html",
- "urlPingSuffix": "DevEx,5270.1", "displayUrl": "www.criminaljustice.ny.gov\/pio\/translations.html",
+ gratis. ...", "dateLastCrawled": "2018-08-16T20:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "name": "Translate tradiksyon from French to Arabic - MyMemory", "url": "https:\/\/mymemory.translated.net\/en\/French\/Arabic\/tradiksyon",
+ "urlPingSuffix": "DevEx,5098.1", "displayUrl": "https:\/\/mymemory.translated.net\/en\/French\/Arabic\/tradiksyon",
+ "snippet": "Contextual translation of \"tradiksyon\" from French into Arabic.
+ Examples translated by humans: ll, ola, hob, cccc, sami, vvvv, wachcv, mahlik,
+ azadine, wach cv, محدكمكوط.", "dateLastCrawled": "2018-08-12T11:34:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Calendar
+ Of Events | Office of Communications", "url": "https:\/\/www.palmbeachschools.org\/communications\/calendarofevents\/",
+ "urlPingSuffix": "DevEx,5112.1", "about": [{"name": "School District of Palm
+ Beach County"}], "displayUrl": "https:\/\/www.palmbeachschools.org\/communications\/calendarofevents",
+ "snippet": "School District of Palm Beach County Calendars School Year Calendars
+ School Board and Advisory Committee Calendars 2018 -2019 Calendar ... Avètisman
+ sou tradiksyon yo.", "dateLastCrawled": "2018-08-19T16:49:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Elementary |
+ Learning Tools", "url": "https:\/\/www.palmbeachschools.org\/learning_tools\/elementary\/",
+ "urlPingSuffix": "DevEx,5125.1", "displayUrl": "https:\/\/www.palmbeachschools.org\/learning_tools\/elementary",
+ "snippet": "Favorite Learning Tools District Portal Login BrainPOP BrainPOP
+ Junior BrainPOP Español BrainPOP Francais Destiny ...", "dateLastCrawled":
+ "2018-08-17T21:03:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "Affordable Housing for Rent", "url": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/481.pdf",
+ "urlPingSuffix": "DevEx,5135.1", "displayUrl": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/...",
+ "snippet": "Pou resevwa yon tradiksyon anons sa a nan lang Kreyòl Ayisyen
+ ak aplikasyon an sou papye, voye anvlòp ki gen adrès pou retounen li nan:
+ ...", "dateLastCrawled": "2018-08-18T18:41:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "UI Online - Florida", "url": "http:\/\/connect.myflorida.com\/",
+ "urlPingSuffix": "DevEx,5148.1", "displayUrl": "connect.myflorida.com", "snippet":
+ "This is a State of Florida computer system owned and operated by the Florida
+ Department of Economic Opportunity (Department) and is for authorized use
+ only.", "dateLastCrawled": "2018-08-20T19:30:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
+ "name": "Free Translation and Professional Translation Services ...", "url":
+ "http:\/\/www.freetranslation.com\/", "urlPingSuffix": "DevEx,5161.1", "about":
+ [{}], "displayUrl": "www.freetranslation.com", "snippet": "SDL FreeTranslation.com
+ is the world''s number one provider of free and professional translation services
+ for text, websites, and documents.", "dateLastCrawled": "2018-08-18T13:18:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Business
+ To Business (b2b) Marketplace - Manufacturers ...", "url": "https:\/\/www.tradekey.com\/",
+ "urlPingSuffix": "DevEx,5173.1", "about": [{"name": "TradeKey.com"}], "displayUrl":
+ "https:\/\/www.tradekey.com", "snippet": "TradeKey.com Business to Business
+ marketplace, B2B Marketplace, Import export marketplace - over 9,208,101 members,
+ offers b2b directory, catalog & trade leads to importer, buyer, exporter,
+ manufacturer, wholesaler, supplier.", "dateLastCrawled": "2018-08-21T06:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "NY DCJS
+ - Translations", "url": "http:\/\/www.criminaljustice.ny.gov\/pio\/translations.html",
+ "urlPingSuffix": "DevEx,5186.1", "displayUrl": "www.criminaljustice.ny.gov\/pio\/translations.html",
"snippet": "Oral entèpretasyon ak tradiksyon ekri a dwe disponib, gratis,
nan tout kliyan ki gen kapasite limite li, pale, ekri oswa konprann angle.",
- "dateLastCrawled": "2018-04-19T07:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
- "name": "Title VI Complaint Form - Broward County, Florida", "url": "http:\/\/www.broward.org\/BCT\/Riders\/Pages\/TitleVIComplaintForm.aspx",
- "urlPingSuffix": "DevEx,5286.1", "displayUrl": "www.broward.org\/BCT\/Riders\/Pages\/TitleVIComplaintForm.aspx",
- "snippet": "NOTE: If you require this Title VI Complaint Form to be translated
- into another language, ... LANG TRADIKSYON SÈVIS KI DISPONIB REMAK: ...",
- "dateLastCrawled": "2018-04-18T15:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
- "name": "ETA DIJANS!!!!! Men tradiksyon dekrè regilarizasyon a an ...", "url":
- "https:\/\/www.youtube.com\/watch?v=_GLr_7h3xOU", "urlPingSuffix": "DevEx,5301.1",
- "displayUrl": "https:\/\/www.youtube.com\/watch?v=_GLr_7h3xOU", "snippet":
- "Men tradiksyon dekrè regilarizasyon a an kreyol pou tout Ayisyen. Wap tou
- konnen kis Mathieu Jude. Loading... Unsubscribe from Mathieu Jude?", "dateLastCrawled":
- "2018-04-24T18:22:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
- "name": "Broward County Public Schools - News", "url": "https:\/\/www.browardschools.com\/News-And-Events\/News\/BCPS-Awarded-Two-Year-Federal-Grant-From-Project-A",
- "urlPingSuffix": "DevEx,5317.1", "displayUrl": "https:\/\/www.browardschools.com\/News-And-Events\/News\/BCPS-Awarded...",
- "snippet": "Tradiksyon an kreyòl ayisyen; Traduções em português; BCPS Awarded
- Two-Year Federal Grant From Project AWARE Thursday, January 08, 2015 .", "dateLastCrawled":
- "2018-04-18T11:23:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
- "name": "Affordable Condominiums for Sale - Welcome to NYC.gov", "url": "http:\/\/www1.nyc.gov\/assets\/hpd\/downloads\/pdf\/Owners\/essex1.pdf",
- "urlPingSuffix": "DevEx,5331.1", "displayUrl": "www1.nyc.gov\/assets\/hpd\/downloads\/pdf\/Owners\/essex1.pdf",
- "snippet": "Affordable Condominiums for Sale Site 1 DSA Owners LLC ... Pou
- resevwa yon tradiksyon anons sa a nan lang Kreyòl Ayisyen ak aplikasyon an
- sou papye, ...", "dateLastCrawled": "2018-04-19T15:24:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Lucky Dube -
- Prisoner Tradiksyon en Kreyol - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=ARzwpfvza6A",
- "urlPingSuffix": "DevEx,5350.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=ARzwpfvza6A",
+ "dateLastCrawled": "2018-08-18T01:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "Lucky Dube - Prisoner Tradiksyon en Kreyol - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=ARzwpfvza6A",
+ "urlPingSuffix": "DevEx,5204.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=ARzwpfvza6A",
"snippet": "Lucky Dube - Prisoner Tradiksyon en Kreyol Please leave a comment,
like, share our videos and don''t forget to subscribe.", "dateLastCrawled":
- "2018-04-07T04:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
- "name": "Tradiksyon — Wikipedya", "url": "https:\/\/ht.wikipedia.org\/wiki\/Tradiksyon",
- "urlPingSuffix": "DevEx,5364.1", "displayUrl": "https:\/\/ht.wikipedia.org\/wiki\/Tradiksyon",
- "snippet": "Tradiksyon. Tradiksyon se aksyon tradwi. ...", "dateLastCrawled":
- "2018-04-17T09:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
- "name": "Filipyen 4 Labib sou Entènèt | Tradiksyon monn nouvo a", "url": "https:\/\/www.jw.org\/ht\/piblikasyon-yo\/bib\/nwt\/liv-yo\/filipyen\/4\/",
- "urlPingSuffix": "DevEx,5379.1", "displayUrl": "https:\/\/www.jw.org\/ht\/piblikasyon-yo\/bib\/nwt\/liv-yo\/filipyen\/4",
- "snippet": "Filipyen 4 : 1-23— Li Labib sou Entènèt oswa telechaje l gratis.
- Se Temwen Jewova yo ki pibliye Tradiksyon monn nouvo a.", "dateLastCrawled":
- "2018-04-02T17:03:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
- [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
+ "2018-07-16T23:35:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "Kreyol - Mass.Gov", "url": "http:\/\/www.mass.gov\/lwd\/eolwd\/multilingual-information\/multilingual\/haitian-creole\/",
+ "urlPingSuffix": "DevEx,5221.1", "displayUrl": "www.mass.gov\/lwd\/eolwd\/multilingual-information\/multilingual\/...",
+ "snippet": "The Official Website of the Executive Office of Labor and Workforce
+ Development ... Nou founi sèvis tradiksyon\/entèpretasyon pou kliyan ak Konpetans
+ Angle Limite ...", "dateLastCrawled": "2018-08-20T08:17:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13", "name": "Haitian tradiksyon
+ diksyonè - Apps on Google Play", "url": "https:\/\/play.google.com\/store\/apps\/details?id=en.ht.bestdict&hl=en_US",
+ "urlPingSuffix": "DevEx,5242.1", "displayUrl": "https:\/\/play.google.com\/store\/apps\/details?id=en.ht.bestdict&hl=en_US",
+ "snippet": "Pou tradiktè a oswa entèprèt, zouti sa a ap ba ou byen vit bon
+ tradiksyon an ak tou pwononsyasyon la nan toude lang pa sèlman yon sèl tiyo.-",
+ "dateLastCrawled": "2018-07-26T05:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "MyMemory - Machine translation meets human translation", "url": "https:\/\/mymemory.translated.net\/",
+ "urlPingSuffix": "DevEx,5255.1", "about": [{"name": "Translation memory"},
+ {"name": "Translation memory"}], "displayUrl": "https:\/\/mymemory.translated.net",
+ "snippet": "MyMemory is the world largest collaborative translation archive.",
+ "dateLastCrawled": "2018-08-18T09:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Virtual Schools | Virtual Schools", "url": "http:\/\/www.palmbeachvirtual.org\/",
+ "urlPingSuffix": "DevEx,5269.1", "about": [{"name": "Palm Beach Virtual Franchise"},
+ {"name": "K-8 Florida Virtual School"}], "displayUrl": "www.palmbeachvirtual.org",
+ "snippet": "Palm Beach Virtual School Calendar. ... tradiksyon ki fèt nan
+ kad sèvis sa a ki founi la a sèlman bay yon ide apwoksimatif sou kontni reyèl
+ sa ki di nan vèsyon ...", "dateLastCrawled": "2018-07-31T10:15:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Claimants
+ - FloridaJobs.org", "url": "http:\/\/floridajobs.org\/job-seekers-community-services\/reemployment-assistance-center\/claimants",
+ "urlPingSuffix": "DevEx,5284.1", "displayUrl": "floridajobs.org\/job-seekers-community-services\/reemployment...",
+ "snippet": "CONNECT provides online access for claimants to apply for benefits,
+ view and maintain claimant account information, view claim status and payments,
+ view overpayment balance and make payments.", "dateLastCrawled": "2018-08-21T05:17:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "Diversity,
+ Prevention & Intervention \/ Code of Conduct", "url": "https:\/\/www.browardschools.com\/Page\/38107",
+ "urlPingSuffix": "DevEx,5295.1", "displayUrl": "https:\/\/www.browardschools.com\/Page\/38107",
+ "snippet": "Ayisyen \/ kreyòl Tradiksyon. Tradução em português . Discipline
+ Matrix. WHAT IS THE DISCIPLINE MATRIX?", "dateLastCrawled": "2018-08-18T22:19:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Affordable
+ Housing for Rent", "url": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/514.pdf",
+ "urlPingSuffix": "DevEx,5306.1", "displayUrl": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/...",
+ "snippet": "Pou resevwa yon tradiksyon anons sa a nan lang Kreyòl Ayisyen
+ ak aplikasyon an sou papye, voye anvlòp ki gen adrès pou retounen li nan:
+ Wexford Terrace, ...", "dateLastCrawled": "2018-08-15T12:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "NY DCJS
+ - Translations", "url": "http:\/\/dcjs.ny.gov\/pio\/translations-all.html",
+ "urlPingSuffix": "DevEx,5316.1", "displayUrl": "dcjs.ny.gov\/pio\/translations-all.html",
+ "snippet": "Oral entèpretasyon ak tradiksyon ekri a dwe disponib, gratis,
+ nan tout kliyan ki gen kapasite limite li, pale, ekri oswa konprann angle.",
+ "dateLastCrawled": "2018-08-22T09:45:00.0000000Z"}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
{"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
{"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
{"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
@@ -201,5 +199,5 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
{"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:52 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:48 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml
index 6b64a702f3..c643b9456e 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=white%20house&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations=false&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=white%20house&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,198 +25,176 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '4081'
+ - '3286'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:48 GMT
+ - Sun, 26 Aug 2018 23:57:47 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=00C3CA5024A563C92B9BC18D2532621F; path=/; expires=Tue, 21-May-2019 23:26:49
+ - MUID=30B49AB442D76EED012E96E343D86F08; path=/; expires=Fri, 20-Sep-2019 23:58:47
GMT; domain=bingapis.com
- - MUIDB=00C3CA5024A563C92B9BC18D2532621F; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:49 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:48 GMT;
+ - MUIDB=30B49AB442D76EED012E96E343D86F08; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:47 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:47 GMT;
path=/
- - SRCHUID=V=2&GUID=FD2B2236DC5948C7A518FBCF8E7808BE&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:48 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:48
+ - SRCHUID=V=2&GUID=8A581633F81A46298599F15F98AA8D7C&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:47 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:47
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=130E9D35B5186B7D020396E8B48F6A3A; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=1F58B3FEDFD36F971ECFBFA9DEDC6E7B; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:49 GMT; domain=bingapis.com
- - _SS=SID=130E9D35B5186B7D020396E8B48F6A3A; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:47 GMT; domain=bingapis.com
+ - _SS=SID=1F58B3FEDFD36F971ECFBFA9DEDC6E7B; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - B0DD1A62EE064A5194B624F822268F1A
+ - BFB7425F7EC84A859CD78AB102C887F3
X-Msedge-Clientid:
- - 00C3CA5024A563C92B9BC18D2532621F
+ - 30B49AB442D76EED012E96E343D86F08
X-Msapi-Userstate:
- - 2c16
+ - '2274'
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: B0DD1A62EE064A5194B624F822268F1A Ref B: CO1EDGE0210 Ref C: 2018-04-26T23:26:49Z'
+ - 'Ref A: BFB7425F7EC84A859CD78AB102C887F3 Ref B: BAYEDGE0221 Ref C: 2018-08-26T23:58:47Z'
Date:
- - Thu, 26 Apr 2018 23:26:48 GMT
+ - Sun, 26 Aug 2018 23:58:46 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=9CEABD6ED05643B5B67282BAA981498C&CID=00C3CA5024A563C92B9BC18D2532621F&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=9CEABD6ED05643B5B67282BAA981498C&CID=00C3CA5024A563C92B9BC18D2532621F&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=5E2E5927182346ADB0CC8D74D2AFAE86&CID=30B49AB442D76EED012E96E343D86F08&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=5E2E5927182346ADB0CC8D74D2AFAE86&CID=30B49AB442D76EED012E96E343D86F08&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=white+house",
- "webSearchUrlPingSuffix": "DevEx,5840.1", "totalEstimatedMatches": 277000000,
+ "webSearchUrlPingSuffix": "DevEx,5408.1", "totalEstimatedMatches": 270000000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
"The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
- "DevEx,5126.1", "about": [{"name": "whitehouse.gov"}, {"name": "United States"},
- {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov", "snippet":
- "History of The White House. Our first president, George Washington, selected
- the site for the White House in 1791. Every president since John Adams has
- occupied the White House, and the history of this building extends far beyond
- the construction of its walls.", "deepLinks": [{"name": "Contact", "url":
- "https:\/\/www.whitehouse.gov\/contact", "urlPingSuffix": "DevEx,5101.1",
- "snippet": "Get Involved Contact the White House. Share:"}, {"name": "News",
- "url": "https:\/\/www.whitehouse.gov\/news\/", "urlPingSuffix": "DevEx,5102.1",
- "snippet": "Readout of Vice President Mike Pence’s Meeting with German Vice
- Chancellor and Minister of Finance Olaf Scholz"}, {"name": "We The People
- Petitions", "url": "https:\/\/petitions.whitehouse.gov\/", "urlPingSuffix":
- "DevEx,5104.1", "snippet": "Create a Petition. Call on the White House to
- take action on the issue that matters to you."}, {"name": "Statements & Releases",
- "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/", "urlPingSuffix":
- "DevEx,5111.1", "snippet": "Readout of Vice President Mike Pence’s Meeting
- with German Vice Chancellor and Minister of Finance Olaf Scholz"}, {"name":
- "Tours & Events", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/tours-events\/",
- "urlPingSuffix": "DevEx,5112.1", "snippet": "Anyone visiting DC can experience
- the history and art of the White House in person after submitting a tour request
- through one’s Member of Congress. Public tour requests must be submitted through
- one’s Member of Congress."}, {"name": "The White House Blog", "url": "https:\/\/www.whitehouse.gov\/articles\/",
- "urlPingSuffix": "DevEx,5113.1", "snippet": "The American people are generous
- and compassionate, and for generations they have supported their fellow citizens
- through programs established by government to help people in need."}], "dateLastCrawled":
- "2018-04-19T18:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
+ "DevEx,5056.1", "about": [{"name": "whitehouse.gov"}, {"name": "White House"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov", "snippet": "History of The White
+ House. Our first president, George Washington, selected the site for the White
+ House in 1791. Every president since John Adams has occupied the White House,
+ and the history of this building extends far beyond the construction of its
+ walls.", "dateLastCrawled": "2018-08-20T05:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
"name": "White House - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/White_House",
- "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "White House"}, {"name":
+ "urlPingSuffix": "DevEx,5074.1", "about": [{"name": "White House"}, {"name":
"White House"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/White_House",
"snippet": "The White House is the official residence and workplace of the
President of the United States.It is located at 1600 Pennsylvania Avenue NW
in Washington, D.C. and has been the residence of every U.S. President since
John Adams in 1800.", "snippetAttribution": {"license": {"name": "CC-BY-SA",
"url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/", "urlPingSuffix":
- "DevEx,5841.1"}, "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled":
- "2018-04-18T10:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
- "name": "whitehouse.org - Official Site", "url": "http:\/\/whitehouse.org\/",
- "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "whitehouse.org"}], "displayUrl":
- "whitehouse.org", "snippet": "POTUS: The Facebook witch hunt for #TrumpRussia
- “proof” is FAKE NEWS! Totally VERY REAL Americans like “Texas Chuck” say I’m
- best the best Prez ever.", "dateLastCrawled": "2018-04-23T01:06:00.0000000Z"},
+ "DevEx,5409.1"}, "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled":
+ "2018-08-14T08:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "TRUMP® WHITE HOUSE | WHITEHOUSE.ORG", "url": "https:\/\/whitehouse.org\/",
+ "urlPingSuffix": "DevEx,5087.1", "about": [{"name": "whitehouse.org"}], "displayUrl":
+ "https:\/\/whitehouse.org", "snippet": "100% OFFICIOUS website of the White
+ House & President Donald J. Trump", "dateLastCrawled": "2018-08-18T22:08:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "The White
House (@WhiteHouse) | Twitter", "url": "https:\/\/twitter.com\/WhiteHouse",
- "urlPingSuffix": "DevEx,5193.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?u=https%3a%2f%2fpbs.twimg.com%2fprofile_images%2f822251886988267520%2f28GpoRsy_bigger.jpg&w=40&h=40&c=1&rs=1&pid=5.1",
- "about": [{"name": "White House"}, {"name": "AKA White House"}, {"name": "White
- House"}], "displayUrl": "https:\/\/twitter.com\/WhiteHouse", "snippet": "The
- latest Tweets from The White House (@WhiteHouse). Welcome to @WhiteHouse!
+ "urlPingSuffix": "DevEx,5108.1", "about": [{"name": "White House"}, {"name":
+ "White House"}], "displayUrl": "https:\/\/twitter.com\/WhiteHouse", "snippet":
+ "The latest Tweets from The White House (@WhiteHouse). Welcome to @WhiteHouse!
Follow for the latest from President @realDonaldTrump and his Administration.
- Tweets may be archived: https:\/\/t.co\/IURuMIrzxb.", "dateLastCrawled": "2018-03-27T17:51:00.0000000Z"},
+ Tweets may be archived: https:\/\/t.co\/IURuMIrzxb.", "dateLastCrawled": "2018-08-21T09:47:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "The White
- House - YouTube", "url": "https:\/\/www.youtube.com\/user\/whitehouse", "urlPingSuffix":
- "DevEx,5209.1", "about": [{"name": "White House"}, {"name": "Presidency of
- Barack Obama"}, {"name": "West Wing Week"}], "displayUrl": "https:\/\/www.youtube.com\/user\/whitehouse",
- "snippet": "Official White House Youtube channel. President Trump and The
- First Lady have a Social Dinner with the Prime Minister of Japan - Duration:
- 3 minutes, 38 seconds.", "dateLastCrawled": "2018-04-22T16:47:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "White
- House - Facts & Summary - HISTORY.com", "url": "https:\/\/www.history.com\/topics\/white-house",
- "urlPingSuffix": "DevEx,5224.1", "about": [{"name": "White House"}], "displayUrl":
+ House - YouTube", "url": "https:\/\/www.youtube.com\/whitehouse", "urlPingSuffix":
+ "DevEx,5121.1", "about": [{"name": "White House"}, {"name": "White House"}],
+ "displayUrl": "https:\/\/www.youtube.com\/whitehouse", "snippet": "Official
+ White House Youtube channel. Vice President Pence Delivers Remarks at the
+ 37th Annual National Peace Officers'' Memorial Service - Duration: 6 minutes,
+ 32 seconds.", "dateLastCrawled": "2018-07-30T01:27:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "The White House - Home | Facebook", "url": "http:\/\/www.facebook.com\/WhiteHouse",
+ "urlPingSuffix": "DevEx,5137.1", "displayUrl": "www.facebook.com\/WhiteHouse",
+ "snippet": "The White House. 8.4M likes. Welcome to the official White House
+ Facebook page for the Trump Administration. Comments posted on and messages
+ received...", "dateLastCrawled": "2018-08-19T14:01:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
+ "name": "White House - Facts & Summary - HISTORY.com", "url": "https:\/\/www.history.com\/topics\/white-house",
+ "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "White House"}], "displayUrl":
"https:\/\/www.history.com\/topics\/white-house", "snippet": "Find out more
about the history of White House, including videos, interesting articles,
pictures, historical features and more. Get all the facts on HISTORY.com",
- "dateLastCrawled": "2018-04-22T18:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
- "name": "The White House - Home | Facebook", "url": "https:\/\/www.facebook.com\/WhiteHouse",
- "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "White House"}, {"name":
- "White House"}, {"name": "White House"}], "displayUrl": "https:\/\/www.facebook.com\/WhiteHouse",
- "snippet": "The White House. 8.3M likes. Welcome to the official White House
- Facebook page for the Trump Administration. Comments posted on and messages
- received...", "dateLastCrawled": "2018-04-22T01:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
- "name": "President''s Park (White House) (U.S. National Park Service)", "url":
- "https:\/\/www.nps.gov\/whho\/index.htm", "urlPingSuffix": "DevEx,5261.1",
- "displayUrl": "https:\/\/www.nps.gov\/whho", "snippet": "Every president except
- George Washington has called the White House and its surrounding grounds his
- place of work, rest, and solitude. Recognizable around the world, the White
- House stands as a symbol of democracy. The White House and its park grounds
- serve not only as the seat of the executive ...", "dateLastCrawled": "2018-04-22T23:17:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "White
- House officials alarmed at Betsy DeVos'' ''60 Minutes ...", "url": "https:\/\/www.cnn.com\/2018\/03\/12\/politics\/white-house-officials-alarmed-at-betsy-devos\/index.html",
- "urlPingSuffix": "DevEx,5297.1", "displayUrl": "https:\/\/www.cnn.com\/2018\/03\/12\/politics\/white-house-officials...",
- "snippet": "White House officials were alarmed by Education Secretary Betsy
- DeVos'' struggle to answer basic questions about the nation''s schools and
- failure to defend the administration''s newly proposed school safety measures
- during a tour of television interviews Sunday and Monday, according to two
- sources familiar with their reaction.", "dateLastCrawled": "2018-04-21T10:33:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "The White
- House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
- "urlPingSuffix": "DevEx,5314.1", "about": [{"name": "Barack Obama"}, {"name":
- "whitehouse.gov"}], "displayUrl": "https:\/\/obamawhitehouse.archives.gov",
- "snippet": "See the President''s daily schedule, explore behind-the-scenes
- photos from inside the White House, and find out all the ways you can engage
- with the most interactive administration in our country''s history.", "dateLastCrawled":
- "2018-04-20T21:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
- "name": "White House | HuffPost", "url": "https:\/\/www.huffingtonpost.com\/topic\/white-house",
- "urlPingSuffix": "DevEx,5329.1", "displayUrl": "https:\/\/www.huffingtonpost.com\/topic\/white-house",
- "snippet": "The White House counselor blasted the former FBI director for
- not discussing his concerns \"under oath.\" But he did last year.", "dateLastCrawled":
- "2018-04-18T04:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
- "name": "Home - WHBM", "url": "https:\/\/www.whitehouseblackmarket.com\/store\/",
- "urlPingSuffix": "DevEx,5345.1", "about": [{"name": "White House Black Market"}],
- "displayUrl": "https:\/\/www.whitehouseblackmarket.com", "snippet": "White
- House Black Market offers polished black and white women''s clothing with
- pops of color and patterns. Shop tailored dresses, tops, pants and accessories.",
- "dateLastCrawled": "2018-04-22T15:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
- "name": "White House Videos at ABC News Video Archive at abcnews.com", "url":
- "http:\/\/abcnews.go.com\/topics\/news\/us\/white-house.htm", "urlPingSuffix":
- "DevEx,5363.1", "displayUrl": "abcnews.go.com\/topics\/news\/us\/white-house.htm",
- "snippet": "Browse, search and watch White House videos and more at abcnews.com",
- "dateLastCrawled": "2018-04-21T14:02:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
- "name": "White House | presidential office and residence ...", "url": "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC",
- "urlPingSuffix": "DevEx,5379.1", "about": [{"name": "White House"}], "displayUrl":
- "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC", "snippet":
- "White House: White House, the official office and residence of the president
+ "dateLastCrawled": "2018-08-20T18:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "name": "Women''s Clothing, Dresses, Tops, Pants, Petite & Plus Size ...",
+ "url": "https:\/\/www.whitehouseblackmarket.com\/store\/", "urlPingSuffix":
+ "DevEx,5163.1", "about": [{"name": "White House Black Market"}], "displayUrl":
+ "https:\/\/www.whitehouseblackmarket.com", "snippet": "White House Black Market
+ offers polished black and white women''s clothing with pops of color and patterns.
+ Shop tailored dresses, tops, pants and accessories.", "dateLastCrawled": "2018-08-20T09:46:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Contact
+ the White House", "url": "https:\/\/www.whitehouse.gov\/contact\/", "urlPingSuffix":
+ "DevEx,5176.1", "about": [{"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov\/contact",
+ "snippet": "Keep me posted with regular updates from the White House. required
+ ...", "dateLastCrawled": "2018-08-21T14:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ "name": "Petition the White House on the Issues that Matter to You ...", "url":
+ "https:\/\/petitions.whitehouse.gov\/", "urlPingSuffix": "DevEx,5189.1", "about":
+ [{"name": "We the People"}, {"name": "White House"}], "displayUrl": "https:\/\/petitions.whitehouse.gov",
+ "snippet": "Create a Petition. Call on the White House to take action on the
+ issue that matters to you.", "dateLastCrawled": "2018-08-18T12:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Homepage
+ - White House Historical Association", "url": "https:\/\/whitehousehistory.org\/",
+ "urlPingSuffix": "DevEx,5203.1", "about": [{"name": "Association historique
+ de la Maison-Blanche"}, {"name": "White House"}, {"name": "Decatur House"},
+ {"name": "White House Historical Association"}, {"name": "White House Learning
+ Center"}, {"name": "White House"}], "displayUrl": "https:\/\/whitehousehistory.org",
+ "snippet": "The White House Historical Association is a non-profit organization
+ enhancing understanding of the White House and is supported by official White
+ House Christma...", "dateLastCrawled": "2018-08-16T21:31:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "President''s
+ Park (White House) (U.S. National Park Service)", "url": "https:\/\/www.nps.gov\/whho\/index.htm",
+ "urlPingSuffix": "DevEx,5217.1", "about": [{"name": "President''s Park (White
+ House)"}], "displayUrl": "https:\/\/www.nps.gov\/whho", "snippet": "Every
+ president except George Washington has called the White House and its surrounding
+ grounds his place of work, rest, and solitude. Recognizable around the world,
+ the White House stands as a symbol of democracy. The White House and its park
+ grounds serve not only as the seat of the executive ...", "dateLastCrawled":
+ "2018-08-06T23:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
+ "name": "The White House — Google Arts & Culture", "url": "https:\/\/artsandculture.google.com\/partner\/the-white-house",
+ "urlPingSuffix": "DevEx,5230.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/artsandculture.google.com\/partner\/the-white-house", "snippet":
+ "For more than 200 years, the White House has been more than just the home
+ of the Presidents and their families. Throughout the world, it is recognized
+ as t...", "dateLastCrawled": "2018-08-16T16:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "The White House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
+ "urlPingSuffix": "DevEx,5244.1", "about": [{"name": "whitehouse.gov"}, {"name":
+ "Barack Obama"}, {"name": "Barack Obama"}, {"name": "White House"}], "displayUrl":
+ "https:\/\/obamawhitehouse.archives.gov", "snippet": "See the President''s
+ daily schedule, explore behind-the-scenes photos from inside the White House,
+ and find out all the ways you can engage with the most interactive administration
+ in our country''s history.", "dateLastCrawled": "2018-08-20T15:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "White
+ House: Government News, Videos & Updates - NBC News", "url": "https:\/\/www.nbcnews.com\/politics\/white-house",
+ "urlPingSuffix": "DevEx,5258.1", "displayUrl": "https:\/\/www.nbcnews.com\/politics\/white-house",
+ "snippet": "Find the latest White House news, videos and photos on http:\/\/www.nbcnews.com.
+ Read headlines covering White House statements, releases, conferences & more.",
+ "dateLastCrawled": "2018-08-20T13:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "White House | History, Location, & Facts | Britannica.com", "url":
+ "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC", "urlPingSuffix":
+ "DevEx,5272.1", "about": [{"name": "White House"}], "displayUrl": "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC",
+ "snippet": "White House: White House, the office and residence of the president
of the United States at 1600 Pennsylvania Avenue N.W. in Washington, D.C.
- The White House and its landscaped grounds occupy 18 acres (7.2 hectares).",
- "dateLastCrawled": "2018-04-23T00:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
- "name": "White House frustrated with EPA''s Pruitt - CNNPolitics", "url":
- "https:\/\/www.cnn.com\/2018\/03\/30\/politics\/scott-pruitt-epa-white-house\/index.html",
- "urlPingSuffix": "DevEx,5396.1", "displayUrl": "https:\/\/www.cnn.com\/2018\/03\/30\/politics\/scott-pruitt-epa-white-house",
- "snippet": "Washington (CNN)Senior White House aides are exasperated with
- Environmental Protection Agency Administrator Scott Pruitt, the already embattled
- Cabinet secretary who now finds himself at the center of an expanding controversy
- over his decision to rent a room in Washington, DC, from the family of an
- energy lobbyist.", "dateLastCrawled": "2018-04-22T16:25:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "The White House
- Tour - President''s Park (White House) (U.S ...", "url": "https:\/\/www.nps.gov\/whho\/planyourvisit\/the-white-house-tour.htm",
- "urlPingSuffix": "DevEx,5429.1", "about": [{"name": "White House"}], "displayUrl":
- "https:\/\/www.nps.gov\/whho\/planyourvisit\/the-white-house-tour.htm", "snippet":
- "A visit to the White House can be one of the most memorable experiences during
- any trip to the nation''s capital. If you are interested in attending a public
- tour of the White House be sure to secure your reservation well in advance
- of your arrival to Washington DC. You will find more detailed ...", "dateLastCrawled":
- "2018-04-21T23:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
- "name": "How Can I Tour the White House in DC? | Washington.org", "url": "https:\/\/washington.org\/DC-faqs-for-visitors\/how-can-i-tour-white-house",
- "urlPingSuffix": "DevEx,5446.1", "about": [{"name": "White House"}], "displayUrl":
- "https:\/\/washington.org\/DC-faqs-for-visitors\/how-can-i-tour-white-house",
- "snippet": "Find out everything you need to know about planning a visit to
- the country’s most famous house. Here’s how to request and book a tour, what
- to expect when you visit, how to get to the White House, where to store your
- belongings before you go and much more.", "dateLastCrawled": "2018-04-21T01:14:00.0000000Z"},
+ Since the administration of George Washington (1789–97), who occupied presidential
+ residences in New York and Philadelphia, every American president has resided
+ at the White House.", "dateLastCrawled": "2018-08-18T22:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "A look
+ inside the White House - POLITICO", "url": "https:\/\/www.politico.com\/gallery\/a-look-inside-the-white-house",
+ "urlPingSuffix": "DevEx,5286.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.politico.com\/gallery\/a-look-inside-the-white-house", "snippet":
+ "Designed by James Hoban, the White House has 132 rooms, 35 bathrooms and
+ 6 levels in the residence. This includes 412 doors, 147 windows, 28 fireplaces,
+ 8 staircases and 3 elevators.", "dateLastCrawled": "2018-08-14T14:51:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17", "name": "The White
- House | Series | C-SPAN.org", "url": "https:\/\/www.c-span.org\/series\/?theWhiteHouse",
- "urlPingSuffix": "DevEx,5461.1", "displayUrl": "https:\/\/www.c-span.org\/series\/?theWhiteHouse",
- "snippet": "Watch The White House full episodes, clips and more.", "dateLastCrawled":
- "2018-04-19T13:13:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
+ House", "url": "https:\/\/apply.whitehouse.gov\/", "urlPingSuffix": "DevEx,5300.1",
+ "displayUrl": "https:\/\/apply.whitehouse.gov", "snippet": "Thank you for
+ your interest in serving in the Trump Administration. This website is designed
+ for applicants interested in non-career positions within the Trump Administration.",
+ "dateLastCrawled": "2018-08-20T10:57:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18",
+ "name": "White House | Fox News", "url": "http:\/\/www.foxnews.com\/category\/politics\/executive\/white-house.html",
+ "urlPingSuffix": "DevEx,5311.1", "displayUrl": "www.foxnews.com\/category\/politics\/executive\/white-house.html",
+ "snippet": "White House stories and articles from Fox News Politics", "dateLastCrawled":
+ "2018-08-21T02:45:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
[{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
- {"answerType": "News"}, {"answerType": "WebPages", "resultIndex": 1, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}}, {"answerType":
- "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
{"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
{"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
{"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
@@ -233,7 +209,8 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14"}},
{"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15"}},
{"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
- {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}}]}}}'
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:49 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:47 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml
index 9812e700a9..f7f0af83a0 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=white%20house&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations=true&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=white%20house&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,211 +25,187 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '4261'
+ - '3621'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Fri, 27 Apr 2018 15:13:05 GMT
+ - Sun, 26 Aug 2018 23:57:46 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=26A32DD638396E6433EB260839AE6F8A; path=/; expires=Wed, 22-May-2019 15:14:05
+ - MUID=06F78B361012682017258761111D699F; path=/; expires=Fri, 20-Sep-2019 23:58:47
GMT; domain=bingapis.com
- - MUIDB=26A32DD638396E6433EB260839AE6F8A; path=/; httponly; expires=Wed, 22-May-2019
- 15:14:05 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Mon, 27-Apr-2020 15:14:05 GMT;
+ - MUIDB=06F78B361012682017258761111D699F; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:47 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:46 GMT;
path=/
- - SRCHUID=V=2&GUID=1CB8609F8AEA434B9BC53E86A10B5B17&dmnchg=1; domain=.bingapis.com;
- expires=Mon, 27-Apr-2020 15:14:05 GMT; path=/
- - SRCHUSR=DOB=20180427; domain=.bingapis.com; expires=Mon, 27-Apr-2020 15:14:05
+ - SRCHUID=V=2&GUID=4102C0A9A8654CAC87DD6A247CC44D54&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:46 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:46
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=00AF73EAC26368E5072B7834C3F4696E; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=059D76A408146044199D7AF3091B6148; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Wed, 22-May-2019 15:14:05 GMT; domain=bingapis.com
- - _SS=SID=00AF73EAC26368E5072B7834C3F4696E; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:47 GMT; domain=bingapis.com
+ - _SS=SID=059D76A408146044199D7AF3091B6148; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 63CAAE53003A444CA6BEB96EA91D2303
+ - EEE51E9171144CB0835E62287972ACD1
X-Msedge-Clientid:
- - 26A32DD638396E6433EB260839AE6F8A
+ - 06F78B361012682017258761111D699F
X-Msapi-Userstate:
- - 6faa
+ - 8fde
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 63CAAE53003A444CA6BEB96EA91D2303 Ref B: CO1EDGE0221 Ref C: 2018-04-27T15:14:05Z'
+ - 'Ref A: EEE51E9171144CB0835E62287972ACD1 Ref B: BAYEDGE0118 Ref C: 2018-08-26T23:58:47Z'
Date:
- - Fri, 27 Apr 2018 15:14:05 GMT
+ - Sun, 26 Aug 2018 23:58:46 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=F313E06E10504EF2B4BD7823DB2E57B6&CID=26A32DD638396E6433EB260839AE6F8A&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=F313E06E10504EF2B4BD7823DB2E57B6&CID=26A32DD638396E6433EB260839AE6F8A&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=D65BA977ACFC4EFC9D41DF85D044288F&CID=06F78B361012682017258761111D699F&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=D65BA977ACFC4EFC9D41DF85D044288F&CID=06F78B361012682017258761111D699F&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=white+house",
- "webSearchUrlPingSuffix": "DevEx,5893.1", "totalEstimatedMatches": 277000000,
+ "webSearchUrlPingSuffix": "DevEx,5416.1", "totalEstimatedMatches": 224000000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
"The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
- "DevEx,5126.1", "about": [{"name": "whitehouse.gov"}, {"name": "United States"},
- {"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov",
- "snippet": "History of The White House. Our first president, George Washington,
- selected the site for the White House in 1791. Every president since John
- Adams has occupied the White House, and the history of this building extends
- far beyond the construction of its walls.", "deepLinks": [{"name": "Contact",
- "url": "https:\/\/www.whitehouse.gov\/contact", "urlPingSuffix": "DevEx,5100.1",
- "snippet": "Get Involved Contact the White House. Share:"}, {"name": "News",
- "url": "https:\/\/www.whitehouse.gov\/news\/", "urlPingSuffix": "DevEx,5101.1",
- "snippet": "Readout of Vice President Mike Pence’s Meeting with German Vice
- Chancellor and Minister of Finance Olaf Scholz"}, {"name": "Live Events",
- "url": "https:\/\/www.whitehouse.gov\/live", "urlPingSuffix": "DevEx,5102.1",
- "snippet": "Tune in to White House events and statements as they happen"},
- {"name": "We The People Petitions", "url": "https:\/\/petitions.whitehouse.gov\/",
- "urlPingSuffix": "DevEx,5109.1", "snippet": "Create a Petition. Call on the
- White House to take action on the issue that matters to you."}, {"name": "Statements
- & Releases", "url": "https:\/\/www.whitehouse.gov\/briefings-statements\/",
- "urlPingSuffix": "DevEx,5116.1", "snippet": "Readout of Vice President Mike
- Pence’s Meeting with German Vice Chancellor and Minister of Finance Olaf Scholz"},
- {"name": "Tours & Events", "url": "https:\/\/www.whitehouse.gov\/about-the-white-house\/tours-events\/",
- "urlPingSuffix": "DevEx,5117.1", "snippet": "Anyone visiting DC can experience
- the history and art of the White House in person after submitting a tour request
- through one’s Member of Congress. Public tour requests must be submitted through
- one’s Member of Congress."}], "dateLastCrawled": "2018-04-22T08:49:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "White
- House - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/White_House",
- "urlPingSuffix": "DevEx,5149.1", "about": [{"name": "White House"}, {"name":
- "White House"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/White_House",
- "snippet": "The White House is the official residence and workplace of the
- President of the United States.It is located at 1600 Pennsylvania Avenue NW
- in Washington, D.C. and has been the residence of every U.S. President since
- John Adams in 1800.", "snippetAttribution": {"license": {"name": "CC-BY-SA",
- "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/", "urlPingSuffix":
- "DevEx,5894.1"}, "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled":
- "2018-04-22T16:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
- "name": "whitehouse.org - Official Site", "url": "http:\/\/whitehouse.org\/",
- "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "whitehouse.org"}], "displayUrl":
- "whitehouse.org", "snippet": "POTUS: The Facebook witch hunt for #TrumpRussia
- “proof” is FAKE NEWS! Totally VERY REAL Americans like “Texas Chuck” say I’m
- best the best Prez ever.", "dateLastCrawled": "2018-04-23T01:06:00.0000000Z"},
+ "DevEx,5057.1", "about": [{"name": "whitehouse.gov"}, {"name": "White House"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov", "snippet": "History of The
+ White House. Our first president, George Washington, selected the site for
+ the White House in 1791. Every president since John Adams has occupied the
+ White House, and the history of this building extends far beyond the construction
+ of its walls.", "dateLastCrawled": "2018-08-20T05:21:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "White House
+ - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/White_House", "urlPingSuffix":
+ "DevEx,5075.1", "about": [{"name": "White House"}, {"name": "White House"}],
+ "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/White_House", "snippet":
+ "The White House is the official residence and workplace of the President
+ of the United States.It is located at 1600 Pennsylvania Avenue NW in Washington,
+ D.C. and has been the residence of every U.S. President since John Adams in
+ 1800.", "snippetAttribution": {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/",
+ "urlPingSuffix": "DevEx,5417.1"}, "licenseNotice": "Text under CC-BY-SA license"},
+ "dateLastCrawled": "2018-08-14T08:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "TRUMP® WHITE HOUSE | WHITEHOUSE.ORG", "url": "https:\/\/whitehouse.org\/",
+ "urlPingSuffix": "DevEx,5088.1", "about": [{"name": "whitehouse.org"}], "displayUrl":
+ "https:\/\/whitehouse.org", "snippet": "100% OFFICIOUS website of the White
+ House & President Donald J. Trump", "dateLastCrawled": "2018-08-18T22:08:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "The White
- House - YouTube", "url": "https:\/\/www.youtube.com\/user\/whitehouse", "urlPingSuffix":
- "DevEx,5184.1", "about": [{"name": "White House"}, {"name": "Presidency of
- Barack Obama"}, {"name": "West Wing Week"}], "displayUrl": "https:\/\/www.youtube.com\/user\/whitehouse",
- "snippet": "Official White House Youtube channel. President Trump and The
- First Lady have a Social Dinner with the Prime Minister of Japan - Duration:
- 3 minutes, 38 seconds.", "dateLastCrawled": "2018-04-22T16:47:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "The White
House (@WhiteHouse) | Twitter", "url": "https:\/\/twitter.com\/WhiteHouse",
- "urlPingSuffix": "DevEx,5211.1", "thumbnailUrl": "https:\/\/www.bing.com\/th?u=https%3a%2f%2fpbs.twimg.com%2fprofile_images%2f822251886988267520%2f28GpoRsy_bigger.jpg&w=40&h=40&c=1&rs=1&pid=5.1",
- "about": [{"name": "White House"}, {"name": "AKA White House"}, {"name": "White
- House"}], "displayUrl": "https:\/\/twitter.com\/WhiteHouse", "snippet":
- "The latest Tweets from The White House (@WhiteHouse). Welcome to @WhiteHouse!
+ "urlPingSuffix": "DevEx,5109.1", "about": [{"name": "White House"}, {"name":
+ "White House"}], "displayUrl": "https:\/\/twitter.com\/WhiteHouse", "snippet":
+ "The latest Tweets from The White House (@WhiteHouse). Welcome to @WhiteHouse!
Follow for the latest from President @realDonaldTrump and his Administration.
- Tweets may be archived: https:\/\/t.co\/IURuMIrzxb.", "dateLastCrawled": "2018-03-27T17:51:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "The White
+ Tweets may be archived: https:\/\/t.co\/IURuMIrzxb.", "dateLastCrawled": "2018-08-21T09:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "The White
House - Home | Facebook", "url": "https:\/\/www.facebook.com\/WhiteHouse",
- "urlPingSuffix": "DevEx,5231.1", "about": [{"name": "White House"}, {"name":
+ "urlPingSuffix": "DevEx,5126.1", "about": [{"name": "White House"}, {"name":
"White House"}, {"name": "White House"}], "displayUrl": "https:\/\/www.facebook.com\/WhiteHouse",
- "snippet": "The White House. 8.3M likes. Welcome to the official White
+ "snippet": "The White House. 8.4M likes. Welcome to the official White
House Facebook page for the Trump Administration. Comments posted on and
- messages received...", "dateLastCrawled": "2018-04-22T01:46:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "White
+ messages received...", "dateLastCrawled": "2018-08-19T12:10:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "White
+ House: Latest News, Top Stories & Analysis - POLITICO", "url": "https:\/\/www.politico.com\/white-house",
+ "urlPingSuffix": "DevEx,5139.1", "about": [{"name": "Politico"}], "displayUrl":
+ "https:\/\/www.politico.com\/white-house", "snippet": "Latest news, headlines,
+ analysis, photos and videos on White House", "dateLastCrawled": "2018-08-20T12:03:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "The White
+ House - YouTube", "url": "https:\/\/www.youtube.com\/channel\/UCYxRlFDqcWM4y7FfpiAN3KQ",
+ "urlPingSuffix": "DevEx,5152.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.youtube.com\/channel\/UCYxRlFDqcWM4y7FfpiAN3KQ", "snippet":
+ "Official White House Youtube channel. Vice President Pence Delivers Remarks
+ at an Honorable Carry Ceremony for the Remains of American Service Members
+ Who Fell in the Korean War", "dateLastCrawled": "2018-08-16T17:25:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Homepage
+ - White House Historical Association", "url": "https:\/\/whitehousehistory.org\/",
+ "urlPingSuffix": "DevEx,5166.1", "about": [{"name": "Association historique
+ de la Maison-Blanche"}, {"name": "White House"}, {"name": "Decatur House"},
+ {"name": "White House Historical Association"}, {"name": "White House Learning
+ Center"}, {"name": "White House"}], "displayUrl": "https:\/\/whitehousehistory.org",
+ "snippet": "The White House Historical Association is a non-profit organization
+ enhancing understanding of the White House and is supported by official
+ White House Christma...", "dateLastCrawled": "2018-08-16T21:31:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Articles
+ - The White House", "url": "https:\/\/www.whitehouse.gov\/articles\/", "urlPingSuffix":
+ "DevEx,5180.1", "about": [{"name": "White House"}], "displayUrl": "https:\/\/www.whitehouse.gov\/articles",
+ "snippet": "Chris Smolenak is tapping into the “do-it-yourself” trend – and
+ creating a small business herself. She’s opened a storefront in Holland, Pa.,
+ where customers stain and stencil their own handcrafted wooden signs and other
+ decorative items.", "dateLastCrawled": "2018-08-20T22:33:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Petition the
+ White House on the Issues that Matter to You ...", "url": "https:\/\/petitions.whitehouse.gov\/",
+ "urlPingSuffix": "DevEx,5193.1", "about": [{"name": "We the People"}, {"name":
+ "White House"}], "displayUrl": "https:\/\/petitions.whitehouse.gov", "snippet":
+ "Create a Petition. Call on the White House to take action on the issue
+ that matters to you.", "dateLastCrawled": "2018-08-18T12:32:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "Women''s
+ Clothing, Dresses, Tops, Pants, Petite & Plus Size ...", "url": "https:\/\/www.whitehouseblackmarket.com\/store\/",
+ "urlPingSuffix": "DevEx,5207.1", "about": [{"name": "White House Black Market"}],
+ "displayUrl": "https:\/\/www.whitehouseblackmarket.com", "snippet": "White
+ House Black Market offers polished black and white women''s clothing with
+ pops of color and patterns. Shop tailored dresses, tops, pants and accessories.",
+ "dateLastCrawled": "2018-08-20T09:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ "name": "White House | History, Location, & Facts | Britannica.com", "url":
+ "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC", "urlPingSuffix":
+ "DevEx,5221.1", "about": [{"name": "White House"}], "displayUrl": "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC",
+ "snippet": "White House: White House, the office and residence of the
+ president of the United States at 1600 Pennsylvania Avenue N.W. in Washington,
+ D.C. Since the administration of George Washington (1789–97), who occupied
+ presidential residences in New York and Philadelphia, every American president
+ has resided at the White House.", "dateLastCrawled": "2018-08-18T22:14:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "White
House - Facts & Summary - HISTORY.com", "url": "https:\/\/www.history.com\/topics\/white-house",
- "urlPingSuffix": "DevEx,5246.1", "about": [{"name": "White House"}], "displayUrl":
+ "urlPingSuffix": "DevEx,5233.1", "about": [{"name": "White House"}], "displayUrl":
"https:\/\/www.history.com\/topics\/white-house", "snippet": "Find out more
about the history of White House, including videos, interesting articles,
pictures, historical features and more. Get all the facts on HISTORY.com",
- "dateLastCrawled": "2018-04-22T18:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
+ "dateLastCrawled": "2018-08-20T18:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
"name": "President''s Park (White House) (U.S. National Park Service)",
- "url": "https:\/\/www.nps.gov\/whho\/index.htm", "urlPingSuffix": "DevEx,5263.1",
- "displayUrl": "https:\/\/www.nps.gov\/whho", "snippet": "Every president except
- George Washington has called the White House and its surrounding grounds
- his place of work, rest, and solitude. Recognizable around the world, the
- White House stands as a symbol of democracy. The White House and its park
- grounds serve not only as the seat of the executive ...", "dateLastCrawled":
- "2018-04-22T23:17:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
- "name": "The White House Historical Association - Official Site", "url":
- "https:\/\/whitehousehistory.org\/", "urlPingSuffix": "DevEx,5280.1", "about":
- [{"name": "White House"}, {"name": "Decatur House"}, {"name": "White House
- Historical Association"}, {"name": "White House Learning Center"}, {"name":
- "White House Historical Association"}, {"name": "White House"}], "displayUrl":
- "https:\/\/whitehousehistory.org", "snippet": "The White House Historical
- Association is a non-profit organization enhancing understanding of the White
- House and is supported by official White House Christma...", "dateLastCrawled":
- "2018-04-21T19:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
- "name": "White House officials alarmed at Betsy DeVos'' ''60 Minutes ...",
- "url": "https:\/\/www.cnn.com\/2018\/03\/12\/politics\/white-house-officials-alarmed-at-betsy-devos\/index.html",
- "urlPingSuffix": "DevEx,5296.1", "displayUrl": "https:\/\/www.cnn.com\/2018\/03\/12\/politics\/white-house-officials...",
- "snippet": "White House officials were alarmed by Education Secretary Betsy
- DeVos'' struggle to answer basic questions about the nation''s schools and
- failure to defend the administration''s newly proposed school safety measures
- during a tour of television interviews Sunday and Monday, according to two
- sources familiar with their reaction.", "dateLastCrawled": "2018-04-21T10:33:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10", "name": "The White
- House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
- "urlPingSuffix": "DevEx,5313.1", "about": [{"name": "Barack Obama"}, {"name":
- "whitehouse.gov"}], "displayUrl": "https:\/\/obamawhitehouse.archives.gov",
- "snippet": "See the President''s daily schedule, explore behind-the-scenes
- photos from inside the White House, and find out all the ways you can engage
- with the most interactive administration in our country''s history.", "dateLastCrawled":
- "2018-04-20T21:46:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
- "name": "White House | HuffPost", "url": "https:\/\/www.huffingtonpost.com\/topic\/white-house",
- "urlPingSuffix": "DevEx,5328.1", "displayUrl": "https:\/\/www.huffingtonpost.com\/topic\/white-house",
- "snippet": "The White House counselor blasted the former FBI director for
- not discussing his concerns \"under oath.\" But he did last year.", "dateLastCrawled":
- "2018-04-18T04:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12",
- "name": "Home - WHBM", "url": "https:\/\/www.whitehouseblackmarket.com\/store\/",
- "urlPingSuffix": "DevEx,5344.1", "about": [{"name": "White House Black Market"}],
- "displayUrl": "https:\/\/www.whitehouseblackmarket.com", "snippet": "White
- House Black Market offers polished black and white women''s clothing with
- pops of color and patterns. Shop tailored dresses, tops, pants and accessories.",
- "dateLastCrawled": "2018-04-22T15:49:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
- "name": "White House Videos at ABC News Video Archive at abcnews.com", "url":
- "http:\/\/abcnews.go.com\/topics\/news\/us\/white-house.htm", "urlPingSuffix":
- "DevEx,5362.1", "displayUrl": "abcnews.go.com\/topics\/news\/us\/white-house.htm",
- "snippet": "Browse, search and watch White House videos and more at abcnews.com",
- "dateLastCrawled": "2018-04-24T02:15:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
- "name": "White House | presidential office and residence ...", "url": "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC",
- "urlPingSuffix": "DevEx,5378.1", "about": [{"name": "White House"}], "displayUrl":
- "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC", "snippet":
- "White House: White House, the official office and residence of the president
- of the United States at 1600 Pennsylvania Avenue N.W. in Washington, D.C.
- The White House and its landscaped grounds occupy 18 acres (7.2 hectares).",
- "dateLastCrawled": "2018-04-23T00:54:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
- "name": "White House frustrated with EPA''s Pruitt - CNNPolitics", "url":
- "https:\/\/www.cnn.com\/2018\/03\/30\/politics\/scott-pruitt-epa-white-house\/index.html",
- "urlPingSuffix": "DevEx,5395.1", "displayUrl": "https:\/\/www.cnn.com\/2018\/03\/30\/politics\/scott-pruitt-epa-white-house",
- "snippet": "Washington (CNN)Senior White House aides are exasperated with
- Environmental Protection Agency Administrator Scott Pruitt, the already embattled
- Cabinet secretary who now finds himself at the center of an expanding controversy
- over his decision to rent a room in Washington, DC, from the family of an
- energy lobbyist.", "dateLastCrawled": "2018-04-22T16:25:00.0000000Z"}, {"id":
- "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "The White House
- Tour - President''s Park (White House) (U.S ...", "url": "https:\/\/www.nps.gov\/whho\/planyourvisit\/the-white-house-tour.htm",
- "urlPingSuffix": "DevEx,5412.1", "about": [{"name": "White House"}], "displayUrl":
+ "url": "https:\/\/www.nps.gov\/whho\/index.htm", "urlPingSuffix": "DevEx,5247.1",
+ "about": [{"name": "President''s Park (White House)"}], "displayUrl": "https:\/\/www.nps.gov\/whho",
+ "snippet": "Every president except George Washington has called the White
+ House and its surrounding grounds his place of work, rest, and solitude.
+ Recognizable around the world, the White House stands as a symbol of democracy.
+ The White House and its park grounds serve not only as the seat of the executive
+ ...", "dateLastCrawled": "2018-08-06T23:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "The White House Tour - President''s Park (White House) (U.S ...",
+ "url": "https:\/\/www.nps.gov\/whho\/planyourvisit\/the-white-house-tour.htm",
+ "urlPingSuffix": "DevEx,5261.1", "about": [{"name": "White House"}], "displayUrl":
"https:\/\/www.nps.gov\/whho\/planyourvisit\/the-white-house-tour.htm",
"snippet": "A visit to the White House can be one of the most memorable
experiences during any trip to the nation''s capital. If you are interested
in attending a public tour of the White House be sure to secure your reservation
well in advance of your arrival to Washington DC. You will find more detailed
- ...", "dateLastCrawled": "2018-04-21T23:09:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ ...", "dateLastCrawled": "2018-06-12T18:05:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
"name": "How Can I Tour the White House in DC? | Washington.org", "url":
- "https:\/\/washington.org\/DC-faqs-for-visitors\/how-can-i-tour-white-house",
- "urlPingSuffix": "DevEx,5445.1", "about": [{"name": "White House"}], "displayUrl":
- "https:\/\/washington.org\/DC-faqs-for-visitors\/how-can-i-tour-white-house",
- "snippet": "Find out everything you need to know about planning a visit to
- the country’s most famous house. Here’s how to request and book a tour,
- what to expect when you visit, how to get to the White House, where to store
- your belongings before you go and much more.", "dateLastCrawled": "2018-04-21T01:14:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Headlines
- from the White House", "url": "https:\/\/www.cnbc.com\/white-house\/", "urlPingSuffix":
- "DevEx,5462.1", "about": [{"name": "Michael Cohen"}], "displayUrl": "https:\/\/www.cnbc.com\/white-house",
- "snippet": "Latest news from the White House, including video, commentary,
- and in-depth analysis coverage.", "dateLastCrawled": "2018-04-22T09:19:00.0000000Z"}]},
- "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
- 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "https:\/\/washington.org\/dc-faqs-for-visitors\/how-can-i-tour-white-house",
+ "urlPingSuffix": "DevEx,5275.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/washington.org\/dc-faqs-for-visitors\/how-can-i-tour-white-house",
+ "snippet": "Here’s how to request and book a White House tour, what to expect
+ when you visit, how to get to the White House, where to store your belongings
+ before you go and much more.", "dateLastCrawled": "2018-08-18T09:47:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "White
+ House | TheHill", "url": "http:\/\/thehill.com\/opinion\/white-house", "urlPingSuffix":
+ "DevEx,5288.1", "about": [{"name": "The Hill"}], "displayUrl": "thehill.com\/opinion\/white-house",
+ "snippet": "The Hill is a top US political website, read by the White House
+ and more lawmakers than any other site -- vital for policy, politics and election
+ campaigns.", "dateLastCrawled": "2018-07-08T06:34:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "White House | USAGov", "url": "https:\/\/www.usa.gov\/federal-agencies\/white-house",
+ "urlPingSuffix": "DevEx,5303.1", "about": [{"name": "White House"}], "displayUrl":
+ "https:\/\/www.usa.gov\/federal-agencies\/white-house", "snippet": "Directory
+ listing for White House. The .gov means it''s official. Federal government
+ websites often end in .gov or .mil.", "dateLastCrawled": "2018-07-30T00:42:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Shop
+ Women''s New Arrivals - White House Black Market", "url": "https:\/\/www.whitehouseblackmarket.com\/store\/category\/new-arrivals\/cat210006",
+ "urlPingSuffix": "DevEx,5317.1", "about": [{"name": "White House Black Market"}],
+ "displayUrl": "https:\/\/www.whitehouseblackmarket.com\/store\/category\/new-arrivals\/...",
+ "snippet": "Shop White House | Black Market''s new arrivals for the latest
+ in designer women''s clothing, shoes & accessories. Free shipping for WHBM
+ Rewards members!", "dateLastCrawled": "2018-08-20T02:31:00.0000000Z"}]}, "rankingResponse":
+ {"mainline": {"items": [{"answerType": "WebPages", "resultIndex": 0, "value":
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
"WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
- {"answerType": "News"}, {"answerType": "WebPages", "resultIndex": 2, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}}, {"answerType":
- "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
{"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
{"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
{"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
@@ -248,5 +222,5 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
{"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}}]}}}'
http_version:
- recorded_at: Fri, 27 Apr 2018 15:14:07 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:47 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml
index b30de9a15f..00d96cb8f1 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=casa%20blanca&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=casa%20blanca&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,58 +25,58 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '3769'
+ - '3711'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:50 GMT
+ - Sun, 26 Aug 2018 23:57:47 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=20B2E2F0B17E6A641874E92DB0E96B44; path=/; expires=Tue, 21-May-2019 23:26:50
+ - MUID=1AAD78EB658B63A43FF274BC648462BD; path=/; expires=Fri, 20-Sep-2019 23:58:48
GMT; domain=bingapis.com
- - MUIDB=20B2E2F0B17E6A641874E92DB0E96B44; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:50 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:50 GMT;
+ - MUIDB=1AAD78EB658B63A43FF274BC648462BD; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:48 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:47 GMT;
path=/
- - SRCHUID=V=2&GUID=9AFEE97C93A94380BB72BEB8D874F8DD&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:50 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:50
+ - SRCHUID=V=2&GUID=744179DDA25847FE996C49D69363C5D6&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:47 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:47
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=260C767DD3E865EC36027DA0D27F643C; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=3C02397582F0681A2450352283FF69A4; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:50 GMT; domain=bingapis.com
- - _SS=SID=260C767DD3E865EC36027DA0D27F643C; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:48 GMT; domain=bingapis.com
+ - _SS=SID=3C02397582F0681A2450352283FF69A4; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 3D652134ACFB4D68A10692E99A1BBF79
+ - EAC51A7751184934A740B5D23A5CE603
X-Msedge-Clientid:
- - 20B2E2F0B17E6A641874E92DB0E96B44
+ - 1AAD78EB658B63A43FF274BC648462BD
X-Msapi-Userstate:
- - efa5
+ - c8fb
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 3D652134ACFB4D68A10692E99A1BBF79 Ref B: CO1EDGE0207 Ref C: 2018-04-26T23:26:50Z'
+ - 'Ref A: EAC51A7751184934A740B5D23A5CE603 Ref B: BAYEDGE0514 Ref C: 2018-08-26T23:58:48Z'
Date:
- - Thu, 26 Apr 2018 23:26:50 GMT
+ - Sun, 26 Aug 2018 23:58:47 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=DE4C6622491647F69747073AAD9D6FA1&CID=20B2E2F0B17E6A641874E92DB0E96B44&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=DE4C6622491647F69747073AAD9D6FA1&CID=20B2E2F0B17E6A641874E92DB0E96B44&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=DDA228CAFAA2462E870E66F812A0B216&CID=1AAD78EB658B63A43FF274BC648462BD&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=DDA228CAFAA2462E870E66F812A0B216&CID=1AAD78EB658B63A43FF274BC648462BD&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=casa+blanca",
- "webSearchUrlPingSuffix": "DevEx,5719.1", "totalEstimatedMatches": 33800000,
+ "webSearchUrlPingSuffix": "DevEx,5440.1", "totalEstimatedMatches": 18500000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
- "Casablanca (1942) - IMDb", "url": "http:\/\/www.imdb.com\/title\/tt0034583\/",
- "urlPingSuffix": "DevEx,5118.1", "about": [{"name": "Casablanca"}, {"name":
- "Casablanca"}], "displayUrl": "www.imdb.com\/title\/tt0034583", "snippet":
- "Directed by Michael Curtiz. With Humphrey Bogart, Ingrid Bergman, Paul Henreid,
- Claude Rains. A cynical nightclub owner protects an old flame and her husband
- from Nazis in Morocco.", "dateLastCrawled": "2018-04-22T05:14:00.0000000Z"},
+ "Casablanca (1942) - IMDb", "url": "https:\/\/www.imdb.com\/title\/tt0034583\/",
+ "urlPingSuffix": "DevEx,5057.1", "about": [{"name": "Casablanca"}, {"name":
+ "Casablanca"}], "displayUrl": "https:\/\/www.imdb.com\/title\/tt0034583",
+ "snippet": "Directed by Michael Curtiz. With Humphrey Bogart, Ingrid Bergman,
+ Paul Henreid, Claude Rains. A cynical nightclub owner protects an old flame
+ and her husband from Nazis in Morocco.", "dateLastCrawled": "2018-08-20T02:42:00.0000000Z"},
{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "Casablanca
(film) - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Casablanca_(film)",
- "urlPingSuffix": "DevEx,5143.1", "about": [{"name": "Casablanca"}, {"name":
+ "urlPingSuffix": "DevEx,5078.1", "about": [{"name": "Casablanca"}, {"name":
"Casablanca"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Casablanca_(film)",
"snippet": "Casablanca is a 1942 American romantic drama film directed by
Michael Curtiz based on Murray Burnett and Joan Alison''s unproduced stage
@@ -86,134 +84,133 @@ http_interactions:
and Paul Henreid; it also features Claude Rains, Conrad Veidt, Sydney Greenstreet,
Peter Lorre, and Dooley Wilson.", "snippetAttribution": {"license": {"name":
"CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/",
- "urlPingSuffix": "DevEx,5720.1"}, "licenseNotice": "Text under CC-BY-SA license"},
- "dateLastCrawled": "2018-04-22T14:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
- "name": "CasaBlanca Resort - Official Site", "url": "https:\/\/casablancaresort.com\/",
- "urlPingSuffix": "DevEx,5170.1", "about": [{"name": "CasaBlanca Resort"},
+ "urlPingSuffix": "DevEx,5441.1"}, "licenseNotice": "Text under CC-BY-SA license"},
+ "dateLastCrawled": "2018-08-22T14:58:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
+ "name": "Casa Blanca Movie Showtimes & Tickets | Santikos", "url": "https:\/\/www.santikos.com\/san-antonio\/casa-blanca",
+ "urlPingSuffix": "DevEx,5092.1", "about": [{"name": "Santikos Casa Blanca"},
+ {"name": "Santikos Casa Blanca"}], "displayUrl": "https:\/\/www.santikos.com\/san-antonio\/casa-blanca",
+ "snippet": "Visit Santikos Casa Blanca and enjoy our in theatre dining service,
+ luxury electric recliners and 4k projection and premium sound. View showtimes
+ and book your tickets online today!", "dateLastCrawled": "2018-08-21T10:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "CasaBlanca
+ Resort and Casino in Mesquite, NV", "url": "https:\/\/casablancaresort.com\/",
+ "urlPingSuffix": "DevEx,5106.1", "about": [{"name": "CasaBlanca Resort"},
{"name": "CasaBlanca Resort"}], "displayUrl": "https:\/\/casablancaresort.com",
"snippet": "Stay in one of our deluxe rooms as you try your luck at over 800
slots, video poker machines, and tables at the famous CasaBlanca Resort in
- Mesquite!", "dateLastCrawled": "2018-04-17T14:11:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
- "name": "Casa Blanca Showtimes & Tickets | San Antonio | Santikos", "url":
- "https:\/\/www.santikos.com\/san-antonio\/casa-blanca", "urlPingSuffix": "DevEx,5186.1",
- "about": [{"name": "Santikos Casa Blanca"}, {"name": "Santikos Casa Blanca"}],
- "displayUrl": "https:\/\/www.santikos.com\/san-antonio\/casa-blanca", "snippet":
- "View the latest Santikos Casa Blanca showtimes and purchase your tickets
- online today for all the latest blockbuster movies. Find out more about Casa
- Blanca including movie theater information, driving directions, ticket prices
- and box office opening hours.", "dateLastCrawled": "2018-04-22T09:30:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "CasaBlanca
- - Authentic Mexican Restaurants in MA", "url": "http:\/\/casablancamexican.com\/",
- "urlPingSuffix": "DevEx,5202.1", "displayUrl": "casablancamexican.com", "snippet":
- "CasaBlanca has various mexican restaurants in MA including: Andover, North
- Andover, and North Billerica. Each location specializes in making authentic
- mexican restaurant cuisine for any taste buds including children, adults,
- and even vegetarians.", "dateLastCrawled": "2018-04-21T07:09:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "Casablanca
- Bridal - Official Site", "url": "https:\/\/www.casablancabridal.com\/", "urlPingSuffix":
- "DevEx,5218.1", "displayUrl": "https:\/\/www.casablancabridal.com", "snippet":
- "We believe there''s a difference between designing a dress for your wedding
- and for your marriage. Casablanca Bridal was established in 1997 and has since
- ...", "dateLastCrawled": "2018-04-21T07:52:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
- "name": "Casa Blanca - Official Site", "url": "http:\/\/www.casablancaalabama.com\/",
- "urlPingSuffix": "DevEx,5234.1", "displayUrl": "www.casablancaalabama.com",
+ Mesquite!", "dateLastCrawled": "2018-08-24T21:18:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4",
+ "name": "Movie Showtimes & Tickets | Santikos Theatres | San Antonio", "url":
+ "https:\/\/www.santikos.com\/?portal", "urlPingSuffix": "DevEx,5119.1", "about":
+ [{"name": "Santikos Theatres"}], "displayUrl": "https:\/\/www.santikos.com\/?portal",
+ "snippet": "Experience a best in class movie going experience with Santikos
+ Entertainment. Browse showtimes and book your tickets online today!", "dateLastCrawled":
+ "2018-08-20T10:08:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5",
+ "name": "Home | Casa Blanca", "url": "http:\/\/www.casablancatexas.com\/",
+ "urlPingSuffix": "DevEx,5133.1", "about": [{"name": "Casa Blanca On Brushy
+ Creek Wedding\/Events Venue"}], "displayUrl": "www.casablancatexas.com", "snippet":
+ "Venue. Casa Blanca is the perfect setting for your dream wedding. We have
+ indoor and outdoor settings that allow you to custom create whatever type
+ of wedding you have always wanted.", "dateLastCrawled": "2018-07-30T05:12:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "Casa Blanca
+ | Mexican Restaurant & Cantina", "url": "http:\/\/www.casablancaalabama.com\/",
+ "urlPingSuffix": "DevEx,5147.1", "displayUrl": "www.casablancaalabama.com",
"snippet": "Casa Blanca serves up the finest in Mexican cuisine in the North
Alabama area. Our extensive menu offers a number of traditional choices, special
- items found only at our restaurant.", "dateLastCrawled": "2018-04-22T16:39:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Casablanca
- Cafe - Official Site", "url": "http:\/\/casablancacafeonline.com\/", "urlPingSuffix":
- "DevEx,5249.1", "displayUrl": "casablancacafeonline.com", "snippet": "Known
- for its charming atmosphere, our trendy and popular eatery blends old and
- new to enhance the beauty of Ft Lauderdale’s beach", "dateLastCrawled": "2018-04-22T07:47:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Santikos
- - Official Site", "url": "https:\/\/www.santikos.com\/", "urlPingSuffix":
- "DevEx,5264.1", "about": [{"name": "Santikos Bijou Cinema Bistro"}, {"name":
- "Santikos Mayan Palace 14"}, {"name": "Santikos Rialto"}, {"name": "Santikos
- Silverado 16-San Antonio"}], "displayUrl": "https:\/\/www.santikos.com", "snippet":
- "Watch the latest movies, find movie listings & showtimes near you, and book
- your tickets online in advance at Santikos Theatres, Texas", "dateLastCrawled":
- "2018-04-22T06:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
- "name": "Casablanca - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Casablanca",
- "urlPingSuffix": "DevEx,5291.1", "about": [{"name": "Casablanca"}, {"name":
- "Casablanca"}], "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Casablanca",
- "snippet": "Casablanca (Arabic: الدار البيضاء , translit. ad-dār al-bayḍāʾ;
- Berber languages: ⴰⵏⴼⴰ, translit. anfa; local informal name: Kaẓa), located
- in the central-western part of Morocco bordering the Atlantic Ocean, is the
- largest city in Morocco.", "snippetAttribution": {"license": {"name": "CC-BY-SA",
- "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/", "urlPingSuffix":
- "DevEx,5721.1"}, "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled":
- "2018-04-21T13:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
- "name": "Play it, Sam - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=7vThuwa5RZU",
- "urlPingSuffix": "DevEx,5312.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=7vThuwa5RZU",
- "snippet": "Casablanca (1942): Play it Sam, Play As Time Goes By. Ingrid Bergman,
- Humphrey Bogart, Sinatra sings - Duration: 4:52. pamfilyam 492,573 views",
- "dateLastCrawled": "2018-04-12T20:59:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11",
+ items found only at our restaurant.", "dateLastCrawled": "2018-08-15T09:52:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "Amazon.com:
+ Casablanca: Humphrey Bogart, Ingrid Bergman ...", "url": "https:\/\/www.amazon.com\/Casablanca-Humphrey-Bogart\/dp\/B001EBWING",
+ "urlPingSuffix": "DevEx,5160.1", "about": [{"name": "Casablanca"}, {"name":
+ "Casablanca"}], "displayUrl": "https:\/\/www.amazon.com\/Casablanca-Humphrey-Bogart\/dp\/B001EBWING",
+ "snippet": "Buy Casablanca: Read 2942 Movies & TV Reviews - Amazon.com", "dateLastCrawled":
+ "2018-08-21T04:25:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8",
"name": "The Casa Blanca Vacation Rentals | We have your Perfect ...", "url":
- "http:\/\/thecasablanca.net\/", "urlPingSuffix": "DevEx,5328.1", "displayUrl":
- "thecasablanca.net", "snippet": "The Casa Blanca Apartments. Our apartments
- are located directly on the magnificent Crescent Beach with unobstructed views
- of the beach and beautiful Gulf of Mexico waters.", "dateLastCrawled": "2018-04-21T00:06:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Casa
- Blanca Restaurant | Desert Hot Springs, CA 92240", "url": "http:\/\/www.casablancamenu.com\/",
- "urlPingSuffix": "DevEx,5343.1", "about": [{"name": "Casa Blanca, California"}],
- "displayUrl": "www.casablancamenu.com", "snippet": "Shrimp Wrapped with bacon
- and chipotle with rice and beans (Guacamole & Choice tortilla)....Camarones
- enrollados con tocino y chile chipotle, arroz y frijoles.", "dateLastCrawled":
- "2018-04-22T00:29:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
- "name": "Casablanca - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=0KGOB1WIjRs",
- "urlPingSuffix": "DevEx,5364.1", "displayUrl": "https:\/\/www.youtube.com\/watch?v=0KGOB1WIjRs",
- "snippet": "Casablanca: easy to enter, but much harder to leave, especially
- if you''re wanted by the Nazis. Such a man is Resistance leader Victor Laszlo
- (Paul Henreid), ...", "dateLastCrawled": "2018-04-19T23:54:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14", "name": "Homepage
- | Casablanca Ceiling Fan", "url": "https:\/\/www.hunterfan.com\/casablanca",
- "urlPingSuffix": "DevEx,5380.1", "about": [{"name": "Casablanca Fan Company"}],
- "displayUrl": "https:\/\/www.hunterfan.com\/casablanca", "snippet": "Shop
- designer ceiling fans and accessories at Casablanca", "dateLastCrawled": "2018-04-18T20:41:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15", "name": "Casa
- Blanca Restaurant - Official Site", "url": "http:\/\/casablancasb.com\/",
- "urlPingSuffix": "DevEx,5395.1", "displayUrl": "casablancasb.com", "snippet":
- "Book your event with us! Casa Blanca is conveniently located on State Street
- in the heart of Santa Barbara!", "dateLastCrawled": "2018-04-22T00:40:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16", "name": "Santikos
- Casa Blanca Movie Times - Fandango", "url": "https:\/\/www.fandango.com\/santikos-casa-blanca-aaxwh\/theater-page",
- "urlPingSuffix": "DevEx,5411.1", "about": [{"name": "Santikos Casa Blanca"}],
- "displayUrl": "https:\/\/www.fandango.com\/santikos-casa-blanca-aaxwh\/theater-page",
- "snippet": "Find Santikos Casa Blanca showtimes and theater information at
- Fandango. Buy tickets, get box office information, driving directions and
- more.", "dateLastCrawled": "2018-04-22T16:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
- "name": "Casablanca (1942) - Rotten Tomatoes", "url": "https:\/\/www.rottentomatoes.com\/m\/1003707_casablanca",
- "urlPingSuffix": "DevEx,5439.1", "about": [{"name": "Casablanca"}, {"name":
- "Casablanca"}], "displayUrl": "https:\/\/www.rottentomatoes.com\/m\/1003707_casablanca",
- "snippet": "One of the most beloved American films, this captivating wartime
- adventure of romance and intrigue from director Michael Curtiz defies standard
- categorization. Simply put, it is the story of Rick Blaine (Humphrey Bogart),
- a world-weary ex-freedom fighter who runs a nightclub in Casablanca during
- the early part of WWII.", "dateLastCrawled": "2018-04-22T13:21:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Casablanca
- - Wikitravel", "url": "https:\/\/wikitravel.org\/en\/Casablanca", "urlPingSuffix":
- "DevEx,5455.1", "about": [{"name": "Casablanca"}], "displayUrl": "https:\/\/wikitravel.org\/en\/Casablanca",
- "snippet": "Casablanca (Arabic: الدار البيضاء), almost universally referred
- to as ''Casa'', is the cosmopolitan, industrial and economic heart of Morocco
- and its largest city, as well as perhaps one of the less obviously endearing
- cities in the country.", "dateLastCrawled": "2018-04-20T06:26:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19", "name": "Casablanca
+ "http:\/\/thecasablanca.net\/", "urlPingSuffix": "DevEx,5174.1", "displayUrl":
+ "thecasablanca.net", "snippet": "Welcome! Our condominium complex includes
+ gulf-front apartments and private villas. Every deluxe gulf-front apartment
+ and private villa at the Casa Blanca is individually decorated and fully furnished
+ including all cookware and linens.", "dateLastCrawled": "2018-08-21T07:55:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Casablanca
+ - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Casablanca", "urlPingSuffix":
+ "DevEx,5194.1", "about": [{"name": "Casablanca"}, {"name": "Casablanca"}],
+ "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Casablanca", "snippet": "Casablanca
+ (Arabic: الدار البيضاء , translit. ad-dār al-bayḍāʾ; Berber languages: ⴰⵏⴼⴰ,
+ translit. anfa; local informal name: Kaẓa), located in the central-western
+ part of Morocco bordering the Atlantic Ocean, is the largest city in Morocco.",
+ "snippetAttribution": {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/",
+ "urlPingSuffix": "DevEx,5442.1"}, "licenseNotice": "Text under CC-BY-SA license"},
+ "dateLastCrawled": "2018-08-19T01:56:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10",
+ "name": "Home | Casablanca Bridal", "url": "https:\/\/www.casablancabridal.com\/",
+ "urlPingSuffix": "DevEx,5208.1", "displayUrl": "https:\/\/www.casablancabridal.com",
+ "snippet": "We believe there''s a difference between designing a dress for
+ your wedding and for your marriage. Casablanca Bridal was established in 1997
+ and has since become one of the fastest growing, well known manufacturers
+ of bridal gowns in the industry.", "dateLastCrawled": "2018-08-20T02:50:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.11", "name": "CasaBlanca
+ - Authentic Mexican Restaurants in MA", "url": "https:\/\/casablancamexican.com\/",
+ "urlPingSuffix": "DevEx,5221.1", "displayUrl": "https:\/\/casablancamexican.com",
+ "snippet": "CasaBlanca has various mexican restaurants in MA including: Andover,
+ North Andover, and North Billerica. Each location specializes in making authentic
+ mexican restaurant cuisine for any taste buds including children, adults,
+ and even vegetarians.", "dateLastCrawled": "2018-08-19T14:28:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.12", "name": "Casablanca
2018: Best of Casablanca, Morocco Tourism ...", "url": "https:\/\/www.tripadvisor.com\/Tourism-g293732-Casablanca_Grand_Casablanca_Region-Vacations.html",
- "urlPingSuffix": "DevEx,5476.1", "about": [{"name": "Casablanca"}], "displayUrl":
+ "urlPingSuffix": "DevEx,5239.1", "about": [{"name": "Casablanca"}], "displayUrl":
"https:\/\/www.tripadvisor.com\/Tourism-g293732-Casablanca_Grand...", "snippet":
- "Casablanca Tourism: TripAdvisor has 76,433 reviews of Casablanca Hotels,
+ "Casablanca Tourism: TripAdvisor has 81,367 reviews of Casablanca Hotels,
Attractions, and Restaurants making it your best Casablanca resource.", "dateLastCrawled":
- "2018-04-23T05:02:00.0000000Z"}]}, "rankingResponse": {"mainline": {"items":
- [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}},
- {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
+ "2018-07-30T07:43:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.13",
+ "name": "Santikos Casa Blanca Movie Times - Fandango", "url": "https:\/\/www.fandango.com\/santikos-casa-blanca-aaxwh\/theater-page",
+ "urlPingSuffix": "DevEx,5253.1", "about": [{"name": "Santikos Casa Blanca"},
+ {"name": "Santikos Casa Blanca"}], "displayUrl": "https:\/\/www.fandango.com\/santikos-casa-blanca-aaxwh\/theater-page",
+ "snippet": "Find Santikos Casa Blanca showtimes and theater information at
+ Fandango. Buy tickets, get box office information, driving directions and
+ more.", "dateLastCrawled": "2018-08-21T07:26:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.14",
+ "name": "Casa Blanca 7 | Hotel in San Miguel de Allende :: (415 ...", "url":
+ "http:\/\/casablanca7.com\/", "urlPingSuffix": "DevEx,5266.1", "displayUrl":
+ "casablanca7.com", "snippet": "Stylish hotel in the heart of San Miguel de
+ Allende... overlooking the iconic San Francisco Church.", "dateLastCrawled":
+ "2018-08-19T23:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.15",
+ "name": "Amazon.com: Casablanca [Blu-ray]: Humphrey Bogart, Ingrid ...", "url":
+ "https:\/\/www.amazon.com\/Casablanca-Blu-ray-Humphrey-Bogart\/dp\/B002VWONB2",
+ "urlPingSuffix": "DevEx,5292.1", "displayUrl": "https:\/\/www.amazon.com\/Casablanca-Blu-ray-Humphrey-Bogart\/dp\/B002...",
+ "snippet": "Amazon.com: Casablanca [Blu-ray]: Humphrey Bogart, Ingrid Bergman,
+ Paul Henreid, Claude Rains, Conrad Veidt, Sydney Greenstreet, Peter Lorre,
+ S.Z. Sakall, Madeleine Lebeau, Dooley Wilson, Joy Page, John Qualen, Michael
+ Curtiz, Hal B. Wallis, Casey Robinson, Howard Koch, Joan Alison, Julius J.
+ Epstein, Murray Burnett, Philip G. Epstein: Movies & TV", "dateLastCrawled":
+ "2018-08-17T16:20:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "urlPingSuffix":
+ "DevEx,5306.1", "about": [{"name": "whitehouse.gov"}, {"name": "White House"}],
+ "displayUrl": "https:\/\/www.whitehouse.gov", "snippet": "History of The White
+ House. Our first president, George Washington, selected the site for the White
+ House in 1791. Every president since John Adams has occupied the White House,
+ and the history of this building extends far beyond the construction of its
+ walls.", "dateLastCrawled": "2018-08-20T05:21:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17",
+ "name": "Casa Blanca, AZ - Casa Blanca, Arizona Map & Directions ...", "url":
+ "https:\/\/www.mapquest.com\/us\/arizona\/casa-blanca-az-282088664", "urlPingSuffix":
+ "DevEx,5316.1", "about": [{"name": "Casa Blanca, Arizona"}], "displayUrl":
+ "https:\/\/www.mapquest.com\/us\/arizona\/casa-blanca-az-282088664", "snippet":
+ "Get directions, maps, and traffic for Casa Blanca, AZ. Check flight prices
+ and hotel availability for your visit.", "dateLastCrawled": "2018-08-16T21:04:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18", "name": "Casablanca
+ (1942) - Full Cast & Crew - IMDb", "url": "https:\/\/www.imdb.com\/title\/tt0034583\/fullcredits",
+ "urlPingSuffix": "DevEx,5326.1", "about": [{"name": "Casablanca"}], "displayUrl":
+ "https:\/\/www.imdb.com\/title\/tt0034583\/fullcredits", "snippet": "Casablanca
+ (1942) cast and crew credits, including actors, actresses, directors, writers
+ and more.", "dateLastCrawled": "2018-08-20T02:50:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19",
+ "name": "Homepage | Casablanca Ceiling Fan", "url": "https:\/\/www.hunterfan.com\/casablanca",
+ "urlPingSuffix": "DevEx,5339.1", "about": [{"name": "Casablanca Fan Company"}],
+ "displayUrl": "https:\/\/www.hunterfan.com\/casablanca", "snippet": "Shop
+ designer ceiling fans and accessories at Casablanca", "dateLastCrawled": "2018-08-21T10:33:00.0000000Z"}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
+ "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
{"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2"}},
- {"answerType": "Images"}, {"answerType": "WebPages", "resultIndex": 3, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}}, {"answerType":
- "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4"}},
{"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5"}},
- {"answerType": "Videos"}, {"answerType": "WebPages", "resultIndex": 6, "value":
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}}, {"answerType":
- "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7"}},
{"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}},
{"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.10"}},
@@ -225,8 +222,7 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.16"}},
{"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.17"}},
{"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.18"}},
- {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]},
- "sidebar": {"items": [{"answerType": "Entities"}]}}}'
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.19"}}]}}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:50 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:48 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_the_search_engine_returns_zero_results.yml b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_the_search_engine_returns_zero_results.yml
index 824b55d131..daf10b9b68 100644
--- a/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_the_search_engine_returns_zero_results.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search/behaves_like_a_web_search_engine_execute_query_when_the_search_engine_returns_zero_results.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=%2765d86996b6eceb05d2272aea9cadd10d%27&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=20&mkt=en-US&offset=0&q=%2765d86996b6eceb05d2272aea9cadd10d%27&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,47 +25,47 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '243'
+ - '241'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Thu, 26 Apr 2018 23:25:53 GMT
+ - Sun, 26 Aug 2018 23:57:49 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=367A125D24606CE23DF2198025F76DE7; path=/; expires=Tue, 21-May-2019 23:26:53
+ - MUID=0717904F68976CD019499C1869986DF8; path=/; expires=Fri, 20-Sep-2019 23:58:49
GMT; domain=bingapis.com
- - MUIDB=367A125D24606CE23DF2198025F76DE7; path=/; httponly; expires=Tue, 21-May-2019
- 23:26:53 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:53 GMT;
+ - MUIDB=0717904F68976CD019499C1869986DF8; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:49 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:49 GMT;
path=/
- - SRCHUID=V=2&GUID=05F4997B288A49A4AE980187C598DC33&dmnchg=1; domain=.bingapis.com;
- expires=Sun, 26-Apr-2020 23:26:53 GMT; path=/
- - SRCHUSR=DOB=20180426; domain=.bingapis.com; expires=Sun, 26-Apr-2020 23:26:53
+ - SRCHUID=V=2&GUID=A92D5AA8B0AF4E4B88BC0174799F4583&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:49 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:49
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=1EC315D703C16D3229711E0A02566CA8; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=004279A13F796A6A177E75F63E766BC5; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Tue, 21-May-2019 23:26:53 GMT; domain=bingapis.com
- - _SS=SID=1EC315D703C16D3229711E0A02566CA8; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:49 GMT; domain=bingapis.com
+ - _SS=SID=004279A13F796A6A177E75F63E766BC5; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 5AED06D00561447199130E9C33212040
+ - 6C138699C0AD4C099DD3961C2E6E55A1
X-Msedge-Clientid:
- - 367A125D24606CE23DF2198025F76DE7
+ - '0717904F68976CD019499C1869986DF8'
X-Msapi-Userstate:
- - 7a78
+ - f30f
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 5AED06D00561447199130E9C33212040 Ref B: CO1EDGE0108 Ref C: 2018-04-26T23:26:53Z'
+ - 'Ref A: 6C138699C0AD4C099DD3961C2E6E55A1 Ref B: BAYEDGE0106 Ref C: 2018-08-26T23:58:49Z'
Date:
- - Thu, 26 Apr 2018 23:26:53 GMT
+ - Sun, 26 Aug 2018 23:58:49 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=199F9E70AA374635BAB9EAB6A1C854AA&CID=367A125D24606CE23DF2198025F76DE7&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=199F9E70AA374635BAB9EAB6A1C854AA&CID=367A125D24606CE23DF2198025F76DE7&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=27C0ED6DD702481A9E29A170E868CCA0&CID=0717904F68976CD019499C1869986DF8&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=27C0ED6DD702481A9E29A170E868CCA0&CID=0717904F68976CD019499C1869986DF8&Type=Event.CPT&DATA=0"},
"rankingResponse": {}}'
http_version:
- recorded_at: Thu, 26 Apr 2018 23:26:53 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:49 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v6_web_search_execute_query.yml b/spec/vcr_cassettes/bing_v6_web_search_execute_query.yml
index 5da6c0bf88..9f16696488 100644
--- a/spec/vcr_cassettes/bing_v6_web_search_execute_query.yml
+++ b/spec/vcr_cassettes/bing_v6_web_search_execute_query.yml
@@ -2,15 +2,13 @@
http_interactions:
- request:
method: get
- uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=20&q=osha%20guidelines&responseFilter=WebPages,SpellSuggestions&safeSearch=moderate&textDecorations=false&traffictype=test
+ uri: https://www.bingapis.com/api/v6/search?AppId=&count=10&mkt=en-US&offset=20&q=osha%20guidelines&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
body:
encoding: US-ASCII
string: ''
headers:
User-Agent:
- USASearch
- Ocp-Apim-Subscription-Key:
- - ""
Accept-Encoding:
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept:
@@ -27,108 +25,110 @@ http_interactions:
Cache-Control:
- private, max-age=0
Content-Length:
- - '2030'
+ - '2046'
Content-Type:
- application/json; charset=utf-8
Expires:
- - Tue, 03 Jul 2018 19:24:44 GMT
+ - Sun, 26 Aug 2018 23:57:49 GMT
Vary:
- Accept-Encoding
P3p:
- CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
Set-Cookie:
- - MUID=0ABBDA6CA38D618F030BD64DA25A6065; path=/; expires=Sun, 28-Jul-2019 19:25:44
+ - MUID=2119A72CF15E6127035FAB7BF05160E7; path=/; expires=Fri, 20-Sep-2019 23:58:50
GMT; domain=bingapis.com
- - MUIDB=0ABBDA6CA38D618F030BD64DA25A6065; path=/; httponly; expires=Sun, 28-Jul-2019
- 19:25:44 GMT
- - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Fri, 03-Jul-2020 19:25:44 GMT;
+ - MUIDB=2119A72CF15E6127035FAB7BF05160E7; path=/; httponly; expires=Fri, 20-Sep-2019
+ 23:58:50 GMT
+ - SRCHD=AF=NOFORM; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:49 GMT;
path=/
- - SRCHUID=V=2&GUID=FC666274B675480288580AB0A9D5E401&dmnchg=1; domain=.bingapis.com;
- expires=Fri, 03-Jul-2020 19:25:44 GMT; path=/
- - SRCHUSR=DOB=20180703; domain=.bingapis.com; expires=Fri, 03-Jul-2020 19:25:44
+ - SRCHUID=V=2&GUID=17EB399AA747419EB95EC25F2C2EE9C9&dmnchg=1; domain=.bingapis.com;
+ expires=Wed, 26-Aug-2020 23:58:49 GMT; path=/
+ - SRCHUSR=DOB=20180826; domain=.bingapis.com; expires=Wed, 26-Aug-2020 23:58:49
GMT; path=/
- - _EDGE_S=mkt=en-us&F=1&SID=1900C8B31C4864C52D41C4921D9F6559; path=/; httponly;
+ - _EDGE_S=mkt=en-us&F=1&SID=3237C60F52166DE5053ACA5853196C55; path=/; httponly;
domain=bingapis.com
- - _EDGE_V=1; path=/; httponly; expires=Sun, 28-Jul-2019 19:25:44 GMT; domain=bingapis.com
- - _SS=SID=1900C8B31C4864C52D41C4921D9F6559; domain=.bingapis.com; path=/
+ - _EDGE_V=1; path=/; httponly; expires=Fri, 20-Sep-2019 23:58:50 GMT; domain=bingapis.com
+ - _SS=SID=3237C60F52166DE5053ACA5853196C55; domain=.bingapis.com; path=/
Bingapis-Traceid:
- - 3FB3712848764FA2B4729CD47642EFDE
+ - E8C85845683649299DC6BEFACE5113D9
X-Msedge-Clientid:
- - 0ABBDA6CA38D618F030BD64DA25A6065
+ - 2119A72CF15E6127035FAB7BF05160E7
X-Msapi-Userstate:
- - 9a77
+ - 9cad
Bingapis-Market:
- en-US
X-Msedge-Ref:
- - 'Ref A: 3FB3712848764FA2B4729CD47642EFDE Ref B: CO1EDGE0121 Ref C: 2018-07-03T19:25:44Z'
+ - 'Ref A: E8C85845683649299DC6BEFACE5113D9 Ref B: BAYEDGE0110 Ref C: 2018-08-26T23:58:50Z'
Date:
- - Tue, 03 Jul 2018 19:25:43 GMT
+ - Sun, 26 Aug 2018 23:58:49 GMT
body:
encoding: UTF-8
- string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=DDF2AD04E5DA42AFBFBDEFB19B0D1062&CID=0ABBDA6CA38D618F030BD64DA25A6065&ID=",
- "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=DDF2AD04E5DA42AFBFBDEFB19B0D1062&CID=0ABBDA6CA38D618F030BD64DA25A6065&Type=Event.CPT&DATA=0"},
+ string: '{"_type": "SearchResponse", "instrumentation": {"pingUrlBase": "https:\/\/www.bingapis.com\/api\/ping?IG=29764E2DA01447B98852A761CB00C5EE&CID=2119A72CF15E6127035FAB7BF05160E7&ID=",
+ "pageLoadPingUrl": "https:\/\/www.bingapis.com\/api\/ping\/pageload?IG=29764E2DA01447B98852A761CB00C5EE&CID=2119A72CF15E6127035FAB7BF05160E7&Type=Event.CPT&DATA=0"},
"webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=osha+guidelines",
- "webSearchUrlPingSuffix": "DevEx,5305.1", "totalEstimatedMatches": 387000000,
+ "webSearchUrlPingSuffix": "DevEx,5239.1", "totalEstimatedMatches": 380000000,
"value": [{"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0", "name":
- "Search Regulations | Federal Motor Carrier Safety ...", "url": "https:\/\/www.fmcsa.dot.gov\/regulations\/title49\/b\/5\/3",
- "urlPingSuffix": "DevEx,5066.1", "displayUrl": "https:\/\/www.fmcsa.dot.gov\/regulations\/title49\/b\/5\/3",
- "snippet": "49 CFR Parts 300-399 This section of the website provides the
- ability to find regulations information including regulations parts, content
- of sections, and interpretations for regulations sections.", "dateLastCrawled":
- "2018-06-23T18:13:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1",
- "name": "Asbestos Laws and Regulations | US EPA", "url": "https:\/\/www.epa.gov\/asbestos\/asbestos-laws-and-regulations",
- "urlPingSuffix": "DevEx,5079.1", "about": [{"name": "Asbestos"}], "displayUrl":
- "https:\/\/www.epa.gov\/asbestos\/asbestos-laws-and-regulations", "snippet":
- "This page provides a listing of the laws and regulations pertaining to asbestos
- implemented by the EPA and certain other federal agencies.", "dateLastCrawled":
- "2018-06-13T15:55:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
- "name": "OSHA Recordkeeping Requirements - Grainger Safety Record", "url":
- "https:\/\/safety.grainger.com\/people\/osha-recordkeeping-requirements",
- "urlPingSuffix": "DevEx,5096.1", "displayUrl": "https:\/\/safety.grainger.com\/people\/osha-recordkeeping-requirements",
- "snippet": "Understand how OSHA''s extensive recordkeeping and reporting rules
- affect your business. The current rule includes updated forms and privacy
- standards.", "dateLastCrawled": "2018-06-19T18:28:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3",
+ "Training requiremenTs in OsHa sTandards and Training ...", "url": "http:\/\/www.worksafemt.com\/media\/Training_Requirements_in_OSHA_Standards.pdf",
+ "urlPingSuffix": "DevEx,5053.1", "displayUrl": "www.worksafemt.com\/media\/Training_Requirements_in_OSHA_Standards.pdf",
+ "snippet": "www.worksafemt.com Training requiremenTs in OsHa sTandards and
+ Training guidelines Below is a helpful spreadsheet for determining OSHA safety
+ training requirements.", "dateLastCrawled": "2018-08-20T10:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1", "name": "OSHA Requirements
+ - Welcome to NYC.gov", "url": "https:\/\/www1.nyc.gov\/site\/buildings\/safety\/osha-requirements.page",
+ "urlPingSuffix": "DevEx,5065.1", "displayUrl": "https:\/\/www1.nyc.gov\/site\/buildings\/safety\/osha-requirements.page",
+ "snippet": "OSHA Requirements . You have the right to a safe workplace. The
+ Occupational Safety and Health Act of 1970 (OSH Act) was passed to prevent
+ workers from being killed or seriously harmed at work.", "dateLastCrawled":
+ "2018-08-14T07:39:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.2",
"name": "OSHA and DOT Regulations - Safety.BLR.com", "url": "https:\/\/safety.blr.com\/workplace-safety-regulations\/",
- "urlPingSuffix": "DevEx,5111.1", "displayUrl": "https:\/\/safety.blr.com\/workplace-safety-regulations",
+ "urlPingSuffix": "DevEx,5078.1", "displayUrl": "https:\/\/safety.blr.com\/workplace-safety-regulations",
"snippet": "eCFR [Unknown Topic] administrative code from OSHA and DOT Federal
- Motor Carrier Safety and Hazardous Materials regs.", "dateLastCrawled": "2018-06-29T09:34:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Alaska
- Occupational Safety and Health (AKOSH), Alaska ...", "url": "http:\/\/www.labor.state.ak.us\/lss\/oshhome.htm",
- "urlPingSuffix": "DevEx,5126.1", "displayUrl": "www.labor.state.ak.us\/lss\/oshhome.htm",
- "snippet": "Department of Labor & Workforce Development Labor Standards and
- Safety Division Occupational Safety and Health. P.O. Box 111149 Juneau, AK
- 99811 Juneau Phone: (907) 465-4855", "dateLastCrawled": "2018-06-28T22:15:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "OSHA Requirements
- for Phlebotomists | Chron.com", "url": "http:\/\/work.chron.com\/osha-requirements-phlebotomists-16757.html",
- "urlPingSuffix": "DevEx,5143.1", "displayUrl": "work.chron.com\/osha-requirements-phlebotomists-16757.html",
- "snippet": "Cleanliness. One of OSHA''s primary requirements for phlebotomists
- is washing hands before and after working with patients, after removing personal
- protection equipment such as gloves, and anytime they are exposed to blood
- or anything else that may carry infection.", "dateLastCrawled": "2018-06-28T03:54:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6", "name": "OSHA &
- Workplace Safety - Wisconsin State Law Library", "url": "http:\/\/wilawlibrary.gov\/topics\/laborlaw\/osha.php",
- "urlPingSuffix": "DevEx,5158.1", "about": [{"name": "Occupational Safety and
- Health Administration"}, {"name": "Occupational Safety and Health Administration"}],
- "displayUrl": "wilawlibrary.gov\/topics\/laborlaw\/osha.php", "snippet": "Forms,
- guides, laws, and other information for OSHA and workplace safety.", "dateLastCrawled":
- "2018-06-26T13:33:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7",
- "name": "OSHA Standards for Bloodborne Pathogens", "url": "http:\/\/www.envcap.org\/rmw\/osha-bps.cfm",
- "urlPingSuffix": "DevEx,5174.1", "displayUrl": "www.envcap.org\/rmw\/osha-bps.cfm",
- "snippet": "OSHA Standards for Bloodborne Pathogens. In 1991, the Occupational
- Safety and Health Administration (OSHA) promulgated the Occupational Exposure
- to Bloodborne Pathogens Standard.", "dateLastCrawled": "2018-06-25T17:18:00.0000000Z"},
- {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "Professional
- Safety Management & OSHA Compliance Services", "url": "https:\/\/lancastersafety.com\/services\/",
- "urlPingSuffix": "DevEx,5191.1", "displayUrl": "https:\/\/lancastersafety.com\/services",
- "snippet": "Get 100% OSHA-compliant with our safety management services. We
- create safety programs, perform audits, & conduct onsite OSHA-required safety
- training.", "dateLastCrawled": "2018-06-25T15:42:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9",
+ Motor Carrier Safety and Hazardous Materials regs.", "dateLastCrawled": "2018-08-18T21:59:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.3", "name": "OSHA Regulations
+ and Bloodborne Pathogens - - RN.org®", "url": "http:\/\/www.rn.org\/courses\/coursematerial-171.pdf",
+ "urlPingSuffix": "DevEx,5090.1", "displayUrl": "www.rn.org\/courses\/coursematerial-171.pdf",
+ "snippet": "OSHA Regulations and Bloodborne Pathogens WWW.RN.ORG® Reviewed
+ May, 2016, Expires May, 2018 Provider Information and Specifics available
+ on our Website", "dateLastCrawled": "2018-08-18T15:37:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.4", "name": "Occupational
+ Safety & Health (CONN-OSHA) - State of ...", "url": "http:\/\/www.ctdol.state.ct.us\/osha\/osha.htm",
+ "urlPingSuffix": "DevEx,5101.1", "about": [{"name": "Occupational Safety and
+ Health Administration"}], "displayUrl": "www.ctdol.state.ct.us\/osha\/osha.htm",
+ "snippet": "For general information about CONN-OSHA laws and regulations,
+ please call: (860) 263-6900", "dateLastCrawled": "2018-08-21T13:40:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.5", "name": "OSHA Recordkeeping
+ Requirements - Grainger Safety Record", "url": "https:\/\/safety.grainger.com\/people\/osha-recordkeeping-requirements",
+ "urlPingSuffix": "DevEx,5115.1", "displayUrl": "https:\/\/safety.grainger.com\/people\/osha-recordkeeping-requirements",
+ "snippet": "Understand how OSHA''s extensive recordkeeping and reporting rules
+ affect your business. The current rule includes updated forms and privacy
+ standards.", "dateLastCrawled": "2018-08-20T14:31:00.0000000Z"}, {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.6",
"name": "Interim Guidance for Protecting Workers from Occupational ...", "url":
"https:\/\/www.cdc.gov\/niosh\/topics\/outdoor\/mosquito-borne\/pdfs\/osha-niosh_fs-3855_zika_virus_04-2016.pdf",
- "urlPingSuffix": "DevEx,5205.1", "displayUrl": "https:\/\/www.cdc.gov\/niosh\/topics\/outdoor\/mosquito-borne\/pdfs\/osha...",
+ "urlPingSuffix": "DevEx,5127.1", "displayUrl": "https:\/\/www.cdc.gov\/niosh\/topics\/outdoor\/mosquito-borne\/pdfs\/osha...",
"snippet": "Fact. Sheet. Interim Guidance for Protecting Workers from Occupational
Exposure to Zika Virus. The Occupational Safety and Health Administration
- (OSHA) and the National Institute", "dateLastCrawled": "2018-06-29T16:35:00.0000000Z"}]},
+ (OSHA) and the National Institute", "dateLastCrawled": "2018-08-04T21:33:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.7", "name": "School
+ Safety Regulations and Guidelines - Quick Tips #283 ...", "url": "https:\/\/www.grainger.com\/content\/qt-school-safety-regulations-guidelines-283",
+ "urlPingSuffix": "DevEx,5140.1", "displayUrl": "https:\/\/www.grainger.com\/content\/qt-school-safety-regulations...",
+ "snippet": "From labs to shops, schools are loaded with safety hazards. Learn
+ what you can do to protect students in Quick Tips #283: School Safety Regulations
+ and Guidelines.", "dateLastCrawled": "2018-08-21T15:57:00.0000000Z"}, {"id":
+ "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8", "name": "OSHA Requirements
+ for Phlebotomists | Chron.com", "url": "https:\/\/work.chron.com\/osha-requirements-phlebotomists-16757.html",
+ "urlPingSuffix": "DevEx,5152.1", "displayUrl": "https:\/\/work.chron.com\/osha-requirements-phlebotomists-16757.html",
+ "snippet": "Cleanliness. One of OSHA''s primary requirements for phlebotomists
+ is washing hands before and after working with patients, after removing personal
+ protection equipment such as gloves, and anytime they are exposed to blood
+ or anything else that may carry infection.", "dateLastCrawled": "2018-08-18T20:02:00.0000000Z"},
+ {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9", "name": "Occupational
+ Safety and Health Administration (OSHA ...", "url": "https:\/\/www.inc.com\/encyclopedia\/occupational-safety-and-health-administration-osha.html",
+ "urlPingSuffix": "DevEx,5165.1", "about": [{"name": "Occupational Safety and
+ Health Administration"}, {"name": "Occupational Safety and Health Administration"}],
+ "displayUrl": "https:\/\/www.inc.com\/encyclopedia\/occupational-safety-and-health...",
+ "snippet": "The Occupational Safety and Health Administration (OSHA) was established
+ by the Williams-Steiger Occupational Safety and Health Act (OSH Act) of 1970,
+ which took effect in 1971.", "dateLastCrawled": "2018-08-19T07:36:00.0000000Z"}]},
"rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
0, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.0"}}, {"answerType":
"WebPages", "resultIndex": 1, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.1"}},
@@ -141,5 +141,5 @@ http_interactions:
{"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.8"}},
{"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/www.bingapis.com\/api\/v6\/#WebPages.9"}}]}}}'
http_version:
- recorded_at: Tue, 03 Jul 2018 19:25:44 GMT
+ recorded_at: Sun, 26 Aug 2018 23:58:50 GMT
recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_image_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml b/spec/vcr_cassettes/bing_v7_image_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
new file mode 100644
index 0000000000..4722892fa2
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_image_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
@@ -0,0 +1,47 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=20&mkt=en-US&offset=0&q&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - b1rd1sth3p4ssw0rd
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 401
+ message: Access Denied
+ headers:
+ Content-Length:
+ - '143'
+ Content-Type:
+ - application/json
+ Apim-Request-Id:
+ - d2fff2b8-d1db-4e2b-a9b1-d93b2186e112
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Www-Authenticate:
+ - AzureApiManagementKey realm="https://api.cognitive.microsoft.com/bing/v7.0/images",name="Ocp-Apim-Subscription-Key",type="header"
+ Date:
+ - Fri, 31 Aug 2018 21:46:12 GMT
+ body:
+ encoding: UTF-8
+ string: '{ "statusCode": 401, "message": "Access denied due to invalid subscription
+ key. Make sure to provide a valid key for an active subscription." }'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:46:12 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_image_search/behaves_like_an_image_search_execute_query.yml b/spec/vcr_cassettes/bing_v7_image_search/behaves_like_an_image_search_execute_query.yml
new file mode 100644
index 0000000000..d49aa30723
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_image_search/behaves_like_an_image_search_execute_query.yml
@@ -0,0 +1,1005 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=10&mkt=en-US&offset=20&q=agncy%20(site:nasa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '70616'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 4FFFB0BBFE184147BB04640B2527B784
+ X-Msedge-Clientid:
+ - 2FDA196E00AC6100214A153201C06011
+ X-Msapi-Userstate:
+ - ad9e
+ X-Search-Responseinfo:
+ - InternalResponseTime=235,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: 4FFFB0BBFE184147BB04640B2527B784 Ref B: SN1EDGE1013 Ref C: 2018-08-31T21:12:04Z'
+ Apim-Request-Id:
+ - 3847ae19-3380-4ede-b4da-c180469dbbe4
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 21:12:03 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"_type": "ResponseInstrumentation"},
+ "readLink": "images\/search?q=agncy (site:nasa.gov)", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=agncy
+ (site:nasa.gov)&FORM=OIIARP", "totalEstimatedMatches": 109, "nextOffset":
+ 30, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=387E69631812AEA5817C068D0DC97657B027177D&simid=608043431770915070",
+ "name": "International spacecraft carrying Aquarius instrument ends ...",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.K-8cdwSCCsBw-ebH6ynF6gHaFM&pid=Api",
+ "datePublished": "2018-07-08T07:33:00.0000000Z", "contentUrl": "https:\/\/climate.nasa.gov\/system\/news_items\/main_images\/2298_aquariusend_768_60.jpg",
+ "hostPageUrl": "https:\/\/climate.nasa.gov\/news\/2298\/international-spacecraft-carrying-aquarius-instrument-ends-operations\/",
+ "contentSize": "126854 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/climate.nasa.gov\/news\/2298\/international-spacecraft...", "width":
+ 768, "height": 539, "thumbnail": {"width": 474, "height": 332}, "imageInsightsToken":
+ "ccid_K+8cdwSC*mid_387E69631812AEA5817C068D0DC97657B027177D*simid_608043431770915070*thid_OIP.K-8cdwSCCsBw-ebH6ynF6gHaFM",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Aquarius NASA Spacecraft", "displayText": "Aquarius NASA Spacecraft", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Aquarius+NASA+Spacecraft&id=387E69631812AEA5817C068D0DC97657B027177D&FORM=IDBQDM"},
+ "pagesIncludingCount": 56, "availableSizesCount": 33}, "imageId": "387E69631812AEA5817C068D0DC97657B027177D",
+ "accentColor": "A57526"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=B9B7A61DD7BE33240BA91EFCEB3B68FB51411D97&simid=607997943797056366",
+ "name": "NASA - Marshall Star, September 26, 2012 Edition", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.Quy6-h16LlihkIqXb1Jf4AHaFj&pid=Api",
+ "datePublished": "2017-05-29T08:38:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/centers\/marshall\/images\/content\/672245main_SLS_Architecture_8x10_20120720_3000x2250.jpg",
+ "hostPageUrl": "http:\/\/www.nasa.gov\/centers\/marshall\/about\/star\/star120926.html",
+ "contentSize": "1454647 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.nasa.gov\/centers\/marshall\/about\/star\/star120926.html", "width":
+ 3000, "height": 2250, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_Quy6+h16*mid_B9B7A61DD7BE33240BA91EFCEB3B68FB51411D97*simid_607997943797056366*thid_OIP.Quy6-h16LlihkIqXb1Jf4AHaFj",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Space Launch System", "displayText": "Space Launch System", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Space+Launch+System&id=B9B7A61DD7BE33240BA91EFCEB3B68FB51411D97&FORM=IDBQDM"},
+ "pagesIncludingCount": 88, "availableSizesCount": 31}, "imageId": "B9B7A61DD7BE33240BA91EFCEB3B68FB51411D97",
+ "accentColor": "012EC1"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=80190B42DE4F0913E7E96EFB618D9FADA858293E&simid=608003011844112726",
+ "name": "News | NASA Television to Provide Coverage of European ...", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.QscDLPMxVyr0zOdSaTJ-3gHaEK&pid=Api",
+ "datePublished": "2014-11-07T19:27:00.0000000Z", "contentUrl": "http:\/\/www.jpl.nasa.gov\/images\/rosetta\/20141107\/rosetta20141107-16.jpg",
+ "hostPageUrl": "http:\/\/www.jpl.nasa.gov\/news\/news.php?feature=4367", "contentSize":
+ "284032 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "www.jpl.nasa.gov\/news\/news.php?feature=4367",
+ "width": 1936, "height": 1090, "thumbnail": {"width": 474, "height": 266},
+ "imageInsightsToken": "ccid_QscDLPMx*mid_80190B42DE4F0913E7E96EFB618D9FADA858293E*simid_608003011844112726*thid_OIP.QscDLPMxVyr0zOdSaTJ-3gHaEK",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Probe Landing On Comet", "displayText": "Probe Landing On Comet", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Probe+Landing+On+Comet&id=80190B42DE4F0913E7E96EFB618D9FADA858293E&FORM=IDBQDM"},
+ "pagesIncludingCount": 31, "availableSizesCount": 20}, "imageId": "80190B42DE4F0913E7E96EFB618D9FADA858293E",
+ "accentColor": "726847"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=36EE187D8087C1D1EB070C57DCFBFE2BF59A1B06&simid=608003230885743399",
+ "name": "News | Herschel Discovers Some of the Youngest Stars Ever Seen",
+ "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.gykgtrpbmQOQV_j-8c4TSgHaED&pid=Api",
+ "datePublished": "2018-02-01T18:25:00.0000000Z", "contentUrl": "https:\/\/www.jpl.nasa.gov\/images\/herschel\/20130319\/pia16839-640.jpg",
+ "hostPageUrl": "https:\/\/www.jpl.nasa.gov\/news\/news.php?release=2013-102",
+ "contentSize": "34343 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.jpl.nasa.gov\/news\/news.php?release=2013-102", "width": 640,
+ "height": 350, "thumbnail": {"width": 474, "height": 259}, "imageInsightsToken":
+ "ccid_gykgtrpb*mid_36EE187D8087C1D1EB070C57DCFBFE2BF59A1B06*simid_608003230885743399*thid_OIP.gykgtrpbmQOQV!_j-8c4TSgHaED",
+ "insightsMetadata": {"bestRepresentativeQuery": {"text": "Herschel Space Observatory
+ Discoveries", "displayText": "Herschel Space Observatory Discoveries", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Herschel+Space+Observatory+Discoveries&id=36EE187D8087C1D1EB070C57DCFBFE2BF59A1B06&FORM=IDBQDM"},
+ "pagesIncludingCount": 9, "availableSizesCount": 4}, "imageId": "36EE187D8087C1D1EB070C57DCFBFE2BF59A1B06",
+ "accentColor": "04BBC7"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=F6EB08FE082C3C0ABF7C9C7331528367F3D08632&simid=607994799876866070",
+ "name": "The German Space Agency Is a Vital NASA Partner – Former ...", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.hijwxXA-7sDtUjvl47HaRQHaE8&pid=Api",
+ "datePublished": "2014-05-20T12:00:00.0000000Z", "contentUrl": "https:\/\/blogs.nasa.gov\/bolden\/wp-content\/uploads\/sites\/195\/2014\/05\/Bolden-Merkel.jpg",
+ "hostPageUrl": "https:\/\/blogs.nasa.gov\/bolden\/2014\/05\/20\/the-german-space-agency-is-a-vital-nasa-partner\/",
+ "contentSize": "88205 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/blogs.nasa.gov\/bolden\/2014\/05\/20\/the-german-space-agency-is...",
+ "width": 625, "height": 417, "thumbnail": {"width": 474, "height": 316}, "imageInsightsToken":
+ "ccid_hijwxXA+*mid_F6EB08FE082C3C0ABF7C9C7331528367F3D08632*simid_607994799876866070*thid_OIP.hijwxXA-7sDtUjvl47HaRQHaE8",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "European Picture NASA Space Module", "displayText": "European Picture NASA
+ Space Module", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=European+Picture+NASA+Space+Module&id=F6EB08FE082C3C0ABF7C9C7331528367F3D08632&FORM=IDBQDM"},
+ "pagesIncludingCount": 7, "availableSizesCount": 4}, "imageId": "F6EB08FE082C3C0ABF7C9C7331528367F3D08632",
+ "accentColor": "41508A"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=861FB5496FF061277EED61DD376C8FFA2DC5471E&simid=608000353263356329",
+ "name": "Space Images | Clumps of Cold Stuff Across the Sky", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.kHe2ligYCAk4felsSgn3TQHaDx&pid=Api",
+ "datePublished": "2018-06-04T22:25:00.0000000Z", "contentUrl": "http:\/\/www.jpl.nasa.gov\/spaceimages\/images\/largesize\/PIA13779_hires.jpg",
+ "hostPageUrl": "http:\/\/www.jpl.nasa.gov\/spaceimages\/details.php?id=PIA13779",
+ "contentSize": "189697 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.jpl.nasa.gov\/spaceimages\/details.php?id=PIA13779", "width": 2012, "height":
+ 1024, "thumbnail": {"width": 474, "height": 241}, "imageInsightsToken": "ccid_kHe2ligY*mid_861FB5496FF061277EED61DD376C8FFA2DC5471E*simid_608000353263356329*thid_OIP.kHe2ligYCAk4felsSgn3TQHaDx",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Planck Galaxy Milky Way", "displayText": "Planck Galaxy Milky Way", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Planck+Galaxy+Milky+Way&id=861FB5496FF061277EED61DD376C8FFA2DC5471E&FORM=IDBQDM"},
+ "pagesIncludingCount": 26, "availableSizesCount": 20}, "imageId": "861FB5496FF061277EED61DD376C8FFA2DC5471E",
+ "accentColor": "0CAEBF"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=7939E51B8FC34F0BDACB2AC0DE3BEAF5E3AB5D87&simid=607989529953439375",
+ "name": "SVS: The Polar Jet Stream Over Asia, 2010", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.qs4VFydw4tareOgShhcmagAAAA&pid=Api",
+ "datePublished": "2018-06-30T23:20:00.0000000Z", "contentUrl": "https:\/\/svs.gsfc.nasa.gov\/vis\/a010000\/a011900\/a011906\/WC_Aeolus-1920-MASTER_iPad_1920x0180_searchweb.png",
+ "hostPageUrl": "https:\/\/svs.gsfc.nasa.gov\/4148", "contentSize": "69856
+ B", "encodingFormat": "png", "hostPageDisplayUrl": "https:\/\/svs.gsfc.nasa.gov\/4148",
+ "width": 320, "height": 180, "thumbnail": {"width": 320, "height": 180}, "imageInsightsToken":
+ "ccid_qs4VFydw*mid_7939E51B8FC34F0BDACB2AC0DE3BEAF5E3AB5D87*simid_607989529953439375*thid_OIP.qs4VFydw4tareOgShhcmagAAAA",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 5, "availableSizesCount":
+ 2}, "imageId": "7939E51B8FC34F0BDACB2AC0DE3BEAF5E3AB5D87", "accentColor":
+ "1D4964"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=684444DEFD0E6E0910881D307C93C8912AD59EF6&simid=60802417035992",
+ "name": "Measuring Earth’s Magnetism : Image of the Day", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.n9VLx6ZvZsm261TMfHqoRgHaF7&pid=Api",
+ "datePublished": "2017-01-28T01:08:00.0000000Z", "contentUrl": "http:\/\/eoimages.gsfc.nasa.gov\/images\/imagerecords\/84000\/84266\/magneticfieldchange_swa_201401-06_lrg.jpg",
+ "hostPageUrl": "http:\/\/earthobservatory.nasa.gov\/IOTD\/view.php?id=84266",
+ "contentSize": "2770723 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "earthobservatory.nasa.gov\/IOTD\/view.php?id=84266", "width": 6000, "height":
+ 4800, "thumbnail": {"width": 474, "height": 379}, "imageInsightsToken": "ccid_n9VLx6Zv*mid_684444DEFD0E6E0910881D307C93C8912AD59EF6*simid_60802417035992*thid_OIP.n9VLx6ZvZsm261TMfHqoRgHaF7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Earth''s Magnetic Field", "displayText": "Earth''s Magnetic Field", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Earth%27s+Magnetic+Field&id=684444DEFD0E6E0910881D307C93C8912AD59EF6&FORM=IDBQDM"},
+ "pagesIncludingCount": 78, "availableSizesCount": 41}, "imageId": "684444DEFD0E6E0910881D307C93C8912AD59EF6",
+ "accentColor": "C70428"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=6BC5B6EE4DD13E70579259149D685570928AF492&simid=608031474584716921",
+ "name": "JSC Features - Unleash your inner innovator Nov. 1 to 2 ...", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.RzRBiecJBBbSAL6heIdxZwHaEe&pid=Api",
+ "datePublished": "2018-07-15T15:10:00.0000000Z", "contentUrl": "http:\/\/jscfeatures.jsc.nasa.gov\/images\/imagefull-1851.png",
+ "hostPageUrl": "http:\/\/jscfeatures.jsc.nasa.gov\/pages.ashx\/534\/Unleash%20your%20inner%20innovator%20Nov%201%20to%202",
+ "contentSize": "136805 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "jscfeatures.jsc.nasa.gov\/pages.ashx\/534\/Unleash your inner...", "width":
+ 980, "height": 593, "thumbnail": {"width": 474, "height": 286}, "imageInsightsToken":
+ "ccid_RzRBiecJ*mid_6BC5B6EE4DD13E70579259149D685570928AF492*simid_608031474584716921*thid_OIP.RzRBiecJBBbSAL6heIdxZwHaEe",
+ "insightsMetadata": {"pagesIncludingCount": 2, "availableSizesCount": 1},
+ "imageId": "6BC5B6EE4DD13E70579259149D685570928AF492", "accentColor": "C89103"},
+ {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=agncy+(site%3anasa.gov)&id=ADC953F0F4D884C4680414BDE741BC75DED8DC46&simid=607988765448080270",
+ "name": "NASA Administrator and Associate Administrator with ...", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.mFo4o3MPGBeddNvCd272sAHaFj&pid=Api",
+ "datePublished": "2018-07-07T23:41:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/sites\/default\/files\/styles\/800x600_autoletterbox\/public\/20140110_nasa_brazil_0011_0.jpg?itok=JuVQFRy4",
+ "hostPageUrl": "http:\/\/www.nasa.gov\/content\/nasa-administrator-and-associate-administrator-with-brazilian-space-agency-president\/",
+ "contentSize": "569144 B", "encodingFormat": "png", "hostPageDisplayUrl":
+ "www.nasa.gov\/content\/nasa-administrator-and-associate-administrator...",
+ "width": 800, "height": 600, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken":
+ "ccid_mFo4o3MP*mid_ADC953F0F4D884C4680414BDE741BC75DED8DC46*simid_607988765448080270*thid_OIP.mFo4o3MPGBeddNvCd272sAHaFj",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "President of Brazilian Space Agency", "displayText": "President of Brazilian
+ Space Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=President+of+Brazilian+Space+Agency&id=ADC953F0F4D884C4680414BDE741BC75DED8DC46&FORM=IDBQDM"},
+ "pagesIncludingCount": 1, "availableSizesCount": 1}, "imageId": "ADC953F0F4D884C4680414BDE741BC75DED8DC46",
+ "accentColor": "425089"}], "queryExpansions": [{"text": "Travel Agency", "displayText":
+ "Travel", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Travel+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Travel%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Travel+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Central Agency", "displayText": "Central", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Central+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Central%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Central+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Central%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Central+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environmental Protection Agency", "displayText": "Environmental
+ Protection", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Environmental+Protection+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environmental+Protection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Environmental+Protection+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environmental+Protection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Environmental+Protection+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Arms", "displayText": "Arms", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Arms&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Arms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Arms&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Arms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Agency+Arms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Defense Intelligence Agency", "displayText": "Defense Intelligence",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Defense+Intelligence+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Intelligence%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Defense+Intelligence+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Intelligence%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Defense+Intelligence+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Collection Agency", "displayText": "Collection", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Collection+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Collection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Collection+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Collection%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Collection+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Digital Agency", "displayText": "Digital", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Digital+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Digital%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Digital+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Digital%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Digital+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Advertising Agency", "displayText": "Advertising", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Advertising+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Advertising%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Advertising+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Advertising%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Advertising+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Creative Agency", "displayText": "Creative", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Creative+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Creative%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Creative+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Creative%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Creative+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "European Space Agency", "displayText": "European Space", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=European+Space+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22European+Space%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=European+Space+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22European+Space%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=European+Space+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency D3", "displayText": "D3", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+D3&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22D3%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+D3&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22D3%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+D3&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Education Agency", "displayText": "Education", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Education+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Education%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Education+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Education%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Education+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Job Agency", "displayText": "Job", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Job+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Job%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Job+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Job%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Job+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Detective Agency", "displayText": "Detective", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Detective+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Detective%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Detective+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Detective%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Detective+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Police Agency", "displayText": "Police", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Police+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Police%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Police+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Police%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Police+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Man", "displayText": "Man", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Man&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Man%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Man&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Man%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Man&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "NBA Free Agency", "displayText": "NBA Free", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=NBA+Free+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NBA+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=NBA+Free+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NBA+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=NBA+Free+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Defense Logistics Agency", "displayText": "Defense Logistics", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Defense+Logistics+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Logistics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Defense+Logistics+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Defense+Logistics%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Defense+Logistics+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Geospatial Agency", "displayText": "National Geospatial",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=National+Geospatial+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Geospatial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=National+Geospatial+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22National+Geospatial%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=National+Geospatial+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Railway Express Agency", "displayText": "Railway Express", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Railway+Express+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Railway+Express%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Railway+Express+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Railway+Express%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Railway+Express+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Army Security Agency", "displayText": "Army Security", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Army+Security+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Army+Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Army+Security+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Army+Security%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Army+Security+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fun Agency", "displayText": "Fun", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Fun+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Fun+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Fun+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Modeling Agency", "displayText": "Modeling", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Modeling+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Modeling%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Modeling+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Modeling%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Modeling+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Adoption Agency", "displayText": "Adoption", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Adoption+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Adoption%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Adoption+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Adoption%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Adoption+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Design Agency", "displayText": "Design", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Design+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Design%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Design+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Design%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Design+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Services", "displayText": "Services", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Services&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Services%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Services&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Services%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+Services&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Fashion Land Agency", "displayText": "Fashion Land", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Fashion+Land+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fashion+Land%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Fashion+Land+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Fashion+Land%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Fashion+Land+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Missile Defense Agency", "displayText": "Missile Defense", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Missile+Defense+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Missile+Defense%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Missile+Defense+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Missile+Defense%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Missile+Defense+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "NFL Free Agency", "displayText": "NFL Free", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=NFL+Free+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NFL+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=NFL+Free+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NFL+Free%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=NFL+Free+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environment Agency", "displayText": "Environment", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Environment+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Environment+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Environment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Environment+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Recruitment Agency", "displayText": "Recruitment", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Recruitment+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Recruitment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Recruitment+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Recruitment%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Recruitment+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Government Agency", "displayText": "Government", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Government+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Government%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Government+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Government%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Government+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Icon", "displayText": "Icon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Icon&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Icon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Icon&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Icon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Icon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "SOG Agency", "displayText": "SOG", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=SOG+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22SOG%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=SOG+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22SOG%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=SOG+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Office", "displayText": "Office", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Office&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Office&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Office%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Office&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Media Agency", "displayText": "Media", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Media+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Media%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Media+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Media%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Media+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Law", "displayText": "Law", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Law&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Law%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Law&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Law%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Law&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Nursing Agency", "displayText": "Nursing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Nursing+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nursing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Nursing+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Nursing%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Nursing+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Sign", "displayText": "Sign", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Sign&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sign%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Sign&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sign%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Sign&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Personal Agency", "displayText": "Personal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Personal+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Personal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Personal+Agency&tq=%7b%22pq%22%3a%22agncy+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22pv%22%3a%22agncy+(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Personal%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Personal+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "agncy (site:nasa.gov)", "suggestions": []}],
+ "relatedSearches": [{"text": "Agency Icon", "displayText": "Agency Icon",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Icon&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Icon",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Icon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Building", "displayText": "Agency Building", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Building&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Building",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Building&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "LDS Agency", "displayText": "LDS Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=LDS+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=LDS+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=LDS+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Arms", "displayText": "Agency Arms", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Arms&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Arms",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Agency+Arms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Travel Agency", "displayText": "Travel Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Travel+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Travel+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Travel+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Moral Agency", "displayText": "Moral Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Moral+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Moral+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Moral+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Advertising Agency", "displayText": "Advertising Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Advertising+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Advertising+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Advertising+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Creative Agency", "displayText": "Creative Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Creative+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Creative+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Creative+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Clip Art", "displayText": "Agency Clip Art", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Clip+Art&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Clip+Art",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Agency+Clip+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Insurance Agency", "displayText": "Insurance Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Insurance+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Insurance+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Insurance+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Office", "displayText": "Agency Office", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Office&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Office",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Agency+Office&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Collection Agency", "displayText": "Collection Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Collection+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Collection+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Collection+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency for Health Care Administration", "displayText": "Agency for
+ Health Care Administration", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+for+Health+Care+Administration&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+for+Health+Care+Administration",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+for+Health+Care+Administration&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Federal Agencies", "displayText": "Federal Agencies", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Federal+Agencies&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Federal+Agencies",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Federal+Agencies&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Social Agency", "displayText": "Social Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Social+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Social+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Social+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Employment Agency", "displayText": "Employment Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Employment+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Employment+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Employment+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Manpower Jobs Agency", "displayText": "Manpower Jobs Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Manpower+Jobs+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Manpower+Jobs+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Manpower+Jobs+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Staffing Agency", "displayText": "Staffing Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Staffing+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Staffing+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Staffing+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Theory", "displayText": "Agency Theory", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Theory&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Theory",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Theory&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Relationship", "displayText": "Agency Relationship", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Relationship&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Relationship",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+Relationship&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Black and White Agency", "displayText": "Black and White Agency",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Black+and+White+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Black+and+White+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Black+and+White+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Express Agency", "displayText": "Express Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Express+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Express+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Express+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Agreement", "displayText": "Agency Agreement", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Agreement&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Agreement",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+Agreement&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Start Agency Onboarding Process", "displayText": "Start Agency Onboarding
+ Process", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Start+Agency+Onboarding+Process&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Start+Agency+Onboarding+Process",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Start+Agency+Onboarding+Process&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Defend Their Faith", "displayText": "Agency Defend Their
+ Faith", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+Defend+Their+Faith&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Defend+Their+Faith",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+Defend+Their+Faith&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Supportive Home Care Agency", "displayText": "Supportive Home Care
+ Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Supportive+Home+Care+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Supportive+Home+Care+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Supportive+Home+Care+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency or Independent Contractor", "displayText": "Agency or Independent
+ Contractor", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+or+Independent+Contractor&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+or+Independent+Contractor",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+or+Independent+Contractor&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Outline of the Word Agency", "displayText": "Outline of the Word
+ Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Outline+of+the+Word+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Outline+of+the+Word+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Outline+of+the+Word+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Truancy Agency", "displayText": "Truancy Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Truancy+Agency&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Truancy+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Truancy+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Security Agency", "displayText": "National Security Agency",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=National+Security+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=National+Security+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=National+Security+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Central Intelligence Agency", "displayText": "Central Intelligence
+ Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Central+Intelligence+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Central+Intelligence+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Central+Intelligence+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency to Agency Email", "displayText": "Agency to Agency Email",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agency+to+Agency+Email&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+to+Agency+Email",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agency+to+Agency+Email&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "The Agency About", "displayText": "The Agency About", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=The+Agency+About&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=The+Agency+About",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=The+Agency+About&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environmental Protection Agency Logo", "displayText": "Environmental
+ Protection Agency Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Environmental+Protection+Agency+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Environmental+Protection+Agency+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Environmental+Protection+Agency+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Geo Agency", "displayText": "Geo Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Geo+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Geo+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Geo+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Images Modeling Agency Photography", "displayText": "Images Modeling
+ Agency Photography", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Images+Modeling+Agency+Photography&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Images+Modeling+Agency+Photography",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Images+Modeling+Agency+Photography&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "European Space Agency Logo", "displayText": "European Space Agency
+ Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=European+Space+Agency+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=European+Space+Agency+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=European+Space+Agency+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agency Emblems", "displayText": "Agency Emblems", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Agency+Emblems&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agency+Emblems",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Agency+Emblems&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Travel Agency Logo Design", "displayText": "Travel Agency Logo Design",
+ "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Travel+Agency+Logo+Design&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Travel+Agency+Logo+Design",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Travel+Agency+Logo+Design&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environment Agency", "displayText": "Environment Agency", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Environment+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Environment+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Environment+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Government Protection Agency", "displayText": "Government Protection
+ Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Government+Protection+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Government+Protection+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Government+Protection+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Environmental Protection Agency Seal", "displayText": "Environmental
+ Protection Agency Seal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Environmental+Protection+Agency+Seal&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Environmental+Protection+Agency+Seal",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Environmental+Protection+Agency+Seal&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Security Agency Logo", "displayText": "National Security
+ Agency Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=National+Security+Agency+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=National+Security+Agency+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=National+Security+Agency+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Ariza Talent and Modeling Agency", "displayText": "Ariza Talent
+ and Modeling Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Ariza+Talent+and+Modeling+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Ariza+Talent+and+Modeling+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Ariza+Talent+and+Modeling+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "National Geospatial-Intelligence Agency", "displayText": "National
+ Geospatial-Intelligence Agency", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=National+Geospatial-Intelligence+Agency&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=National+Geospatial-Intelligence+Agency",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=National+Geospatial-Intelligence+Agency&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Overseas Recruitment Agency Business Introduction Letter to Principal",
+ "displayText": "Overseas Recruitment Agency Business Introduction Letter to
+ Principal", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Overseas+Recruitment+Agency+Business+Introduction+Letter+to+Principal&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Overseas+Recruitment+Agency+Business+Introduction+Letter+to+Principal",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Overseas+Recruitment+Agency+Business+Introduction+Letter+to+Principal&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Agent", "displayText": "Agent", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Agent&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Agent",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Agent&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:12:04 GMT
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/images/search?count=10&mkt=en-US&offset=20&q=mars%20(site:nasa.gov)&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - no-cache, no-store, must-revalidate
+ Pragma:
+ - no-cache
+ Content-Length:
+ - '86010'
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - "-1"
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 1221F21C62EB4807BBF0871D44267A03
+ X-Msedge-Clientid:
+ - 110FC27B6FA863DB0660CE276EC462D5
+ X-Msapi-Userstate:
+ - bccc
+ X-Search-Responseinfo:
+ - InternalResponseTime=260,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: 1221F21C62EB4807BBF0871D44267A03 Ref B: SN1EDGE0320 Ref C: 2018-08-31T22:24:02Z'
+ Apim-Request-Id:
+ - '018c188f-86e9-4d50-b35c-84e8fafaeb30'
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 22:24:02 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "Images", "instrumentation": {"_type": "ResponseInstrumentation"},
+ "readLink": "images\/search?q=mars (site:nasa.gov)", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=mars
+ (site:nasa.gov)&FORM=OIIARP", "totalEstimatedMatches": 133, "nextOffset":
+ 30, "value": [{"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=14E18188347A637C0887720EB38C3EDB8A2F220E&simid=607987330946108542",
+ "name": "SVS: Mars Rotate (True Color)", "thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?id=OIP.Pf3Iv5cMT9enZa_iCuf60AHaFj&pid=Api",
+ "datePublished": "2018-07-22T00:00:00.0000000Z", "contentUrl": "http:\/\/svs.gsfc.nasa.gov\/vis\/a000000\/a000600\/a000659\/mars_tc_globe3.jpg",
+ "hostPageUrl": "http:\/\/svs.gsfc.nasa.gov\/cgi-bin\/details.cgi?aid=659",
+ "contentSize": "347038 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "svs.gsfc.nasa.gov\/cgi-bin\/details.cgi?aid=659", "width": 2560, "height":
+ 1920, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken": "ccid_Pf3Iv5cM*mid_14E18188347A637C0887720EB38C3EDB8A2F220E*simid_607987330946108542*thid_OIP.Pf3Iv5cMT9enZa!_iCuf60AHaFj",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "True Color Planet Mars", "displayText": "True Color Planet Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=True+Color+Planet+Mars&id=14E18188347A637C0887720EB38C3EDB8A2F220E&FORM=IDBQDM"},
+ "pagesIncludingCount": 6, "availableSizesCount": 1}, "imageId": "14E18188347A637C0887720EB38C3EDB8A2F220E",
+ "accentColor": "C87003"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=55B7CDCB4411DDF01E44D5C5FC2EC4C82899514D&simid=608032458149921655",
+ "name": "Approach - Mars Science Laboratory", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.WXRwnNE_A_HwEPTbkC2R8AHaEK&pid=Api",
+ "datePublished": "2017-09-09T13:53:00.0000000Z", "contentUrl": "http:\/\/mars.nasa.gov\/msl\/images\/PIA14832.jpg",
+ "hostPageUrl": "http:\/\/mars.nasa.gov\/msl\/mission\/timeline\/approach\/",
+ "contentSize": "486628 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "mars.nasa.gov\/msl\/mission\/timeline\/approach", "width": 2500, "height":
+ 1406, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken": "ccid_WXRwnNE\/*mid_55B7CDCB4411DDF01E44D5C5FC2EC4C82899514D*simid_608032458149921655*thid_OIP.WXRwnNE!_A!_HwEPTbkC2R8AHaEK",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Mars Rover Curiosity", "displayText": "Mars Rover Curiosity", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Rover+Curiosity&id=55B7CDCB4411DDF01E44D5C5FC2EC4C82899514D&FORM=IDBQDM"},
+ "pagesIncludingCount": 184, "availableSizesCount": 82}, "imageId": "55B7CDCB4411DDF01E44D5C5FC2EC4C82899514D",
+ "accentColor": "C76704"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=3B10E51DD114042CD36FE6AA7A6E3AFFF8B67D3D&simid=607998858614607435",
+ "name": "APOD: 2015 November 22 - Phobos: Doomed Moon of Mars", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.k2Zez3YiUib1OauVzYIt9gHaHP&pid=Api",
+ "datePublished": "2018-07-16T01:26:00.0000000Z", "contentUrl": "http:\/\/apod.nasa.gov\/apod\/image\/1511\/Phobos_MRO_3374.jpg",
+ "hostPageUrl": "http:\/\/apod.nasa.gov\/apod\/ap151122.html", "contentSize":
+ "1153502 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "apod.nasa.gov\/apod\/ap151122.html",
+ "width": 3374, "height": 3300, "thumbnail": {"width": 474, "height": 463},
+ "imageInsightsToken": "ccid_k2Zez3Yi*mid_3B10E51DD114042CD36FE6AA7A6E3AFFF8B67D3D*simid_607998858614607435*thid_OIP.k2Zez3YiUib1OauVzYIt9gHaHP",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Mars'' Moons Surface", "displayText": "Mars'' Moons Surface", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars%27+Moons+Surface&id=3B10E51DD114042CD36FE6AA7A6E3AFFF8B67D3D&FORM=IDBQDM"},
+ "pagesIncludingCount": 198, "availableSizesCount": 99}, "imageId": "3B10E51DD114042CD36FE6AA7A6E3AFFF8B67D3D",
+ "accentColor": "080605"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=2E2471F0BBD463E38105C1855D54DB23580C2B8C&simid=608016571099516091",
+ "name": "NSSDCA Photo Gallery: Mars", "thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?id=OIP.blbStLqsGPTJRUq9mviFugHaES&pid=Api",
+ "datePublished": "2014-11-20T10:19:00.0000000Z", "contentUrl": "http:\/\/nssdc.gsfc.nasa.gov\/image\/planetary\/mars\/hst_mars_opp_9709b.jpg",
+ "hostPageUrl": "http:\/\/nssdc.gsfc.nasa.gov\/photo_gallery\/photogallery-mars.html",
+ "contentSize": "60023 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "nssdc.gsfc.nasa.gov\/photo_gallery\/photogallery-mars.html", "width": 1350,
+ "height": 782, "thumbnail": {"width": 474, "height": 274}, "imageInsightsToken":
+ "ccid_blbStLqs*mid_2E2471F0BBD463E38105C1855D54DB23580C2B8C*simid_608016571099516091*thid_OIP.blbStLqsGPTJRUq9mviFugHaES",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Solar System Planets Mars", "displayText": "Solar System Planets Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Solar+System+Planets+Mars&id=2E2471F0BBD463E38105C1855D54DB23580C2B8C&FORM=IDBQDM"},
+ "pagesIncludingCount": 35, "availableSizesCount": 22}, "imageId": "2E2471F0BBD463E38105C1855D54DB23580C2B8C",
+ "accentColor": "9C4B2F"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=C82F42911BFC1155A997734BCB0FDE67E33BB8AA&simid=608054774753525775",
+ "name": "Mars Exploration: Multimedia", "thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?id=OIP.TBLX1hpwdwOLlDXS73KTZAHaF7&pid=Api",
+ "datePublished": "2010-02-05T12:01:00.0000000Z", "contentUrl": "http:\/\/www.msss.com\/mars_images\/moc\/news2002\/globals\/hemis2_june01.jpg",
+ "hostPageUrl": "http:\/\/mars.jpl.nasa.gov\/gallery\/global\/index.html",
+ "contentSize": "360849 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "mars.jpl.nasa.gov\/gallery\/global\/index.html", "width": 1280, "height":
+ 1024, "thumbnail": {"width": 474, "height": 379}, "imageInsightsToken": "ccid_TBLX1hpw*mid_C82F42911BFC1155A997734BCB0FDE67E33BB8AA*simid_608054774753525775*thid_OIP.TBLX1hpwdwOLlDXS73KTZAHaF7",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Mars Global Surveyor", "displayText": "Mars Global Surveyor", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Global+Surveyor&id=C82F42911BFC1155A997734BCB0FDE67E33BB8AA&FORM=IDBQDM"},
+ "pagesIncludingCount": 68, "availableSizesCount": 32}, "imageId": "C82F42911BFC1155A997734BCB0FDE67E33BB8AA",
+ "accentColor": "976734"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=2FAAD8C2C36DA3BA289526171F5DFA16C6C28BBF&simid=607989259377705497",
+ "name": "Mars Rover \"Spirit\" Images", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.mJ_glt1ETRXdVkZz-7Ae3wHaFd&pid=Api",
+ "datePublished": "2018-07-16T13:22:00.0000000Z", "contentUrl": "http:\/\/nssdc.gsfc.nasa.gov\/planetary\/image\/mera_p2211.jpg",
+ "hostPageUrl": "http:\/\/nssdc.gsfc.nasa.gov\/planetary\/mars\/mars_exploration_rovers\/mera_images.html",
+ "contentSize": "2911681 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "nssdc.gsfc.nasa.gov\/planetary\/mars\/mars_exploration_rovers\/mera...",
+ "width": 3926, "height": 2892, "thumbnail": {"width": 474, "height": 349},
+ "imageInsightsToken": "ccid_mJ\/glt1E*mid_2FAAD8C2C36DA3BA289526171F5DFA16C6C28BBF*simid_607989259377705497*thid_OIP.mJ!_glt1ETRXdVkZz-7Ae3wHaFd",
+ "insightsMetadata": {"recipeSourcesCount": 0, "pagesIncludingCount": 16, "availableSizesCount":
+ 6}, "imageId": "2FAAD8C2C36DA3BA289526171F5DFA16C6C28BBF", "accentColor":
+ "AB6B20"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=14AADED4948E509A54DF25B0CEDF8C1CB1DD6922&simid=607999558680510848",
+ "name": "APOD: 2006 May 15 - Volcanic Bumpy Boulder on Mars", "thumbnailUrl":
+ "https:\/\/tse1.mm.bing.net\/th?id=OIP.CRUxPpmvD2vxO8BrzQAxEwHaHa&pid=Api",
+ "datePublished": "2018-07-19T03:53:00.0000000Z", "contentUrl": "http:\/\/apod.nasa.gov\/apod\/image\/0605\/bumpyboulder_spirit_big.jpg",
+ "hostPageUrl": "http:\/\/apod.nasa.gov\/apod\/ap060515.html", "contentSize":
+ "188693 B", "encodingFormat": "jpeg", "hostPageDisplayUrl": "apod.nasa.gov\/apod\/ap060515.html",
+ "width": 1022, "height": 1024, "thumbnail": {"width": 474, "height": 474},
+ "imageInsightsToken": "ccid_CRUxPpmv*mid_14AADED4948E509A54DF25B0CEDF8C1CB1DD6922*simid_607999558680510848*thid_OIP.CRUxPpmvD2vxO8BrzQAxEwHaHa",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Pictures From Mars Rover Surface", "displayText": "Pictures From Mars Rover
+ Surface", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pictures+From+Mars+Rover+Surface&id=14AADED4948E509A54DF25B0CEDF8C1CB1DD6922&FORM=IDBQDM"},
+ "pagesIncludingCount": 78, "availableSizesCount": 34}, "imageId": "14AADED4948E509A54DF25B0CEDF8C1CB1DD6922",
+ "accentColor": "946237"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=515EB4937B9703C8D36CE0445369C571C5E1561C&simid=608053761149832045",
+ "name": "News | NASA Seeks Industry Ideas for an Advanced Mars ...", "thumbnailUrl":
+ "https:\/\/tse2.mm.bing.net\/th?id=OIP.d8y7awCW1gOdbprqSWgOowHaEK&pid=Api",
+ "datePublished": "2018-07-28T23:59:00.0000000Z", "contentUrl": "https:\/\/www.jpl.nasa.gov\/images\/mars\/20160421\/PIA00407-16.jpg",
+ "hostPageUrl": "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=6427",
+ "contentSize": "155068 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "https:\/\/www.jpl.nasa.gov\/news\/news.php?feature=6427", "width": 1600,
+ "height": 900, "thumbnail": {"width": 474, "height": 266}, "imageInsightsToken":
+ "ccid_d8y7awCW*mid_515EB4937B9703C8D36CE0445369C571C5E1561C*simid_608053761149832045*thid_OIP.d8y7awCW1gOdbprqSWgOowHaEK",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Planet Mars NASA", "displayText": "Planet Mars NASA", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Planet+Mars+NASA&id=515EB4937B9703C8D36CE0445369C571C5E1561C&FORM=IDBQDM"},
+ "pagesIncludingCount": 206, "availableSizesCount": 94}, "imageId": "515EB4937B9703C8D36CE0445369C571C5E1561C",
+ "accentColor": "9F612C"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=2E2471F0BBD463E381050ED98DE07BC250069483&simid=608003462810962759",
+ "name": "NSSDCA Photo Gallery: Mars", "thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?id=OIP.R0Sv-60neTH9bOFXyKD3PwHaHm&pid=Api",
+ "datePublished": "2014-11-20T10:19:00.0000000Z", "contentUrl": "http:\/\/nssdc.gsfc.nasa.gov\/image\/planetary\/mars\/vikinglander1-1.jpg",
+ "hostPageUrl": "http:\/\/nssdc.gsfc.nasa.gov\/photo_gallery\/photogallery-mars.html",
+ "contentSize": "324081 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "nssdc.gsfc.nasa.gov\/photo_gallery\/photogallery-mars.html", "width": 1496,
+ "height": 1536, "thumbnail": {"width": 474, "height": 486}, "imageInsightsToken":
+ "ccid_R0Sv+60n*mid_2E2471F0BBD463E381050ED98DE07BC250069483*simid_608003462810962759*thid_OIP.R0Sv-60neTH9bOFXyKD3PwHaHm",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Mars Surface", "displayText": "Mars Surface", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Surface&id=2E2471F0BBD463E381050ED98DE07BC250069483&FORM=IDBQDM"},
+ "pagesIncludingCount": 112, "availableSizesCount": 45}, "imageId": "2E2471F0BBD463E381050ED98DE07BC250069483",
+ "accentColor": "A8A123"}, {"webSearchUrl": "https:\/\/www.bing.com\/images\/search?view=detailv2&FORM=OIIRPO&q=mars+(site%3anasa.gov)&id=F4CF56ABB247C11C36AEF0E22BD8E85F43F1C810&simid=608032990716694250",
+ "name": "NASA - One Year After Launch, Curiosity Rover Busy on Mars", "thumbnailUrl":
+ "https:\/\/tse3.mm.bing.net\/th?id=OIP.LO4KI5ND322R5fQQ-4uTDgHaFj&pid=Api",
+ "datePublished": "2012-11-26T12:00:00.0000000Z", "contentUrl": "http:\/\/www.nasa.gov\/centers\/jpl\/images\/content\/708553main_pia16453-43.jpg",
+ "hostPageUrl": "http:\/\/www.nasa.gov\/centers\/jpl\/news\/msl20121126.html",
+ "contentSize": "1057458 B", "encodingFormat": "jpeg", "hostPageDisplayUrl":
+ "www.nasa.gov\/centers\/jpl\/news\/msl20121126.html", "width": 2000, "height":
+ 1500, "thumbnail": {"width": 474, "height": 355}, "imageInsightsToken": "ccid_LO4KI5ND*mid_F4CF56ABB247C11C36AEF0E22BD8E85F43F1C810*simid_608032990716694250*thid_OIP.LO4KI5ND322R5fQQ-4uTDgHaFj",
+ "insightsMetadata": {"recipeSourcesCount": 0, "bestRepresentativeQuery": {"text":
+ "Mars Rover Curiosity Pictures From NASA", "displayText": "Mars Rover Curiosity
+ Pictures From NASA", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Rover+Curiosity+Pictures+From+NASA&id=F4CF56ABB247C11C36AEF0E22BD8E85F43F1C810&FORM=IDBQDM"},
+ "pagesIncludingCount": 161, "availableSizesCount": 83}, "imageId": "F4CF56ABB247C11C36AEF0E22BD8E85F43F1C810",
+ "accentColor": "945D37"}], "queryExpansions": [{"text": "Woman Mars", "displayText":
+ "Woman", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Woman+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Woman%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Woman+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Woman%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Woman+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sailor Mars", "displayText": "Sailor", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sailor+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sailor%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sailor+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sailor%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sailor+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Man", "displayText": "Man", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Man&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Man%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Man&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Man%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Man&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Veronica Mars", "displayText": "Veronica", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Veronica+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Veronica%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Veronica+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Veronica%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Veronica+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Baha Mar", "displayText": "Baha", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Baha+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Baha%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Baha+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Baha%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Baha+Mar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Venus", "displayText": "Venus", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Venus&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venus%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Venus&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venus%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Venus&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars'' Moons", "displayText": "Moons", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars%27+Moons&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Moons%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars%27+Moons&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Moons%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars%27+Moons&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Rover", "displayText": "Rover", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Rover&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rover%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Rover&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rover%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Rover&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Craters", "displayText": "Craters", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Craters&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Craters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Craters&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Craters%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Craters&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Surface", "displayText": "Surface", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Surface&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Surface%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Surface&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Surface%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Mars+Surface&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Rocks", "displayText": "Rocks", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Rocks&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rocks%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Rocks&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Rocks%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Mars+Rocks&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earth Mars", "displayText": "Earth", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Earth+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Earth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earth+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Earth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Earth+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Attacks", "displayText": "Attacks", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Attacks&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Attacks%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Attacks&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Attacks%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Attacks&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Life Mars", "displayText": "Life", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Life+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Life%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Life+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Life%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Life+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Bar", "displayText": "Bar", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Bar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Bar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Bar%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Bar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Water Mars", "displayText": "Water", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Water+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Water%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Water+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Water%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Water+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Ocean", "displayText": "Ocean", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Ocean&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ocean%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Ocean&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Ocean%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Ocean&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sea Mars", "displayText": "Sea", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sea+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sea%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sea+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sea%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Sea+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Solar System Mars", "displayText": "Solar System", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Solar+System+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solar+System%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Solar+System+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Solar+System%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Solar+System+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "NASA Mars", "displayText": "NASA", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=NASA+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NASA%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=NASA+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22NASA%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=NASA+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Biker Mice Mars", "displayText": "Biker Mice", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Biker+Mice+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Biker+Mice%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Biker+Mice+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Biker+Mice%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Biker+Mice+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "John Carter Mars", "displayText": "John Carter", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=John+Carter+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22John+Carter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=John+Carter+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22John+Carter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=John+Carter+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Anomalies", "displayText": "Anomalies", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Anomalies&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Anomalies%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Anomalies&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Anomalies%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Anomalies&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Corona Del Mar", "displayText": "Corona Del", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Corona+Del+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Corona+Del%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Corona+Del+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Corona+Del%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Corona+Del+Mar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mar Muerto", "displayText": "Muerto", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mar+Muerto&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Muerto%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mar+Muerto&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Muerto%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mar+Muerto&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "El Mar", "displayText": "El", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=El+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22El%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=El+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22El%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=El+Mar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Del Mar", "displayText": "Del", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Del+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Del%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Del+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Del%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Del+Mar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Topography", "displayText": "Topography", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Topography&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Topography%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Topography&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Topography%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Topography&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Landscape", "displayText": "Landscape", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Landscape&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscape%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Landscape&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Landscape%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Landscape&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Terraformed Mars", "displayText": "Terraformed", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Terraformed+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Terraformed%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Terraformed+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Terraformed%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Terraformed+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Sunrise", "displayText": "Sunrise", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Sunrise&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sunrise%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Sunrise&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sunrise%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Mars+Sunrise&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sun Mars", "displayText": "Sun", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sun+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sun+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Sun+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sunset Mars", "displayText": "Sunset", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sunset+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sunset%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sunset+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sunset%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Sunset+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Face Mars", "displayText": "Face", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Face+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Face%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Face+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Face%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Face+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Son Mars", "displayText": "Son", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Son+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Son%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Son+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Son%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Son+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Tossa De Mar", "displayText": "Tossa De", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Tossa+De+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tossa+De%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Tossa+De+Mar&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Tossa+De%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Tossa+De+Mar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Needs Moms", "displayText": "Needs Moms", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Needs+Moms&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Needs+Moms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Needs+Moms&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Needs+Moms%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Needs+Moms&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Princess Mars", "displayText": "Princess", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Princess+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Princess%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Princess+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Princess%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Princess+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Cute Mars", "displayText": "Cute", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Cute+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cute%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Cute+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Cute%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Cute+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Kawaii Mars", "displayText": "Kawaii", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Kawaii+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kawaii%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Kawaii+Mars&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Kawaii%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Kawaii+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}}],
+ "pivotSuggestions": [{"pivot": "mars", "suggestions": [{"text": "Venus", "displayText":
+ "Venus", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Venus&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venus%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Venus&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Venus%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Venus&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jupiter", "displayText": "Jupiter", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Jupiter&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jupiter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Jupiter&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Jupiter%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Jupiter&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Saturn", "displayText": "Saturn", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Saturn&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Saturn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Saturn&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Saturn%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Saturn&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Uranus", "displayText": "Uranus", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Uranus&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Uranus%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Uranus&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Uranus%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Uranus&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Neptune", "displayText": "Neptune", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Neptune&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neptune%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Neptune&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Neptune%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Neptune&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pluto", "displayText": "Pluto", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pluto&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pluto%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Pluto&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Pluto%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Pluto&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Planet", "displayText": "Planet", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Planet&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Planet%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Planet&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Planet%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Planet&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Comet", "displayText": "Comet", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Comet&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Comet%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Comet&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Comet%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Comet&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Asteroid", "displayText": "Asteroid", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Asteroid&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Asteroid%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Asteroid&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Asteroid%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Asteroid&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Sun", "displayText": "Sun", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Sun&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Sun&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Sun%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Sun&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Moon", "displayText": "Moon", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Moon&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Moon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Moon&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Moon%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Moon&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earth", "displayText": "Earth", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Earth&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Earth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d&FORM=IRQBPS",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earth&tq=%7b%22pq%22%3a%22mars+(site%3anasa.gov)%22%2c%22qs%22%3a%5b%7b%22cv%22%3a%22mars%22%2c%22pv%22%3a%22mars%22%2c%22hps%22%3atrue%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22(site%3anasa.gov)%22%2c%22pv%22%3a%22(site%3anasa.gov)%22%2c%22hps%22%3afalse%2c%22iqp%22%3afalse%7d%2c%7b%22cv%22%3a%22Earth%22%2c%22pv%22%3a%22%22%2c%22hps%22%3afalse%2c%22iqp%22%3atrue%7d%5d%7d",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Earth&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]},
+ {"pivot": "(site:nasa.gov)", "suggestions": []}], "relatedSearches": [{"text":
+ "Jupiter", "displayText": "Jupiter", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Jupiter&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Jupiter",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Jupiter&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Venus", "displayText": "Venus", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Venus&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Venus",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Venus&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Solar System", "displayText": "Solar System", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Solar+System&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Solar+System",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Solar+System&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Saturn", "displayText": "Saturn", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Saturn&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Saturn",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Saturn&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pluto", "displayText": "Pluto", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pluto&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Pluto",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Pluto&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Uranus", "displayText": "Uranus", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Uranus&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Uranus",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Uranus&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Surface", "displayText": "Mars Surface", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Surface&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Surface",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Mars+Surface&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Aliens On Mars", "displayText": "Aliens On Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Aliens+On+Mars&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Aliens+On+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Aliens+On+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Latest Pictures From Mars", "displayText": "Latest Pictures From
+ Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Latest+Pictures+From+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Latest+Pictures+From+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Latest+Pictures+From+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Life On Mars", "displayText": "Life On Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Life+On+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Life+On+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Life+On+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Landscape", "displayText": "Mars Landscape", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Landscape&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Landscape",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Landscape&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars'' Moons", "displayText": "Mars'' Moons", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars%27+Moons&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars%27+Moons",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars%27+Moons&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earth", "displayText": "Earth", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Earth&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earth",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Earth&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Martian", "displayText": "Martian", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Martian&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Martian",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Martian&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Planet Mercury", "displayText": "Planet Mercury", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Planet+Mercury&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Planet+Mercury",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Planet+Mercury&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Jupiter Planet", "displayText": "Jupiter Planet", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Jupiter+Planet&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Jupiter+Planet",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Jupiter+Planet&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Planet Mars", "displayText": "Planet Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Planet+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Planet+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Planet+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earth From Mars", "displayText": "Earth From Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Earth+From+Mars&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earth+From+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Earth+From+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Rover", "displayText": "Mars Rover", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Rover&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Rover",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Rover&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Rover Curiosity", "displayText": "Mars Rover Curiosity", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Rover+Curiosity&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Rover+Curiosity",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Rover+Curiosity&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Chocolate", "displayText": "Mars Chocolate", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Chocolate&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Chocolate",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Mars+Chocolate&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Candy", "displayText": "Mars Candy", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Candy&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Candy",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Candy&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars God", "displayText": "Mars God", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+God&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+God",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+God&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Roman God Mars", "displayText": "Roman God Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Roman+God+Mars&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Roman+God+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Roman+God+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Cartoon Mars", "displayText": "Cartoon Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Cartoon+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Cartoon+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Cartoon+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Bar", "displayText": "Mars Bar", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Bar&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Bar",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Bar&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Inside Mars", "displayText": "Inside Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Inside+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Inside+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Inside+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Clip Art", "displayText": "Mars Clip Art", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Clip+Art&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Clip+Art",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Clip+Art&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Logo", "displayText": "Mars Logo", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Logo&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Logo",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Logo&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mar YouTube", "displayText": "Mar YouTube", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mar+YouTube&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mar+YouTube",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Mar+YouTube&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Anomalies", "displayText": "Mars Anomalies", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Anomalies&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Anomalies",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Anomalies&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Drawing", "displayText": "Mars Drawing", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Drawing&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Drawing",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Drawing&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Map of Mars", "displayText": "Map of Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Map+of+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Map+of+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Map+of+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mar Anime", "displayText": "Mar Anime", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mar+Anime&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mar+Anime",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mar+Anime&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Attacks", "displayText": "Mars Attacks", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Attacks&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Attacks",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Mars+Attacks&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Moon Deimos", "displayText": "Mars Moon Deimos", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Moon+Deimos&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Moon+Deimos",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Moon+Deimos&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Earth and Mars", "displayText": "Earth and Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Earth+and+Mars&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Earth+and+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Earth+and+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Company", "displayText": "Mars Company", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Company&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Company",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Mars+Company&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Symbol", "displayText": "Mars Symbol", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Symbol&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Symbol",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse2.mm.bing.net\/th?q=Mars+Symbol&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Colony", "displayText": "Mars Colony", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Mars+Colony&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Colony",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Colony&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars Wallpaper", "displayText": "Mars Wallpaper", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+Wallpaper&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+Wallpaper",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Mars+Wallpaper&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Woman On Mars", "displayText": "Woman On Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Woman+On+Mars&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Woman+On+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse3.mm.bing.net\/th?q=Woman+On+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "NASA Mars", "displayText": "NASA Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=NASA+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=NASA+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=NASA+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "UFO On Mars", "displayText": "UFO On Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=UFO+On+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=UFO+On+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=UFO+On+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Mars God of War", "displayText": "Mars God of War", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Mars+God+of+War&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Mars+God+of+War",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Mars+God+of+War&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Pictures From Curiosity On Mars", "displayText": "Pictures From
+ Curiosity On Mars", "webSearchUrl": "https:\/\/www.bing.com\/images\/search?q=Pictures+From+Curiosity+On+Mars&FORM=IRPATC",
+ "searchLink": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Pictures+From+Curiosity+On+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse1.mm.bing.net\/th?q=Pictures+From+Curiosity+On+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}},
+ {"text": "Martians On Mars", "displayText": "Martians On Mars", "webSearchUrl":
+ "https:\/\/www.bing.com\/images\/search?q=Martians+On+Mars&FORM=IRPATC", "searchLink":
+ "https:\/\/api.cognitive.microsoft.com\/api\/v7\/images\/search?q=Martians+On+Mars",
+ "thumbnail": {"thumbnailUrl": "https:\/\/tse4.mm.bing.net\/th?q=Martians+On+Mars&pid=Api&mkt=en-US&adlt=moderate&t=1"}}]}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 22:24:02 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
new file mode 100644
index 0000000000..32c75f1185
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_bing_search_execute_query_when_bing_returns_an_error.yml
@@ -0,0 +1,47 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - b1rd1sth3p4ssw0rd
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 401
+ message: Access Denied
+ headers:
+ Content-Length:
+ - '143'
+ Content-Type:
+ - application/json
+ Apim-Request-Id:
+ - 1dbfa765-3ea9-4772-8cd8-5e8e62aaad2a
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Www-Authenticate:
+ - AzureApiManagementKey realm="https://api.cognitive.microsoft.com/bing/v7.0",name="Ocp-Apim-Subscription-Key",type="header"
+ Date:
+ - Fri, 31 Aug 2018 21:42:08 GMT
+ body:
+ encoding: UTF-8
+ string: '{ "statusCode": 401, "message": "Access denied due to invalid subscription
+ key. Make sure to provide a valid key for an active subscription." }'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 21:42:08 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml
new file mode 100644
index 0000000000..c6ce0f3fdc
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_a_spelling_suggestion_is_available.yml
@@ -0,0 +1,223 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=sailing%20dingies&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:13 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 158025D320AC4B7FA76AEC8B3CA4B174
+ Bingapis-Sessionid:
+ - E7863553C1F74DF2A2BBFF305500D372
+ X-Msedge-Clientid:
+ - 0BE3B47A8B986A9C2B34B8268AF46B8E
+ X-Msapi-Userstate:
+ - b4ad
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=228,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: 158025D320AC4B7FA76AEC8B3CA4B174 Ref B: SN1EDGE1022 Ref C: 2018-08-31T20:58:13Z'
+ Apim-Request-Id:
+ - 01e16029-3ee7-483f-b5b4-43507112dc16
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:13 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "sailing
+ dingies", "alteredQuery": "sailing dinghies", "alterationDisplayQuery": "sailing
+ dinghies", "alterationOverrideQuery": "+sailing dingies", "adultIntent": false},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=sailing+dingies",
+ "totalEstimatedMatches": 8130000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Dinghy sailing - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing",
+ "about": [{"name": "Dinghy sailing"}, {"name": "Dinghy sailing"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Dinghy_sailing", "snippet":
+ "Dinghy sailing is the activity of sailing small boats by using five essential
+ controls: the sails; the foils (i.e. the daggerboard or centreboard and rudder
+ and ...", "dateLastCrawled": "2018-08-20T13:53:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Best Dinghy | Sailing World", "url": "https:\/\/www.sailingworld.com\/best-dinghy-melges-14",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sailingworld.com\/best-dinghy-melges-14",
+ "snippet": "The Melges 14 delivers on a quick and modern singlehander and
+ earns its stripes as 2016''s Best Dinghy.", "dateLastCrawled": "2018-08-23T21:49:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "25 best beginner sailing dinghies - boats.com", "url": "https:\/\/uk.boats.com\/boat-buyers-guide\/25-best-beginner-sailing-dinghies\/",
+ "about": [{"name": "Dinghy sailing"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/uk.boats.com\/...\/25-best-beginner-sailing-dinghies", "snippet":
+ "There is a lot of choice on the dinghy sailing market, so which is the best
+ sailing dinghy for beginners? Paula Irish reviews the market.", "dateLastCrawled":
+ "2018-08-23T23:25:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "Sailing Dinghy | Portland Pudgy", "url": "http:\/\/www.portlandpudgy.com\/sailing-dinghy\/",
+ "about": [{"name": "Dinghy sailing"}], "isFamilyFriendly": true, "displayUrl":
+ "www.portlandpudgy.com\/sailing-dinghy", "snippet": "Portland Pudgy Sailing
+ Dinghy The sail kit makes your Portland Pudgy a fun, safe sailing dinghy.
+ It also makes it a proactive self-rescue boat.", "dateLastCrawled": "2018-08-19T13:56:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Trinka-The Best Rowing\/Sailing Dinghy in the World.", "url": "http:\/\/www.trinka.com\/",
+ "about": [{"name": "Dinghy sailing"}], "isFamilyFriendly": true, "displayUrl":
+ "www.trinka.com", "snippet": "Trinka-The best rowing dinghy and sailing yacht
+ dinghy in the world.", "dateLastCrawled": "2018-08-26T12:44:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Sailing dinghy, Navigation tender - All boating and marine ...",
+ "url": "http:\/\/www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760.html",
+ "about": [{"name": "Dinghy sailing"}], "isFamilyFriendly": true, "displayUrl":
+ "www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760.html", "snippet":
+ "Find your sailing dinghy easily amongst the 178 products from the leading
+ brands (Walker Bay, Laser Performance, ...) on NauticExpo, the boating and
+ maritime industry specialist for your professional purchases.", "dateLastCrawled":
+ "2018-08-20T13:36:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "Dinghy | Discover Boating", "url": "https:\/\/www.discoverboating.com\/buying\/boat\/dinghies",
+ "about": [{"name": "Dinghy"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.discoverboating.com\/buying\/boat\/dinghies",
+ "snippet": "Dinghies come in a wide variety of types, ... A sail-equipped
+ dinghy is also a great first boat for introducing children to sailing. Which
+ Engine is Right For Your Boat.", "dateLastCrawled": "2018-08-23T10:19:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Sailing Dinghies for sale, used yachts, new sailing dinghy ...",
+ "url": "http:\/\/sailingdinghies.apolloduck.com\/", "about": [{"name": "Dinghy
+ sailing"}], "isFamilyFriendly": true, "displayUrl": "sailingdinghies.apolloduck.com",
+ "snippet": "Sailing dinghies, sailing dinghies for sale, Apollo Duck new and
+ used dinghy sales. Sell your dinghy fast with a free photo advert. Find your
+ dinghy in our database of sailing dinghies, sailing boats, skiffs, beach cats,
+ keel boats, catamarans, one designs and racers.", "dateLastCrawled": "2018-08-25T01:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Sailing Dinghies that You Can Build! - CLC boats", "url": "https:\/\/www.clcboats.com\/shop\/wooden-sailboat-kits\/sailing-dinghies\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.clcboats.com\/shop\/wooden-sailboat-kits\/sailing-dinghies",
+ "snippet": "Tenderly 10-foot Dinghy. Here''s a beautiful 10-foot dinghy or
+ daysailer that slots between our 7''9\" Eastport Pram and the 11''7\" Passagemaker
+ Dinghy.", "dateLastCrawled": "2018-08-18T15:04:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Dinghy - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Dingy",
+ "about": [{"name": "Dinghy"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Dingy",
+ "snippet": "A typical sailing rig for a dinghy is a gunter with a two-piece
+ folding mast stepped through a thwart and resting on the keel.", "dateLastCrawled":
+ "2018-08-20T02:08:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "Gig Harbor Boat Works | Rowing and Sailing Dinghies ...", "url": "http:\/\/www.ghboats.com\/",
+ "about": [{"name": "Gig Harbor Boat Works"}, {"name": "Whitehall rowboat"}],
+ "isFamilyFriendly": true, "displayUrl": "www.ghboats.com", "snippet": "Gig
+ Harbor Boat Works is the builder of a unique line of custom small boats for
+ rowing and sailing. Our boats are modern reproductions of traditional working
+ boats, used by people who earned their living using only wind and oar.", "dateLastCrawled":
+ "2018-08-21T12:19:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Singlehanded sailing dinghies - boats.com", "url": "https:\/\/uk.boats.com\/reviews\/singlehanded-sailing-dinghies\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/uk.boats.com\/reviews\/singlehanded-sailing-dinghies",
+ "snippet": "We look at the world of singlehanded sailing dinghies in the UK,
+ whether you are looking for a dinghy that''s easy to sail or a real challenge
+ with a trapeze or even foils, this is the guide for you.", "dateLastCrawled":
+ "2018-08-18T14:02:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Dinghy Sailing - Topic - YouTube", "url": "https:\/\/www.youtube.com\/channel\/UC1aj5lpRZiCfzVgmN95Pq3Q",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.youtube.com\/channel\/UC1aj5lpRZiCfzVgmN95Pq3Q",
+ "snippet": "Dinghy sailing is the activity of sailing small boats by using
+ five essential controls: the sails the foils the trim side-to-side balance
+ of the dinghy by hi...", "dateLastCrawled": "2018-08-14T15:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Sailing Chandlery (Previously Dinghy Rope) | Online ...", "url":
+ "https:\/\/www.sailingchandlery.com\/", "about": [{"name": "Sailing Chandlery
+ - Sporting Goods Store - Benfleet, Essex, United Kingdom - 9 Reviews - 1,125
+ Photos"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.sailingchandlery.com",
+ "snippet": "Sailing Chandlery (previously Dinghy Rope) is an online chandlery
+ and rope suppliers for marine and boat rope. We stock a variety of sailing
+ boat ropes from Kingfisher and Marlow at less than the RRP with fast delivery.
+ 10% off your first order.", "dateLastCrawled": "2018-08-24T13:32:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "In Search of the Perfect Dinghy: - www.ruach.net: Dinghy ...", "url":
+ "http:\/\/www.ruach.net\/Dinghy.html", "about": [{"name": "Dinghy sailing"}],
+ "isFamilyFriendly": true, "displayUrl": "www.ruach.net\/Dinghy.html", "snippet":
+ "Another line of boats that are being brought into the US Market are made
+ by RS Sailing. In the US, probably the best known model is the RS Feva, a
+ 12'' two-handed, rotomolded polyethelyne dinghy which is becoming increasingly
+ popular among youth sailing programs.", "dateLastCrawled": "2018-08-24T06:30:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "Sailing dinghy, Navigation tender - All boating and marine ...",
+ "url": "http:\/\/www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760-_2.html",
+ "isFamilyFriendly": true, "displayUrl": "www.nauticexpo.com\/boat-manufacturer\/sailing-dinghy-1760-_2.html",
+ "snippet": "Find your sailing dinghy easily amongst the 178 products from
+ the leading brands on NauticExpo, the boating and maritime industry specialist
+ for your professional purchases.", "dateLastCrawled": "2018-08-16T01:08:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Sailing Dinghy | eBay", "url": "https:\/\/www.ebay.com\/bhp\/sailing-dinghy",
+ "about": [{"name": "Dinghy sailing"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.ebay.com\/bhp\/sailing-dinghy", "snippet": "Find great deals
+ on eBay for Sailing Dinghy in Paragliding Equipment and Accessories. Shop
+ with confidence.", "dateLastCrawled": "2018-08-22T17:37:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Sailing Dinghies - boats.com", "url": "https:\/\/www.boats.com\/explore\/boats\/dinghy-sail\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.boats.com\/explore\/boats\/dinghy-sail",
+ "snippet": "When it comes to sailing dinghies, there are two main types to
+ consider: singlehanded sailing dinghies or doublehanded sailing dinghies.
+ Discover more.", "dateLastCrawled": "2018-08-26T08:54:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Buy Sailing Dinghies & Boats | eBay", "url": "https:\/\/www.ebay.co.uk\/b\/Sailing-Dinghies-Boats\/98955\/bn_2318024",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ebay.co.uk\/b\/Sailing-Dinghies-Boats\/98955",
+ "snippet": "Shop from the world''s largest selection and best deals for Sailing
+ Dinghies & Boats. Shop with confidence on eBay!", "dateLastCrawled": "2018-08-23T11:48:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "sailing dinghy | eBay", "url": "https:\/\/www.ebay.com\/sch\/i.html?_nkw=sailing+dinghy",
+ "about": [{"name": "Dinghy sailing"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.ebay.com\/sch\/i.html?_nkw=sailing+dinghy", "snippet": "Find
+ great deals on eBay for sailing dinghy. Shop with confidence.", "dateLastCrawled":
+ "2018-08-19T19:11:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:13 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml
new file mode 100644
index 0000000000..ff57333558
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_an_offset_is_specified.yml
@@ -0,0 +1,145 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=10&mkt=en-US&offset=11&q=anything&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:09 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - F6184289E6F244909254E517811A94C8
+ Bingapis-Sessionid:
+ - 69E23763A4C94208AB97ABB79F75449A
+ X-Msedge-Clientid:
+ - 0742F93153466CC531ADF56D522A6DFD
+ X-Msapi-Userstate:
+ - bf8d
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=187,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: F6184289E6F244909254E517811A94C8 Ref B: SN1EDGE1013 Ref C: 2018-08-31T20:58:09Z'
+ Apim-Request-Id:
+ - 4d00e5a7-1930-4459-bdbd-8182426515cd
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:09 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "anything"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=anything",
+ "totalEstimatedMatches": 37800000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Anything - definition of anything by The Free Dictionary", "url":
+ "https:\/\/www.thefreedictionary.com\/anything", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.thefreedictionary.com\/anything", "snippet":
+ "an·y·thing (ĕn′ē-thĭng′) pron. Any object, occurrence, or matter whatever.
+ adv. To any degree or extent; at all: They aren''t anything like last year''s
+ team. n ...", "dateLastCrawled": "2018-08-22T23:03:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "anything Meaning in the Cambridge English Dictionary", "url": "https:\/\/dictionary.cambridge.org\/dictionary\/english\/anything",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/dictionary.cambridge.org\/dictionary\/english\/anything",
+ "snippet": "anything definition: 1. used in questions and negatives to mean
+ \"something\": 2. any event, act, object, or situation: . Learn more.", "dateLastCrawled":
+ "2018-07-21T03:46:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2", "name":
+ "Natasha Mosley-Anything (Official Video) - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=k5qbym6Mu08",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.youtube.com\/watch?v=k5qbym6Mu08",
+ "snippet": "Our new desktop experience was built to be your music destination.
+ Listen to official albums & more.", "dateLastCrawled": "2018-08-24T13:58:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Anything: The Prayer That Unlocked My God and My Soul ...", "url":
+ "https:\/\/www.amazon.com\/Anything-Prayer-That-Unlocked-Soul\/dp\/0718037200",
+ "about": [{"name": "Anything: The Prayer That Unlocked My God and My Soul"},
+ {"name": "Anything: The Prayer That Unlocked My God and My Soul"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.amazon.com\/Anything-Prayer-That-Unlocked-Soul\/dp\/...",
+ "snippet": "Anything: The Prayer That Unlocked My God and My Soul [Jennie
+ Allen] on Amazon.com. *FREE* shipping on qualifying offers. What if you told
+ God you would do anything . . . and he took you up on it?", "dateLastCrawled":
+ "2018-08-23T21:47:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4", "name":
+ "anything", "url": "https:\/\/www.anything.com\/#!", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.anything.com\/#!", "snippet": "Anything.com,
+ Ltd. © 2018 Anything.com, Ltd.", "dateLastCrawled": "2018-08-22T16:59:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Anything But | Definition of Anything But by Merriam-Webster", "url":
+ "https:\/\/www.merriam-webster.com\/dictionary\/anything%20but", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.merriam-webster.com\/dictionary\/anything
+ but", "snippet": "Seen and Heard. What made you want to look up anything but?Please
+ tell us where you read or heard it (including the quote, if possible).", "dateLastCrawled":
+ "2018-08-23T12:59:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "Anything - Definition for English-Language Learners from ...", "url": "http:\/\/www.learnersdictionary.com\/definition\/anything",
+ "isFamilyFriendly": true, "displayUrl": "www.learnersdictionary.com\/definition\/anything",
+ "snippet": "Definition of anything written for English Language Learners from
+ the Merriam-Webster Learner''s Dictionary with audio pronunciations, usage
+ examples, and count\/noncount noun labels.", "dateLastCrawled": "2018-08-22T07:50:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Anything (The Damned album) - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Anything_(The_Damned_album)",
+ "about": [{"name": "Anything"}, {"name": "Anything"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Anything_(The_Damned_album)",
+ "snippet": "Anything is the seventh studio album by the Damned, released by
+ MCA Records in 1986. On the album''s release, it charted in the United Kingdom,
+ peaking at No. 40, and was certified as silver by the British Phonographic
+ Industry.", "snippetAttribution": {"license": {"name": "CC-BY-SA", "url":
+ "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/"}, "licenseNotice":
+ "Text under CC-BY-SA license"}, "dateLastCrawled": "2018-08-20T11:13:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Anything - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/Anything",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/Anything",
+ "snippet": "This disambiguation page lists articles associated with the title
+ Anything. If an internal link led you here, you may wish to change the link
+ to point directly to the intended article.", "dateLastCrawled": "2018-08-19T11:43:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Anything dictionary definition | anything defined", "url": "http:\/\/www.yourdictionary.com\/anything",
+ "isFamilyFriendly": true, "displayUrl": "www.yourdictionary.com\/anything",
+ "snippet": "any object, event, fact, etc.: do you know anything about it?
+ · a thing, no matter of what kind: do anything you want · in any way; at all:
+ is he anything like his father ...", "dateLastCrawled": "2018-06-12T00:39:00.0000000Z",
+ "language": "en", "isNavigational": false}]}, "rankingResponse": {"mainline":
+ {"items": [{"answerType": "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:09 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml
new file mode 100644
index 0000000000..d402549781
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_chinese_locale_is_specified.yml
@@ -0,0 +1,184 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=%E4%B8%AD%E5%9B%BD&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:11 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 6E6BEB9424E94C67802C5BEBE77984D0
+ Bingapis-Sessionid:
+ - 99320C574A5747C1A0FE980F2BD2AD99
+ X-Msedge-Clientid:
+ - '0409204668F06EA41E312C1A699C6FA1'
+ X-Msapi-Userstate:
+ - '9945'
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=217,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: 6E6BEB9424E94C67802C5BEBE77984D0 Ref B: SN1EDGE0810 Ref C: 2018-08-31T20:58:11Z'
+ Apim-Request-Id:
+ - 82f36e37-5981-4853-8dd2-4c62ff5ced90
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:10 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "中国"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=%e4%b8%ad%e5%9b%bd",
+ "totalEstimatedMatches": 33100000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "中国_360百科", "url": "https:\/\/baike.so.com\/doc\/1279856-24188840.html",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/baike.so.com\/doc\/1279856-24188840.html",
+ "snippet": "中国,中国位于东亚,是以华夏文明为主体、中华文化为基础,以汉族为主要民族的统一多民族国家,通用汉语。中国人一般称呼自己为龙的传人、炎黄子孙或中华民族。",
+ "dateLastCrawled": "2018-08-24T14:46:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "中国网--网上中国", "url": "http:\/\/www.china.com.cn\/", "about": [{"name":
+ "Yonghe Temple"}, {"name": "Yonghe Temple"}], "isFamilyFriendly": true, "displayUrl":
+ "www.china.com.cn", "snippet": "国家重点新闻网站,拥有十个语种独立新闻采编、报道和发布权;第一时间报道国家重大新闻事件;国情信息库服务全球读者了解中国;国务院新闻办公室发布会独家网络直播发布网站;拥有国内外顶级学者专家资源,独家编发各种相关政策解读。",
+ "dateLastCrawled": "2018-08-23T02:15:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "中国银行全球门户网站", "url": "http:\/\/www.boc.cn\/", "about": [{"name": "Bank
+ of China"}], "isFamilyFriendly": true, "displayUrl": "www.boc.cn", "snippet":
+ "中国银行是中国国际化和多元化程度最高的银行,在中国内地及53个国家和地区为客户提供全面的金融服务。主要经营商业银行业务:公司金融、个人金融和金融市场业务,并通过附属机构开展投资银行、保险、直接投资、投资管理、基金管理和飞机租赁业务。",
+ "dateLastCrawled": "2018-08-23T19:00:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "中國 - 维基百科,自由的百科全书", "url": "https:\/\/zh.wikipedia.org\/wiki\/%E4%B8%AD%E5%9C%8B",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/zh.wikipedia.org\/wiki\/中國",
+ "snippet": "中国历史系列條目; 史 前 時 代: 舊石器時代: 中石器時代: 新石器時代: 黄河 文明: 長江 文明: 青銅器時代: 传说時代
+ (三皇五帝、虞朝) 夏 约前21世纪–约前17世纪", "dateLastCrawled": "2018-08-24T04:36:00.0000000Z",
+ "language": "zh_chs", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "戴尔官方网站 | Dell 中国大陆", "url": "https:\/\/www.dell.com\/zh-cn", "about":
+ [{"name": "Dell"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dell.com\/zh-cn",
+ "snippet": "欢迎访问戴尔官方网站。Dell中国为个人、家庭、企业办公等提供高品质戴尔产品及服务。登录Dell官方网站查询最新Dell产品价格、戴尔优惠活动、戴尔售后服务信息等。",
+ "dateLastCrawled": "2018-08-24T15:08:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "佳能(中国)-首页", "url": "http:\/\/www.canon.com.cn\/", "about": [{"name":
+ "Canon (China) Co., Ltd"}], "isFamilyFriendly": true, "displayUrl": "www.canon.com.cn",
+ "snippet": "佳能公司是以光学为核心的相机与办公设备制造商,始终以创造世界一流产品为目标,积极推动事业向多元化和全球化发展。", "dateLastCrawled":
+ "2018-08-22T03:57:00.0000000Z", "language": "zh_chs", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "中国政府网 中央人民政府门户网站 - gov.cn", "url": "http:\/\/www.gov.cn\/", "about": [{"name":
+ "Mianyang"}], "isFamilyFriendly": true, "displayUrl": "www.gov.cn", "snippet":
+ "中国政府网由国务院办公厅主办,中国政府网运行中心负责运行维护,是国务院和国务院各部门,以及各省、自治区、直辖市人民政府在国际互联网上发布政府信息和提供在线服务的综合平台,第一时间权威发布国务院重大决策部署和重要政策文件,国务院领导
+ ...", "dateLastCrawled": "2018-08-24T13:00:00.0000000Z", "language": "zh_chs",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "NBA中国官方网站", "url": "http:\/\/china.nba.com\/", "about": [{"name":
+ "NBA China"}], "isFamilyFriendly": true, "displayUrl": "china.nba.com", "snippet":
+ "湖人助教:隆多是个能上场打球的nba教练; 重返欧洲 布兰登-詹宁斯将前往俄罗斯淘金; 休城市长将设立哈登日 预计赛季开始前公布", "dateLastCrawled":
+ "2018-08-24T12:53:00.0000000Z", "language": "zh_chs", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "baidu.com - 百度一下,你就知道", "url": "https:\/\/www.baidu.com\/", "about": [{"name":
+ "Baidu"}, {"name": "Baidu"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.baidu.com",
+ "snippet": "输入法. 手写; 拼音; 关闭; 百度首页 设置 登录. 新闻 hao123 地图 视频 贴吧 学术 登录 设置 更多产品",
+ "dateLastCrawled": "2018-08-20T14:28:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "军事_中国网_权威军事新闻网站", "url": "http:\/\/military.china.com.cn\/", "isFamilyFriendly":
+ true, "displayUrl": "military.china.com.cn", "snippet": "中国网军事频道是中国最权威的军事网站之一,报道中国、国际等全球军事新闻。主要有以下栏目:军方发布、中国军事、国际军事、军情24小时、武器库、论战、军史、军事图库、军事论坛。",
+ "dateLastCrawled": "2018-08-23T01:46:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "中国银行", "url": "https:\/\/ebsnew.boc.cn\/boc15\/login.html", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/ebsnew.boc.cn\/boc15\/login.html", "snippet":
+ "*登录时需已安装 Windows 或 Mac “网上银行登录安全控件”, * 请持有中银E盾的客户,下载并安装 Windows 或 Mac “USBKey管理工具”
+ 。 * 网上银行服务使用完毕后,请点击页面右上角的“安全退出”按钮退出服务。", "dateLastCrawled": "2018-08-24T10:35:00.0000000Z",
+ "language": "zh_chs", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "中国农业银行", "url": "http:\/\/www.abchina.com\/", "about": [{"name":
+ "Agricultural Bank of China, New York Branch"}, {"name": "Agricultural Bank
+ of China"}], "isFamilyFriendly": true, "displayUrl": "www.abchina.com", "snippet":
+ "私人银行. 至尊荣耀,为您专享. 立即查看 贵宾服务. 机场贵宾等专享增值服务. 立即查看 助业贷款. 享最高1000万元贷款,为您的事业加油助力!",
+ "dateLastCrawled": "2018-08-24T00:04:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "中国法院网", "url": "https:\/\/www.chinacourt.org\/index.shtml", "about":
+ [{"name": "People''s Court Daily"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.chinacourt.org", "snippet": "中国法院网是经最高人民法院批准成立,经国务院新闻办公室批准从事登载新闻业务的综合性新闻网站,并经国家广电总局批准自办视频播放业务。",
+ "dateLastCrawled": "2018-08-22T20:30:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "189邮箱", "url": "http:\/\/www.189.cn\/", "isFamilyFriendly": true,
+ "displayUrl": "www.189.cn", "snippet": "中国电信网上营业厅,为电信客户提供充值交费、费用查询、业务办理、在线客服、故障申告、投诉咨询及品牌专区等全方位的电子自助服务;中国电信——世界触手可及。",
+ "dateLastCrawled": "2018-08-21T15:01:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "首页-中国天气网", "url": "http:\/\/www.weather.com.cn\/", "isFamilyFriendly":
+ true, "displayUrl": "www.weather.com.cn", "snippet": "中国天气网官方权威发布天气预报,逐三小时天气预报,提供天气预报查询一周,天气预报15天查询,天气预报40天查询,空气质量,生活指数,旅游出行,交通天气等查询服务",
+ "dateLastCrawled": "2018-08-20T16:33:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "中国工商银行中国网站", "url": "http:\/\/www.icbc.com.cn\/icbc\/", "about":
+ [{"name": "Industrial and Commercial Bank of China"}], "isFamilyFriendly":
+ true, "displayUrl": "www.icbc.com.cn", "snippet": "8月22日-23日,中国工商银行将面向个人和非金融机构客户同步销售国家开发银行2018年第八期、第九期和第十一期金…",
+ "dateLastCrawled": "2018-08-23T21:17:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "国内新闻_环球网", "url": "http:\/\/china.huanqiu.com\/", "isFamilyFriendly":
+ true, "displayUrl": "china.huanqiu.com", "snippet": "环球网国内新闻着力于报道国内要闻、时事新闻、海外看中国、国内各地动态、港澳新闻、政策观察与解读、深度报道、新闻图片、新闻人物等中国新闻。",
+ "dateLastCrawled": "2018-08-24T00:50:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Google", "url": "http:\/\/www.google.cn\/", "about": [{"name": "Google
+ China"}, {"name": "Google China"}], "isFamilyFriendly": true, "displayUrl":
+ "www.google.cn", "snippet": "google.com.hk. 请收藏我们的网址 翻译 ©2011 - ICP证合字B2-20070004号ICP证合字B2-20070004号",
+ "dateLastCrawled": "2018-08-22T15:42:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Garmin | 中国 | 官方网站", "url": "http:\/\/www.garmin.com.cn\/", "isFamilyFriendly":
+ true, "displayUrl": "www.garmin.com.cn", "snippet": "Garmin公司专注于设计,制造和销售先进的全球定位系统,全球定位系统接收机和其他消费电子产品。Garmin在全球卫星导航领域独占鳌头。",
+ "dateLastCrawled": "2018-08-23T18:55:00.0000000Z", "language": "zh_chs", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "Apple (中国) - 官方网站", "url": "https:\/\/www.apple.com\/cn\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.apple.com\/cn", "snippet": "探索 Apple 充满创新的世界,选购各式
+ iPhone、iPad、Apple Watch 和 Mac,浏览各种配件、娱乐产品,并获得相关产品的专家支持服务。", "dateLastCrawled":
+ "2018-08-23T10:11:00.0000000Z", "language": "zh_chs", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:11 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml
new file mode 100644
index 0000000000..a3b250c8a2
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_english_locale_is_specified.yml
@@ -0,0 +1,217 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=english&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:12 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - A79794DA6ED5497FAABD32688D76428E
+ Bingapis-Sessionid:
+ - 47182B12BECF4B21B920E79C53BAB54D
+ X-Msedge-Clientid:
+ - 0566A82A8D8E6BD21AE8A4768C816A69
+ X-Msapi-Userstate:
+ - 563f
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=229,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: A79794DA6ED5497FAABD32688D76428E Ref B: BAYEDGE0508 Ref C: 2018-08-31T20:58:12Z'
+ Apim-Request-Id:
+ - b23fa8a9-234d-4c14-982c-f5d62d9e4ed3
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:12 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "english"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=english", "totalEstimatedMatches":
+ 68400000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "English language - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/English_language",
+ "about": [{"name": "English"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/English_language",
+ "snippet": "English is an Indo-European language and belongs to the West Germanic
+ group of the Germanic languages. Old English originated from a Germanic tribal
+ and linguistic continuum along the coast of the North Sea, whose languages
+ are now known as the Anglo-Frisian subgroup within West Germanic.", "snippetAttribution":
+ {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/"},
+ "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled": "2018-08-20T11:43:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "English | Define English at Dictionary.com", "url": "https:\/\/www.dictionary.com\/browse\/english",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.dictionary.com\/browse\/english",
+ "snippet": "English definition, of, relating to, or characteristic of England
+ or its inhabitants, institutions, etc. See more.", "dateLastCrawled": "2018-08-21T14:10:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "English Grammar: a complete guide", "url": "https:\/\/www.ef.com\/english-resources\/english-grammar\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.ef.com\/english-resources\/english-grammar",
+ "snippet": "This is a complete English grammar guide with the rules of English
+ usage. Each grammatical rule is explained in plain English with several examples,
+ and when needed, counter-examples.", "dateLastCrawled": "2018-08-21T22:21:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Google", "url": "https:\/\/www.google.com\/intl\/en\/", "about":
+ [{"name": "Google"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.google.com\/intl\/en",
+ "snippet": "Search the world''s information, including webpages, images, videos
+ and more. Google has many special features to help you find exactly what you''re
+ looking for.", "dateLastCrawled": "2018-08-24T15:16:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Advanced English lessons", "url": "https:\/\/www.englishpage.com\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.englishpage.com", "snippet":
+ "Englishpage.com offers free English lessons with English grammar and vocabulary
+ exercises online. Hundreds of English lessons to help you learn English today!",
+ "dateLastCrawled": "2018-08-19T20:02:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "English | Oxford Dictionaries", "url": "https:\/\/en.oxforddictionaries.com\/english",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/en.oxforddictionaries.com\/english",
+ "snippet": "English. Oxford Dictionaries definitions. Looking for the meanings
+ of words, phrases, and expressions? We provide hundreds of thousands of definitions,
+ synonyms, antonyms, and pronunciations for English and other languages, derived
+ from our language research and expert analysis.", "dateLastCrawled": "2018-08-23T09:46:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "English Listening Practice - Learn English Listening ...", "url":
+ "https:\/\/www.youtube.com\/watch?v=qYb0LCqqJbU", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.youtube.com\/watch?v=qYb0LCqqJbU", "snippet":
+ "English listening comprehension - English listening practice. Learn english
+ via listening level 1 (full) - lesson 1 - 115. TOPICS: 1. First Snow Fall
+ - 00:01...", "dateLastCrawled": "2018-08-18T20:43:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Pearson English", "url": "https:\/\/www.pearsonelt.com\/", "about":
+ [{"name": "Longman Publishing Group"}, {"name": "Longman Publishing Group"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.pearsonelt.com", "snippet":
+ "If you''re studying with a Pearson course, you can access audio files and
+ extra revision activities online.", "dateLastCrawled": "2018-08-21T17:45:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "English people - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/English_people",
+ "about": [{"name": "English people"}, {"name": "English people"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/English_people", "snippet":
+ "The English people are a nation and an ethnic group native to England who
+ speak the English language.The English identity is of early medieval origin,
+ when they were known in Old English as the Angelcynn (\"family of the Angles\").",
+ "snippetAttribution": {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/"},
+ "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled": "2018-08-20T07:26:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Google Translate", "url": "https:\/\/translate.google.com\/", "about":
+ [{"name": "Google Translate"}, {"name": "Google Translate"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/translate.google.com", "snippet": "Google''s
+ free service instantly translates words, phrases, and web pages between English
+ and over 100 other languages.", "dateLastCrawled": "2018-08-21T22:15:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "English | Definition of English by Merriam-Webster", "url": "https:\/\/www.merriam-webster.com\/dictionary\/English",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.merriam-webster.com\/dictionary\/English",
+ "snippet": "Seen and Heard. What made you want to look up English?Please tell
+ us where you read or heard it (including the quote, if possible).", "dateLastCrawled":
+ "2018-08-23T21:13:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11", "name":
+ "Cambridge Dictionary | English Dictionary, Translations ...", "url": "https:\/\/dictionary.cambridge.org\/",
+ "about": [{"name": "Cambridge Advanced Learner''s Dictionary"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/dictionary.cambridge.org", "snippet": "The
+ most popular dictionary and thesaurus for learners of English. Meanings and
+ definitions of words with pronunciations and translations.", "dateLastCrawled":
+ "2018-08-23T19:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Vocabulary.com - Learn Words - English Dictionary", "url": "https:\/\/www.vocabulary.com\/",
+ "about": [{"name": "Vocabulary.com"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.vocabulary.com", "snippet": "Vocabulary.com helps you learn
+ new words, play games that improve your vocabulary, and explore language.",
+ "dateLastCrawled": "2018-08-22T20:32:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "English as a Second Language (ESL) for Teachers and Students", "url":
+ "https:\/\/www.thoughtco.com\/esl-4133095", "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.thoughtco.com\/esl-4133095", "snippet": "Whether you are a
+ teacher looking for ESL teaching materials, a beginner who''s just starting
+ out, or an advanced student who wants to hone and polish reading comprehension,
+ conversation, and writing skills, these resources can take you to the next
+ level.", "dateLastCrawled": "2018-08-24T02:11:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "English Banana — Teacher Resources for English, ESL, ESOL ...", "url":
+ "http:\/\/www.englishbanana.com\/", "isFamilyFriendly": true, "displayUrl":
+ "www.englishbanana.com", "snippet": "Free printable resources for teaching
+ and learning English. Worksheets for students both young and old, and all
+ levels of proficiency.", "dateLastCrawled": "2018-08-21T16:30:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "www.youtube.com", "url": "https:\/\/www.youtube.com\/watch?v=juKd26qkNAw",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.youtube.com\/watch?v=juKd26qkNAw",
+ "snippet": "www.youtube.com", "dateLastCrawled": "2018-08-17T16:25:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Dictionary by Merriam-Webster: America''s most-trusted ...", "url":
+ "https:\/\/www.merriam-webster.com\/", "about": [{"name": "Merriam-Webster"},
+ {"name": "Merriam-Webster"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.merriam-webster.com",
+ "snippet": "The dictionary by Merriam-Webster is America''s most trusted online
+ dictionary for English word definitions, meanings, and pronunciation. #wordsmatter",
+ "dateLastCrawled": "2018-08-25T04:04:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "BBC Bitesize - KS3 English", "url": "https:\/\/www.bbc.com\/bitesize\/subjects\/z3kw2hv",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.bbc.com\/bitesize\/subjects\/z3kw2hv",
+ "snippet": "KS3 English learning resources for adults, children, parents and
+ teachers organised by topic.", "dateLastCrawled": "2018-08-23T13:02:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Learn English Speaking and Improve your Spoken English ...", "url":
+ "https:\/\/www.talkenglish.com\/", "about": [{"name": "TalkEnglish"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.talkenglish.com", "snippet": "Learn English
+ Speaking Online to improve your Spoken English. Speak English fluently with
+ Free Spoken English lessons using over 10,000 free audio files!", "dateLastCrawled":
+ "2018-08-23T07:42:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19", "name":
+ "Cambridge English Dictionary: Meanings & Definitions", "url": "https:\/\/dictionary.cambridge.org\/dictionary\/english\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/dictionary.cambridge.org\/dictionary\/english",
+ "snippet": "The most popular dictionary and thesaurus. Meanings & definitions
+ of words in English with examples, synonyms, pronunciations and translations.",
+ "dateLastCrawled": "2018-08-14T11:38:00.0000000Z", "language": "en", "isNavigational":
+ false}]}, "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages",
+ "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:12 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml
new file mode 100644
index 0000000000..31888cf8c6
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_google_unsupported_locale_is_specified.yml
@@ -0,0 +1,213 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=tradiksyon&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:11 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 59EC82C752D64E2B880C2DE97A3F106A
+ Bingapis-Sessionid:
+ - 586A05BA97C7429CBD6B551D86ED0368
+ X-Msedge-Clientid:
+ - 20385486594461681F9158DA584B6091
+ X-Msapi-Userstate:
+ - 35c1
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=187,MSDatacenter=CO4
+ X-Msedge-Ref:
+ - 'Ref A: 59EC82C752D64E2B880C2DE97A3F106A Ref B: BAYEDGE0122 Ref C: 2018-08-31T20:58:11Z'
+ Apim-Request-Id:
+ - 5a18a1c1-1d50-47f1-a890-f95be7f13137
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:11 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "tradiksyon"},
+ "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=tradiksyon",
+ "totalEstimatedMatches": 140000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "Google Translate", "url": "https:\/\/translate.google.com\/?hl=ht",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/translate.google.com\/?hl=ht",
+ "snippet": "Tradui Fèmen tradiksyon enstantane a. Kreyòl Ayisyen. Angl ...",
+ "dateLastCrawled": "2018-08-21T20:13:00.0000000Z", "language": "ht", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "Google Traduction", "url": "https:\/\/translate.google.com\/?hl=fr",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/translate.google.com\/?hl=fr",
+ "snippet": "Ce service gratuit de Google traduit instantanément des mots,
+ des expressions et des pages Web du français vers plus de 100 autres langues.",
+ "dateLastCrawled": "2018-08-21T05:45:00.0000000Z", "language": "fr", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "Reemployment Assistance Foreign Language Guidance ...", "url": "http:\/\/sitefinity.floridajobs.org\/reemployment-assistance-foreign-language-guidance",
+ "isFamilyFriendly": true, "displayUrl": "sitefinity.floridajobs.org\/reemployment-assistance-foreign...",
+ "snippet": "Reemployment Assistance Foreign Language Guidance. ... analfabèt
+ òdinatè, baryè lang oswa enfimite rele 1-800-681-8102 pou asistans tradiksyon
+ gratis. ...", "dateLastCrawled": "2018-08-23T00:26:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3",
+ "name": "Translate tradiksyon from French to Arabic - MyMemory", "url": "https:\/\/mymemory.translated.net\/en\/French\/Arabic\/tradiksyon",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/mymemory.translated.net\/en\/French\/Arabic\/tradiksyon",
+ "snippet": "Contextual translation of \"tradiksyon\" from French into Arabic.
+ Examples translated by humans: ll, ola, hob, cccc, sami, vvvv, wachcv, mahlik,
+ azadine, wach cv, محدكمكوط.", "dateLastCrawled": "2018-08-12T11:34:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "Calendar Of Events | Office of Communications", "url": "https:\/\/www.palmbeachschools.org\/communications\/calendarofevents\/",
+ "about": [{"name": "School District of Palm Beach County"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.palmbeachschools.org\/communications\/calendarofevents",
+ "snippet": "School District of Palm Beach County Calendars School Year Calendars
+ School Board and Advisory Committee Calendars 2018 -2019 Calendar ... Avètisman
+ sou tradiksyon yo.", "dateLastCrawled": "2018-08-19T16:49:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "Elementary | Learning Tools", "url": "https:\/\/www.palmbeachschools.org\/learning_tools\/elementary\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.palmbeachschools.org\/learning_tools\/elementary",
+ "snippet": "Favorite Learning Tools District Portal Login BrainPOP BrainPOP
+ Junior BrainPOP Español BrainPOP Francais Destiny ...", "dateLastCrawled":
+ "2018-08-22T10:29:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6", "name":
+ "Affordable Housing for Rent", "url": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/481.pdf",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/a806-housingconnect.nyc.gov\/nyclottery\/AdvertisementPdf\/...",
+ "snippet": "Pou resevwa yon tradiksyon anons sa a nan lang Kreyòl Ayisyen
+ ak aplikasyon an sou papye, voye anvlòp ki gen adrès pou retounen li nan:
+ ...", "dateLastCrawled": "2018-08-18T18:41:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "UI Online - Florida", "url": "http:\/\/connect.myflorida.com\/",
+ "isFamilyFriendly": true, "displayUrl": "connect.myflorida.com", "snippet":
+ "This is a State of Florida computer system owned and operated by the Florida
+ Department of Economic Opportunity (Department) and is for authorized use
+ only.", "dateLastCrawled": "2018-08-24T06:31:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Free Translation and Professional Translation Services ...", "url":
+ "http:\/\/www.freetranslation.com\/", "about": [{}], "isFamilyFriendly": true,
+ "displayUrl": "www.freetranslation.com", "snippet": "SDL FreeTranslation.com
+ is the world''s number one provider of free and professional translation services
+ for text, websites, and documents.", "dateLastCrawled": "2018-08-22T21:17:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Business To Business (b2b) Marketplace - Manufacturers ...", "url":
+ "https:\/\/www.tradekey.com\/", "about": [{"name": "TradeKey.com"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.tradekey.com", "snippet": "TradeKey.com
+ Business to Business marketplace, B2B Marketplace, Import export marketplace
+ - over 9,208,101 members, offers b2b directory, catalog & trade leads to importer,
+ buyer, exporter, manufacturer, wholesaler, supplier.", "dateLastCrawled":
+ "2018-08-23T17:16:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10", "name":
+ "NY DCJS - Translations", "url": "http:\/\/www.criminaljustice.ny.gov\/pio\/translations.html",
+ "isFamilyFriendly": true, "displayUrl": "www.criminaljustice.ny.gov\/pio\/translations.html",
+ "snippet": "Oral entèpretasyon ak tradiksyon ekri a dwe disponib, gratis,
+ nan tout kliyan ki gen kapasite limite li, pale, ekri oswa konprann angle.",
+ "dateLastCrawled": "2018-08-24T07:57:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "Lucky Dube - Prisoner Tradiksyon en Kreyol - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=ARzwpfvza6A",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.youtube.com\/watch?v=ARzwpfvza6A",
+ "snippet": "Lucky Dube - Prisoner Tradiksyon en Kreyol Please leave a comment,
+ like, share our videos and don''t forget to subscribe.", "dateLastCrawled":
+ "2018-08-07T14:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12", "name":
+ "Kreyol - Mass.Gov", "url": "http:\/\/www.mass.gov\/lwd\/eolwd\/multilingual-information\/multilingual\/haitian-creole\/",
+ "isFamilyFriendly": true, "displayUrl": "www.mass.gov\/lwd\/eolwd\/multilingual-information\/multilingual\/...",
+ "snippet": "The Official Website of the Executive Office of Labor and Workforce
+ Development ... Nou founi sèvis tradiksyon\/entèpretasyon pou kliyan ak Konpetans
+ Angle Limite ...", "dateLastCrawled": "2018-08-20T08:17:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "Bell Films launches big comeback movie: Kontradiksyon ...", "url":
+ "https:\/\/www.lionheartv.net\/2018\/07\/bell-films-launches-big-comeback-movie-kontradiksyon\/",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.lionheartv.net\/2018\/07\/bell-films-launches-big...",
+ "snippet": "Bell Films launches big comeback movie: Kontradiksyon After over
+ 23 years, Bell Films is proud to make its comeback into the realm of film
+ production as it strives to enter the digital age of", "dateLastCrawled":
+ "2018-08-04T19:21:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14", "name":
+ "Haitian tradiksyon diksyonè - Apps on Google Play", "url": "https:\/\/play.google.com\/store\/apps\/details?id=en.ht.bestdict&hl=en_US",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/play.google.com\/store\/apps\/details?id=en.ht.bestdict&hl=en_US",
+ "snippet": "Pou tradiktè a oswa entèprèt, zouti sa a ap ba ou byen vit bon
+ tradiksyon an ak tou pwononsyasyon la nan toude lang pa sèlman yon sèl tiyo.-",
+ "dateLastCrawled": "2018-08-22T07:10:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "MyMemory - Machine translation meets human translation", "url": "https:\/\/mymemory.translated.net\/",
+ "about": [{"name": "Translation memory"}, {"name": "Translation memory"}],
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/mymemory.translated.net",
+ "snippet": "MyMemory is the world largest collaborative translation archive.",
+ "dateLastCrawled": "2018-08-21T22:38:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "Claimants - FloridaJobs.org", "url": "http:\/\/floridajobs.org\/job-seekers-community-services\/reemployment-assistance-center\/claimants",
+ "isFamilyFriendly": true, "displayUrl": "floridajobs.org\/job-seekers-community-services\/reemployment...",
+ "snippet": "CONNECT provides online access for claimants to apply for benefits,
+ view and maintain claimant account information, view claim status and payments,
+ view overpayment balance and make payments.", "dateLastCrawled": "2018-08-23T12:45:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "Diversity, Prevention & Intervention \/ Code of Conduct", "url":
+ "https:\/\/www.browardschools.com\/Page\/38107", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.browardschools.com\/Page\/38107", "snippet":
+ "Ayisyen \/ kreyòl Tradiksyon. Tradução em português . Discipline Matrix.
+ WHAT IS THE DISCIPLINE MATRIX?", "dateLastCrawled": "2018-08-21T01:45:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "Lucky Dube \"remember me\" traduction FR - YouTube", "url": "https:\/\/www.youtube.com\/watch?v=OVvvjVzR7NM",
+ "isFamilyFriendly": true, "displayUrl": "https:\/\/www.youtube.com\/watch?v=OVvvjVzR7NM",
+ "snippet": "Lucky Dube \"remember me\" traduction FR ... Lucky Dube - Prisoner
+ Tradiksyon en Kreyol - Duration: 4:11. Haitian Freedom Music 23,067 views.
+ 4:11.", "dateLastCrawled": "2018-08-17T21:00:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "AEC | Adult Education Center", "url": "http:\/\/www.theadulteducationcenter.com\/",
+ "about": [{"name": "Adult Education Center Of Palm Beach"}, {"name": "Adult
+ Education Center"}], "isFamilyFriendly": true, "displayUrl": "www.theadulteducationcenter.com",
+ "snippet": "Welcome to The Adult Education Center The Adult Education Center
+ - \"Where Every Day Counts\" Open Registration The Adult Education Center
+ ha...", "dateLastCrawled": "2018-08-21T05:00:00.0000000Z", "language": "en",
+ "isNavigational": false}]}, "rankingResponse": {"mainline": {"items": [{"answerType":
+ "WebPages", "resultIndex": 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:11 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml
new file mode 100644
index 0000000000..7d36df51ec
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_disabled.yml
@@ -0,0 +1,229 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=white%20house&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:09 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - 99E28E7C8DEF4D7A957EDBDE2D447042
+ Bingapis-Sessionid:
+ - B2B21792D6F34795A96BF78021C51170
+ X-Msedge-Clientid:
+ - 35C1502A94696ACB07EC5C7695056B1C
+ X-Msapi-Userstate:
+ - 3d6b
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=165,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: 99E28E7C8DEF4D7A957EDBDE2D447042 Ref B: SN1EDGE0709 Ref C: 2018-08-31T20:58:09Z'
+ Apim-Request-Id:
+ - 0d9d198e-a17f-4414-8f8d-b5019e6ca469
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:08 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "white
+ house"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=white+house",
+ "totalEstimatedMatches": 268000000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "about":
+ [{"name": "The White House"}, {"name": "whitehouse.gov"}, {"name": "White
+ House"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of this building extends
+ far beyond the construction of its walls.", "dateLastCrawled": "2018-08-24T00:53:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "White House - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/White_House",
+ "about": [{"name": "White House"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/White_House", "snippet":
+ "The White House is the official residence and workplace of the President
+ of the United States.It is located at 1600 Pennsylvania Avenue NW in Washington,
+ D.C. and has been the residence of every U.S. President since John Adams in
+ 1800.", "snippetAttribution": {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/"},
+ "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled": "2018-08-19T15:03:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "TRUMP® WHITE HOUSE | WHITEHOUSE.ORG", "url": "https:\/\/whitehouse.org\/",
+ "about": [{"name": "WHITEHOUSE.ORG"}, {"name": "whitehouse.org"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/whitehouse.org", "snippet": "100% OFFICIOUS
+ website of the White House & President Donald J. Trump", "dateLastCrawled":
+ "2018-08-23T20:10:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "The White House - YouTube", "url": "https:\/\/www.youtube.com\/whitehouse",
+ "about": [{"name": "White House"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.youtube.com\/whitehouse", "snippet": "Official
+ White House Youtube channel. Vice President Pence Delivers Remarks at the
+ 37th Annual National Peace Officers'' Memorial Service - Duration: 6 minutes,
+ 32 seconds.", "dateLastCrawled": "2018-08-23T14:25:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "The White House (@WhiteHouse) | Twitter", "url": "https:\/\/twitter.com\/WhiteHouse",
+ "about": [{"name": "White House"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/twitter.com\/WhiteHouse", "snippet": "The latest
+ Tweets from The White House (@WhiteHouse). Welcome to @WhiteHouse! Follow
+ for the latest from President @realDonaldTrump and his Administration. Tweets
+ may be archived: https:\/\/t.co\/IURuMIrzxb.", "dateLastCrawled": "2018-08-24T16:14:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "The White House - Home | Facebook", "url": "http:\/\/www.facebook.com\/WhiteHouse",
+ "isFamilyFriendly": true, "displayUrl": "www.facebook.com\/WhiteHouse", "snippet":
+ "The White House. 8.4M likes. Welcome to the official White House Facebook
+ page for the Trump Administration. Comments posted on and messages received...",
+ "dateLastCrawled": "2018-08-19T14:01:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "White House - Facts & Summary - HISTORY.com", "url": "https:\/\/www.history.com\/topics\/white-house",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.history.com\/topics\/white-house", "snippet": "Find out more
+ about the history of White House, including videos, interesting articles,
+ pictures, historical features and more. Get all the facts on HISTORY.com",
+ "dateLastCrawled": "2018-08-24T00:33:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Headlines from the White House", "url": "https:\/\/www.cnbc.com\/white-house\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.cnbc.com\/white-house", "snippet": "Latest news from the White
+ House, including video, commentary, and in-depth analysis coverage.", "dateLastCrawled":
+ "2018-08-24T16:50:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8", "name":
+ "Petition the White House on the Issues that Matter to You ...", "url": "https:\/\/petitions.whitehouse.gov\/",
+ "about": [{"name": "We the People"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/petitions.whitehouse.gov", "snippet": "Create
+ a Petition. Call on the White House to take action on the issue that matters
+ to you.", "dateLastCrawled": "2018-08-24T20:02:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9",
+ "name": "Contact the White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with regular
+ updates from the White House. required ...", "dateLastCrawled": "2018-08-21T14:57:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Women''s Clothing, Dresses, Tops, Pants, Petite & Plus Size ...",
+ "url": "https:\/\/www.whitehouseblackmarket.com\/store\/", "about": [{"name":
+ "White House Black Market"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouseblackmarket.com",
+ "snippet": "White House Black Market offers polished black and white women''s
+ clothing with pops of color and patterns. Shop tailored dresses, tops, pants
+ and accessories.", "dateLastCrawled": "2018-08-23T04:54:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "President''s Park (White House) (U.S. National Park Service)", "url":
+ "https:\/\/www.nps.gov\/whho\/index.htm", "about": [{"name": "President''s
+ Park (White House)"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.nps.gov\/whho",
+ "snippet": "Every president except George Washington has called the White
+ House and its surrounding grounds his place of work, rest, and solitude. Recognizable
+ around the world, the White House stands as a symbol of democracy. The White
+ House and its park grounds serve not only as the seat of the executive ...",
+ "dateLastCrawled": "2018-08-06T23:55:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Homepage - White House Historical Association", "url": "https:\/\/whitehousehistory.org\/",
+ "about": [{"name": "White House"}, {"name": "Decatur House"}, {"name": "White
+ House Historical Association"}, {"name": "White House Historical Association"},
+ {"name": "White House Learning Center"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/whitehousehistory.org", "snippet": "The White
+ House Historical Association is a non-profit organization enhancing understanding
+ of the White House and is supported by official White House Christma...",
+ "dateLastCrawled": "2018-08-24T12:46:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "The White House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
+ "about": [{"name": "whitehouse.gov"}, {"name": "Barack Obama"}, {"name": "Barack
+ Obama"}, {"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/obamawhitehouse.archives.gov", "snippet": "See the President''s
+ daily schedule, explore behind-the-scenes photos from inside the White House,
+ and find out all the ways you can engage with the most interactive administration
+ in our country''s history.", "dateLastCrawled": "2018-08-20T15:42:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "The White House — Google Arts & Culture", "url": "https:\/\/artsandculture.google.com\/partner\/the-white-house",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/artsandculture.google.com\/partner\/the-white-house", "snippet":
+ "For more than 200 years, the White House has been more than just the home
+ of the Presidents and their families. Throughout the world, it is recognized
+ as t...", "dateLastCrawled": "2018-08-21T22:39:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "White House | History, Location, & Facts | Britannica.com", "url":
+ "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC", "about":
+ [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC",
+ "snippet": "White House: White House, the office and residence of the president
+ of the United States at 1600 Pennsylvania Avenue N.W. in Washington, D.C.
+ Since the administration of George Washington (1789–97), who occupied presidential
+ residences in New York and Philadelphia, every American president has resided
+ at the White House.", "dateLastCrawled": "2018-08-23T09:52:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "A look inside the White House - POLITICO", "url": "https:\/\/www.politico.com\/gallery\/a-look-inside-the-white-house",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.politico.com\/gallery\/a-look-inside-the-white-house", "snippet":
+ "Designed by James Hoban, the White House has 132 rooms, 35 bathrooms and
+ 6 levels in the residence. This includes 412 doors, 147 windows, 28 fireplaces,
+ 8 staircases and 3 elevators.", "dateLastCrawled": "2018-08-19T21:37:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "White House: Government News, Videos & Updates - NBC News", "url":
+ "https:\/\/www.nbcnews.com\/politics\/white-house", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.nbcnews.com\/politics\/white-house", "snippet":
+ "Find the latest White House news, videos and photos on http:\/\/www.nbcnews.com.
+ Read headlines covering White House statements, releases, conferences & more.",
+ "dateLastCrawled": "2018-08-22T15:07:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "The White House", "url": "https:\/\/apply.whitehouse.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/apply.whitehouse.gov", "snippet": "Thank you
+ for your interest in serving in the Trump Administration. This website is
+ designed for applicants interested in non-career positions within the Trump
+ Administration.", "dateLastCrawled": "2018-08-23T06:17:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "White House | Fox News", "url": "http:\/\/www.foxnews.com\/category\/politics\/executive\/white-house.html",
+ "isFamilyFriendly": true, "displayUrl": "www.foxnews.com\/category\/politics\/executive\/white-house.html",
+ "snippet": "White House stories and articles from Fox News Politics", "dateLastCrawled":
+ "2018-08-21T02:45:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:09 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml
new file mode 100644
index 0000000000..752a134e00
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_highlighting_is_enabled.yml
@@ -0,0 +1,230 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=white%20house&responseFilter=WebPages&safeSearch=moderate&textDecorations=true&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - ""
+ Accept-Encoding:
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
+ Accept:
+ - "*/*"
+ Connection:
+ - keep-alive
+ Keep-Alive:
+ - '30'
+ response:
+ status:
+ code: 200
+ message: OK
+ headers:
+ Cache-Control:
+ - private, max-age=0
+ Transfer-Encoding:
+ - chunked
+ Content-Type:
+ - application/json; charset=utf-8
+ Expires:
+ - Fri, 31 Aug 2018 20:57:08 GMT
+ Vary:
+ - Accept-Encoding
+ P3p:
+ - CP="NON UNI COM NAV STA LOC CURa DEVa PSAa PSDa OUR IND"
+ Bingapis-Traceid:
+ - AAA61E61EBF146749EA7C07E95F7D0C6
+ Bingapis-Sessionid:
+ - 7AB0743AFDAE4DD8B42E6F99BE4DA520
+ X-Msedge-Clientid:
+ - '09A9F0D237456E960F9CFC8E36296F93'
+ X-Msapi-Userstate:
+ - 826e
+ Bingapis-Market:
+ - en-US
+ X-Search-Responseinfo:
+ - InternalResponseTime=226,MSDatacenter=BN2
+ X-Msedge-Ref:
+ - 'Ref A: AAA61E61EBF146749EA7C07E95F7D0C6 Ref B: SN1EDGE1010 Ref C: 2018-08-31T20:58:08Z'
+ Apim-Request-Id:
+ - bfe13170-3684-4139-a214-6f5392a50a2d
+ Strict-Transport-Security:
+ - max-age=31536000; includeSubDomains; preload
+ X-Content-Type-Options:
+ - nosniff
+ Date:
+ - Fri, 31 Aug 2018 20:58:08 GMT
+ body:
+ encoding: UTF-8
+ string: '{"_type": "SearchResponse", "queryContext": {"originalQuery": "white
+ house"}, "webPages": {"webSearchUrl": "https:\/\/www.bing.com\/search?q=white+house",
+ "totalEstimatedMatches": 268000000, "value": [{"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0",
+ "name": "The White House", "url": "https:\/\/www.whitehouse.gov\/", "about":
+ [{"name": "The White House"}, {"name": "whitehouse.gov"}, {"name": "White
+ House"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouse.gov",
+ "snippet": "History of The White House. Our first president, George Washington,
+ selected the site for the White House in 1791. Every president since John
+ Adams has occupied the White House, and the history of this building extends
+ far beyond the construction of its walls.", "dateLastCrawled": "2018-08-24T00:53:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1",
+ "name": "White House - Wikipedia", "url": "https:\/\/en.wikipedia.org\/wiki\/White_House",
+ "about": [{"name": "White House"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/en.wikipedia.org\/wiki\/White_House", "snippet":
+ "The White House is the official residence and workplace of the President
+ of the United States.It is located at 1600 Pennsylvania Avenue NW in Washington,
+ D.C. and has been the residence of every U.S. President since John Adams in
+ 1800.", "snippetAttribution": {"license": {"name": "CC-BY-SA", "url": "http:\/\/creativecommons.org\/licenses\/by-sa\/3.0\/"},
+ "licenseNotice": "Text under CC-BY-SA license"}, "dateLastCrawled": "2018-08-19T15:03:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2",
+ "name": "TRUMP® WHITE HOUSE | WHITEHOUSE.ORG", "url": "https:\/\/whitehouse.org\/",
+ "about": [{"name": "WHITEHOUSE.ORG"}, {"name": "whitehouse.org"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/whitehouse.org", "snippet": "100% OFFICIOUS
+ website of the White House & President Donald J. Trump", "dateLastCrawled":
+ "2018-08-23T20:10:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3", "name":
+ "The White House - YouTube", "url": "https:\/\/www.youtube.com\/whitehouse",
+ "about": [{"name": "White House"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/www.youtube.com\/whitehouse", "snippet":
+ "Official White House Youtube channel. Vice President Pence Delivers Remarks
+ at the 37th Annual National Peace Officers'' Memorial Service - Duration:
+ 6 minutes, 32 seconds.", "dateLastCrawled": "2018-08-23T14:25:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4",
+ "name": "The White House (@WhiteHouse) | Twitter", "url": "https:\/\/twitter.com\/WhiteHouse",
+ "about": [{"name": "White House"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/twitter.com\/WhiteHouse", "snippet": "The
+ latest Tweets from The White House (@WhiteHouse). Welcome to @WhiteHouse!
+ Follow for the latest from President @realDonaldTrump and his Administration.
+ Tweets may be archived: https:\/\/t.co\/IURuMIrzxb.", "dateLastCrawled": "2018-08-24T16:14:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5",
+ "name": "The White House - Home | Facebook", "url": "http:\/\/www.facebook.com\/WhiteHouse",
+ "isFamilyFriendly": true, "displayUrl": "www.facebook.com\/WhiteHouse",
+ "snippet": "The White House. 8.4M likes. Welcome to the official White
+ House Facebook page for the Trump Administration. Comments posted on and
+ messages received...", "dateLastCrawled": "2018-08-19T14:01:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6",
+ "name": "White House - Facts & Summary - HISTORY.com", "url": "https:\/\/www.history.com\/topics\/white-house",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.history.com\/topics\/white-house", "snippet": "Find out more
+ about the history of White House, including videos, interesting articles,
+ pictures, historical features and more. Get all the facts on HISTORY.com",
+ "dateLastCrawled": "2018-08-24T00:33:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7",
+ "name": "Headlines from the White House", "url": "https:\/\/www.cnbc.com\/white-house\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.cnbc.com\/white-house", "snippet": "Latest news from the
+ White House, including video, commentary, and in-depth analysis coverage.",
+ "dateLastCrawled": "2018-08-24T16:50:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8",
+ "name": "Contact the White House", "url": "https:\/\/www.whitehouse.gov\/contact\/",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.whitehouse.gov\/contact", "snippet": "Keep me posted with
+ regular updates from the White House. required ...", "dateLastCrawled":
+ "2018-08-21T14:57:00.0000000Z", "language": "en", "isNavigational": false},
+ {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9", "name":
+ "Petition the White House on the Issues that Matter to You ...", "url":
+ "https:\/\/petitions.whitehouse.gov\/", "about": [{"name": "We the People"},
+ {"name": "White House"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/petitions.whitehouse.gov",
+ "snippet": "Create a Petition. Call on the White House to take action on
+ the issue that matters to you.", "dateLastCrawled": "2018-08-24T20:02:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10",
+ "name": "Women''s Clothing, Dresses, Tops, Pants, Petite & Plus Size ...",
+ "url": "https:\/\/www.whitehouseblackmarket.com\/store\/", "about": [{"name":
+ "White House Black Market"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.whitehouseblackmarket.com",
+ "snippet": "White House Black Market offers polished black and white women''s
+ clothing with pops of color and patterns. Shop tailored dresses, tops, pants
+ and accessories.", "dateLastCrawled": "2018-08-23T04:54:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11",
+ "name": "President''s Park (White House) (U.S. National Park Service)",
+ "url": "https:\/\/www.nps.gov\/whho\/index.htm", "about": [{"name": "President''s
+ Park (White House)"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.nps.gov\/whho",
+ "snippet": "Every president except George Washington has called the White
+ House and its surrounding grounds his place of work, rest, and solitude.
+ Recognizable around the world, the White House stands as a symbol of democracy.
+ The White House and its park grounds serve not only as the seat of the executive
+ ...", "dateLastCrawled": "2018-08-06T23:55:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12",
+ "name": "Homepage - White House Historical Association", "url": "https:\/\/whitehousehistory.org\/",
+ "about": [{"name": "White House"}, {"name": "Decatur House"}, {"name": "White
+ House Historical Association"}, {"name": "White House Historical Association"},
+ {"name": "White House Learning Center"}, {"name": "White House"}], "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/whitehousehistory.org", "snippet": "The White
+ House Historical Association is a non-profit organization enhancing understanding
+ of the White House and is supported by official White House Christma...",
+ "dateLastCrawled": "2018-08-24T12:46:00.0000000Z", "language": "en", "isNavigational":
+ false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13",
+ "name": "The White House | whitehouse.gov", "url": "https:\/\/obamawhitehouse.archives.gov\/",
+ "about": [{"name": "whitehouse.gov"}, {"name": "Barack Obama"}, {"name": "Barack
+ Obama"}, {"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/obamawhitehouse.archives.gov", "snippet": "See the President''s
+ daily schedule, explore behind-the-scenes photos from inside the White House,
+ and find out all the ways you can engage with the most interactive administration
+ in our country''s history.", "dateLastCrawled": "2018-08-20T15:42:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14",
+ "name": "The White House — Google Arts & Culture", "url": "https:\/\/artsandculture.google.com\/partner\/the-white-house",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/artsandculture.google.com\/partner\/the-white-house", "snippet":
+ "For more than 200 years, the White House has been more than just the home
+ of the Presidents and their families. Throughout the world, it is recognized
+ as t...", "dateLastCrawled": "2018-08-21T22:39:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15",
+ "name": "White House | History, Location, & Facts | Britannica.com", "url":
+ "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC", "about":
+ [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl": "https:\/\/www.britannica.com\/topic\/White-House-Washington-DC",
+ "snippet": "White House: White House, the office and residence of the
+ president of the United States at 1600 Pennsylvania Avenue N.W. in Washington,
+ D.C. Since the administration of George Washington (1789–97), who occupied
+ presidential residences in New York and Philadelphia, every American president
+ has resided at the White House.", "dateLastCrawled": "2018-08-23T09:52:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16",
+ "name": "A look inside the White House - POLITICO", "url": "https:\/\/www.politico.com\/gallery\/a-look-inside-the-white-house",
+ "about": [{"name": "White House"}], "isFamilyFriendly": true, "displayUrl":
+ "https:\/\/www.politico.com\/gallery\/a-look-inside-the-white-house", "snippet":
+ "Designed by James Hoban, the White House has 132 rooms, 35 bathrooms and
+ 6 levels in the residence. This includes 412 doors, 147 windows, 28 fireplaces,
+ 8 staircases and 3 elevators.", "dateLastCrawled": "2018-08-19T21:37:00.0000000Z",
+ "language": "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17",
+ "name": "White House: Government News, Videos & Updates - NBC News", "url":
+ "https:\/\/www.nbcnews.com\/politics\/white-house", "isFamilyFriendly": true,
+ "displayUrl": "https:\/\/www.nbcnews.com\/politics\/white-house", "snippet":
+ "Find the latest White House news, videos and photos on http:\/\/www.nbcnews.com.
+ Read headlines covering White House statements, releases, conferences &
+ more.", "dateLastCrawled": "2018-08-22T15:07:00.0000000Z", "language": "en",
+ "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18",
+ "name": "The White House", "url": "https:\/\/apply.whitehouse.gov\/", "isFamilyFriendly":
+ true, "displayUrl": "https:\/\/apply.whitehouse.gov", "snippet": "Thank
+ you for your interest in serving in the Trump Administration. This website
+ is designed for applicants interested in non-career positions within the Trump
+ Administration.", "dateLastCrawled": "2018-08-23T06:17:00.0000000Z", "language":
+ "en", "isNavigational": false}, {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19",
+ "name": "White House | Fox News", "url": "http:\/\/www.foxnews.com\/category\/politics\/executive\/white-house.html",
+ "isFamilyFriendly": true, "displayUrl": "www.foxnews.com\/category\/politics\/executive\/white-house.html",
+ "snippet": "White House stories and articles from Fox News Politics", "dateLastCrawled":
+ "2018-08-21T02:45:00.0000000Z", "language": "en", "isNavigational": false}]},
+ "rankingResponse": {"mainline": {"items": [{"answerType": "WebPages", "resultIndex":
+ 0, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.0"}},
+ {"answerType": "WebPages", "resultIndex": 1, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.1"}},
+ {"answerType": "WebPages", "resultIndex": 2, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.2"}},
+ {"answerType": "WebPages", "resultIndex": 3, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.3"}},
+ {"answerType": "WebPages", "resultIndex": 4, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.4"}},
+ {"answerType": "WebPages", "resultIndex": 5, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.5"}},
+ {"answerType": "WebPages", "resultIndex": 6, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.6"}},
+ {"answerType": "WebPages", "resultIndex": 7, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.7"}},
+ {"answerType": "WebPages", "resultIndex": 8, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.8"}},
+ {"answerType": "WebPages", "resultIndex": 9, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.9"}},
+ {"answerType": "WebPages", "resultIndex": 10, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.10"}},
+ {"answerType": "WebPages", "resultIndex": 11, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.11"}},
+ {"answerType": "WebPages", "resultIndex": 12, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.12"}},
+ {"answerType": "WebPages", "resultIndex": 13, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.13"}},
+ {"answerType": "WebPages", "resultIndex": 14, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.14"}},
+ {"answerType": "WebPages", "resultIndex": 15, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.15"}},
+ {"answerType": "WebPages", "resultIndex": 16, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.16"}},
+ {"answerType": "WebPages", "resultIndex": 17, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.17"}},
+ {"answerType": "WebPages", "resultIndex": 18, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.18"}},
+ {"answerType": "WebPages", "resultIndex": 19, "value": {"id": "https:\/\/api.cognitive.microsoft.com\/api\/v7\/#WebPages.19"}}]}}}'
+ http_version:
+ recorded_at: Fri, 31 Aug 2018 20:58:08 GMT
+recorded_with: VCR 4.0.0
diff --git a/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml
new file mode 100644
index 0000000000..49d4999e7a
--- /dev/null
+++ b/spec/vcr_cassettes/bing_v7_web_search/behaves_like_a_web_search_engine_execute_query_when_spanish_locale_is_specified.yml
@@ -0,0 +1,233 @@
+---
+http_interactions:
+- request:
+ method: get
+ uri: https://api.cognitive.microsoft.com/bing/v7.0/search?count=20&mkt=en-US&offset=0&q=casa%20blanca&responseFilter=WebPages&safeSearch=moderate&textDecorations=false&traffictype=test
+ body:
+ encoding: US-ASCII
+ string: ''
+ headers:
+ User-Agent:
+ - USASearch
+ Ocp-Apim-Subscription-Key:
+ - "