From f368c3fbef5af1a1270d7a9a8ba4bb2ab719994a Mon Sep 17 00:00:00 2001 From: Jing He Date: Thu, 7 Dec 2017 01:37:01 -0800 Subject: [PATCH 1/3] suppress _type error, fix 'OBJECT_ADDITIONAL_PROPERTIES' error, add required parameters --- .../data-plane/NewsSearch/readme.md | 9 + .../NewsSearch/v1.0/NewsSearch.json | 160 ++++++++++-------- .../SuccessfulNewsCategoryRequest.json | 95 +---------- .../examples/SuccessfulNewsSearchRequest.json | 153 +---------------- .../SuccessfulNewsTrendingRequest.json | 11 +- 5 files changed, 125 insertions(+), 303 deletions(-) diff --git a/specification/cognitiveservices/data-plane/NewsSearch/readme.md b/specification/cognitiveservices/data-plane/NewsSearch/readme.md index 8da1dff1fde9..4017e1b4c0fa 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/readme.md +++ b/specification/cognitiveservices/data-plane/NewsSearch/readme.md @@ -21,6 +21,15 @@ These settings apply only when `--tag=release_1_0` is specified on the command l input-file: v1.0/NewsSearch.json ``` +## Suppressions + +Suppressing errors due to API design: +``` yaml +directive: + - suppress: R3016 + reason: _type is a polymorphic discriminator that can't be changed. +``` + ## CSharp Settings These settings apply only when `--csharp` is specified on the command line. ``` yaml $(csharp) diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json index abf577cd6fea..4ce9b52227e6 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json @@ -643,6 +643,7 @@ } }, "SearchResultsAnswer": { + "description": "Defines a search result answer.", "allOf": [ { "$ref": "#/definitions/Answer" @@ -714,6 +715,7 @@ } }, "Answer": { + "description": "Defines an answer.", "allOf": [ { "$ref": "#/definitions/Response" @@ -747,6 +749,7 @@ } }, "Thing": { + "description": "Defines a thing.", "allOf": [ { "$ref": "#/definitions/Response" @@ -765,6 +768,7 @@ "type": "string" }, "image": { + "description": "An image of the item.", "$ref": "#/definitions/ImageObject", "readOnly": true }, @@ -789,6 +793,7 @@ "type": "string" }, "alternateName": { + "description": "An alias for the item", "readOnly": true, "type": "string" }, @@ -829,10 +834,12 @@ "type": "string" }, "searchLink": { + "description": "The URL that you use to get the results of the related search. Before using the URL, you must append query parameters as appropriate and include the Ocp-Apim-Subscription-Key header. Use this URL if you're displaying the results in your own user interface. Otherwise, use the webSearchUrl URL.", "readOnly": true, "type": "string" }, "thumbnail": { + "description": "The URL to a thumbnail of a related image.", "$ref": "#/definitions/ImageObject", "readOnly": true } @@ -874,75 +881,8 @@ } } }, - "ImageObject": { - "description": "Defines an image", - "allOf": [ - { - "$ref": "#/definitions/MediaObject" - } - ], - "type": "object", - "properties": { - "thumbnail": { - "description": "The URL to a thumbnail of the image", - "$ref": "#/definitions/ImageObject", - "readOnly": true - } - } - }, - "VideoObject": { - "description": "Defines a video object that is relevant to the query.", - "allOf": [ - { - "$ref": "#/definitions/MediaObject" - } - ], - "type": "object", - "properties": { - "motionThumbnailUrl": { - "readOnly": true, - "type": "string" - }, - "motionThumbnailId": { - "readOnly": true, - "type": "string" - }, - "embedHtml": { - "readOnly": true, - "type": "string" - }, - "allowHttpsEmbed": { - "readOnly": true, - "type": "boolean" - }, - "viewCount": { - "readOnly": true, - "type": "integer", - "format": "int32" - }, - "thumbnail": { - "$ref": "#/definitions/ImageObject", - "readOnly": true - }, - "videoId": { - "readOnly": true, - "type": "string" - }, - "allowMobileEmbed": { - "readOnly": true, - "type": "boolean" - }, - "isSuperfresh": { - "readOnly": true, - "type": "boolean" - }, - "isFromVerifiedSource": { - "readOnly": true, - "type": "boolean" - } - } - }, "CreativeWork": { + "description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.", "allOf": [ { "$ref": "#/definitions/Thing" @@ -963,16 +903,38 @@ "$ref": "#/definitions/Thing" } }, - "datePublished": { - "readOnly": true, - "type": "string" - }, "video": { "$ref": "#/definitions/VideoObject", "readOnly": true } } }, + "Organization": { + "description": "Defines an organization.", + "allOf": [ + { + "$ref": "#/definitions/Thing" + } + ], + "type": "object", + "properties": {} + }, + "ImageObject": { + "description": "Defines an image", + "allOf": [ + { + "$ref": "#/definitions/MediaObject" + } + ], + "type": "object", + "properties": { + "thumbnail": { + "description": "The URL to a thumbnail of the image", + "$ref": "#/definitions/ImageObject", + "readOnly": true + } + } + }, "Identifiable": { "description": "Defines the identity of a resource.", "allOf": [ @@ -1011,6 +973,7 @@ } }, "MediaObject": { + "description": "Defines a media object.", "allOf": [ { "$ref": "#/definitions/CreativeWork" @@ -1037,7 +1000,60 @@ } } }, + "VideoObject": { + "description": "Defines a video object that is relevant to the query.", + "allOf": [ + { + "$ref": "#/definitions/MediaObject" + } + ], + "type": "object", + "properties": { + "motionThumbnailUrl": { + "readOnly": true, + "type": "string" + }, + "motionThumbnailId": { + "readOnly": true, + "type": "string" + }, + "embedHtml": { + "readOnly": true, + "type": "string" + }, + "allowHttpsEmbed": { + "readOnly": true, + "type": "boolean" + }, + "viewCount": { + "readOnly": true, + "type": "integer", + "format": "int32" + }, + "thumbnail": { + "$ref": "#/definitions/ImageObject", + "readOnly": true + }, + "videoId": { + "readOnly": true, + "type": "string" + }, + "allowMobileEmbed": { + "readOnly": true, + "type": "boolean" + }, + "isSuperfresh": { + "readOnly": true, + "type": "boolean" + }, + "isFromVerifiedSource": { + "readOnly": true, + "type": "boolean" + } + } + }, "ResponseBase": { + "description": "Response base", "discriminator": "_type", "type": "object", "required": [ diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json index 76432b316489..f64c98869cc5 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json @@ -1,6 +1,15 @@ { "parameters": { + "X-BingApis-SDK": "true", + "Accept": "application/json", + "Accept-language": "en-us", + "User-Agent": "{User Agent}", + "X-MSEdge-ClientID": "{Client ID}", "Ocp-Apim-Subscription-Key": "{API key}", + "mkt": "en-us", + "X-MS-EdgeClientIP": "{IP AddresS}", + "cc": "US", + "setLang": "en", "category": "sports" }, "responses": { @@ -20,15 +29,6 @@ } }, "description": "The sixth question on the same subject pushed Fred Hoiberg over the edge. “Guys, I’m going to try to get our guys ready to play a game,” the Bulls coach said Tuesday. Until Nikola Mirotic speaks to Bobby Portis — or at least to reporters to ...", - "mentions": [{ - "name": "Drama" - }, - { - "name": "Chicago Bulls" - }, - { - "name": "Chicago Tribune" - }], "provider": [{ "_type": "Organization", "name": "Chicago Tribune", @@ -52,18 +52,6 @@ } }, "description": "The ratings for NBC’s Sunday Night Football broadcasts are down 8 percent compared to last year. And while there are several explanations for the decline (i.e. cord cutting), NFL player protests of racial injustice during the national anthem continue to ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/1a466af2-ed23-25bd-794d-1ca925e4681b", - "name": "Donald Trump" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/6ff32734-2ab0-2636-a1b0-1e2f5e94a701", - "name": "National Football League" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/dbb61ff3-70d1-5bbc-413e-df42fe9df584", - "name": "Al Michaels" - }], "provider": [{ "_type": "Organization", "name": "USA Today Sports For The Win", @@ -87,14 +75,6 @@ } }, "description": "Dallas Cowboys owner Jerry Jones has asked for a special league meeting with NFL owners to talk about commissioner Roger Goodell's contract extension negotiations, but an ownership source told ESPN's Jim Trotter that owners currently have no plans to act ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/33439da6-0545-b651-15f5-f3a8b007240c", - "name": "Jerry Jones" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/b645d3e7-4b03-4365-8a16-75d265181b18", - "name": "Request" - }], "provider": [{ "_type": "Organization", "name": "ABC News", @@ -118,10 +98,6 @@ } }, "description": "WICHITA, Kan. — A Muslim student athlete who refused to observe the national anthem for religious reasons at a basketball game in Kansas has been kicked off the team following altercations with a team supporter, who accused him of disrespecting the ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/8231ebfb-792a-2552-d196-10f0a93a4cfd", - "name": "Muslim" - }], "provider": [{ "_type": "Organization", "name": "New York Daily News", @@ -145,10 +121,6 @@ } }, "description": "Paul, a nine-time All-Star point guard who pushed for a trade from the? LA Clippers?to the Rockets during the offseason, was spectacular in his return after missing almost a month because of a bruised left knee. He registered a double-double in 21 minutes ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/7d8e70ed-a4a0-ec57-9b13-1cbbea07e6e2", - "name": "Chris Paul" - }], "provider": [{ "_type": "Organization", "name": "ABC News", @@ -172,18 +144,6 @@ } }, "description": "LOS ANGELES (AP) — Zdeno Chara scored the tiebreaking goal in the second period and the Boston Bruins made it stand up for a 2-1 victory over the Los Angeles Kings that snapped a four-game losing streak Thursday night. Charlie McAvoy also scored for the ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/424dcc23-810f-1f93-5c6c-084ec2611bd5", - "name": "Brooklyn" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/634a88a0-b2eb-ffea-10d9-0c68b9ecf8f2", - "name": "Zdeno Chára" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/7372c7cf-eeed-88a9-0522-63e96eaf6448", - "name": "Boston Bruins" - }], "provider": [{ "_type": "Organization", "name": "New York Daily News", @@ -207,18 +167,6 @@ } }, "description": "WarGames, one of the most beloved and unique match types in professional wrestling, will make its long-awaited return this Saturday after nearly two decades. At NXT TakeOver: WarGames, three teams of three men will battle inside an enormous cage across two ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/72d14e0a-53b3-d084-ceb3-1c597749c900", - "name": "Shawn Michaels" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/df84763e-bf8a-2739-147a-3e0d69505667", - "name": "Triple H" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/4d25a587-16dc-40ed-edb7-566423039ff7", - "name": "WWE NXT" - }], "provider": [{ "_type": "Organization", "name": "USA Today Sports For The Win", @@ -242,19 +190,6 @@ } }, "description": "The Blackhawks have a new pregame tradition. Every time they play at home after a loss, the first song they skate to in warmups is Big Sean's \"Bounce Back,\" which contains the hook, \"Last night took an 'L' but tonight I bounce back.\" An \"L'' isn't a train ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/dd6e2646-05a1-687e-d6ee-53f418d60c68", - "name": "Artem Anisimov" - }], - "mentions": [{ - "name": "Artem Anisimov" - }, - { - "name": "New York Rangers" - }, - { - "name": "Hat-trick" - }], "provider": [{ "_type": "Organization", "name": "Chicago Tribune", @@ -301,18 +236,6 @@ } }, "description": "The Raiders and Patriots will be playing in Mexico City this Sunday and the two teams have opted for different ways of preparing for the game. The Raiders are practicing in Oakland and are treating the game similarly to other road trips while the Patriots ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/0161b0c4-1fa6-668d-84d5-9d83c840cc4f", - "name": "Jack Del Rio" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/f1281260-8340-e258-c8ec-3522504400e5", - "name": "Mexico City" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/9e8fd723-f5c4-052c-ca0f-654762e9f69c", - "name": "Altitude" - }], "provider": [{ "_type": "Organization", "name": "NBCSports.com", diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json index 8e35dd17569c..3f360b0b099d 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json @@ -1,6 +1,15 @@ { "parameters": { "Ocp-Apim-Subscription-Key": "{API key}", + "X-BingApis-SDK": "true", + "Accept": "application/json", + "Accept-language": "en-us", + "User-Agent": "{User Agent}", + "X-MSEdge-ClientID": "{Client ID}", + "mkt": "en-us", + "X-MS-EdgeClientIP": "{IP AddresS}", + "cc": "US", + "setLang": "en", "q": "microsoft" }, "responses": { @@ -8,35 +17,18 @@ "headers": {}, "body": { "_type": "News", - "readLink": "https://api.cognitive.microsoft.com/api/v7/news/search?q=microsoft", "totalEstimatedMatches": 46, "value": [{ - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/5715dc67-2d49-b1da-0ce1-0bb809fa81a9", - "name": "Surface Pro" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/d3cf09a9-76dd-973e-2179-47f7f24c5e37", - "name": "Microsoft Surface" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft" - }], "provider": [{ "_type": "Organization", "name": "ZDNet" }], "datePublished": "2017-11-16T14:15:00Z", - "clusteredArticles": null, - "mentions": null, - "video": null, "category": "ScienceAndTechnology", "name": "Surface Book 2 (15-inch): Microsoft supersizes its most powerful portable PC", "url": "http://www.zdnet.com/product/microsoft-surface-book-2/", "description": "Don't call it Surface Pro 5. The latest iteration of the Surface Pro loses the model number, keeps the kickstand, and adds mostly subtle refinements. Read More For the past five days, I've been using a Surface Book 2 in place of my everyday PC, a first ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.2999B2897A4DDA4521794EF81A17C1FD&pid=News", "width": 700, @@ -45,39 +37,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/446bb4df-4999-4243-84c0-74e0f6c60e75", - "name": "Xbox One" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/35e7fb69-6f60-8231-904d-9d4b2634bd2a", - "name": "Gift" - }], "provider": [{ "_type": "Organization", "name": "Forbes" }], "datePublished": "2017-11-17T06:21:00Z", - "clusteredArticles": null, - "mentions": [{ - "name": "Xbox One" - }, - { - "name": "Microsoft" - }, - { - "name": "Gift" - }], "video": { "name": "Microsoft Introduces Xbox One Game Gifting In Time For Holidays; Here's How You Do It", "thumbnailUrl": "https://www.bing.com/th?id=ON.C95779401735E2FCAF281C0F1DB8487C&pid=News", "allowHttpsEmbed": false, "thumbnail": { - "contentUrl": null, "width": 480, "height": 324 } @@ -87,7 +56,6 @@ "url": "https://www.forbes.com/sites/brianmazique/2017/11/14/microsoft-introduces-xbox-one-game-gifting-in-time-for-holidays-heres-how-you-do-it/", "description": "On Monday, Microsoft began allowing users to gift Xbox One games to anyone on their friends list or to whom they have an email address. The feature was available to Xbox insiders prior to the overall release this week. This functionality comes through to ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.304224629654E4FDD3B8FB153DE20B9F&pid=News", "width": 700, @@ -96,35 +64,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/d3cf09a9-76dd-973e-2179-47f7f24c5e37", - "name": "Microsoft Surface" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/5715dc67-2d49-b1da-0ce1-0bb809fa81a9", - "name": "Surface Pro" - }], "provider": [{ "_type": "Organization", "name": "CNET" }], "datePublished": "2017-11-17T06:13:00Z", - "clusteredArticles": null, - "mentions": [{ - "name": "Microsoft Surface" - }, - { - "name": "Surface Pro" - }, - { - "name": "CNET" - }], "video": { "name": "Microsoft Surface Book 2 (15-inch)", "thumbnailUrl": "https://www.bing.com/th?id=ON.C362047C8A293C48E4DBF9FCF1C99DD2&pid=News", "allowHttpsEmbed": true, "thumbnail": { - "contentUrl": null, "width": 480, "height": 269 } @@ -134,7 +83,6 @@ "url": "https://www.cnet.com/products/microsoft-surface-book-2/review/", "description": "Microsoft Surface Book 2 - 15" - Core i7 8650U - 16 GB RAM - 512 GB SSD - English - North America fux00001 $2,899.00 Microsoft Surface Book 2 - 15" - Core i7 8650U - 16 GB RAM - 256 GB SSD - English - North America hnr00001 $2,499.00 Microsoft Surface Book ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.4A5C3F257DA120C0D7778A4A764A0292&pid=News", "width": 700, @@ -143,28 +91,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/9d9c40a9-f255-fc05-ea48-3c7685363661", - "name": "Computerworld" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/507e27aa-24fb-9b98-1e76-45f59043d1e6", - "name": "Romanian months" - }], "provider": [{ "_type": "Organization", "name": "Computer World" }], "datePublished": "2017-11-16T19:33:00Z", - "clusteredArticles": null, - "mentions": null, - "video": null, "category": "ScienceAndTechnology", "name": "Microsoft grants enterprises 6 more months of support for Windows 10 1511", "url": "https://www.computerworld.com/article/3237667/microsoft-windows/microsoft-grants-enterprises-6-more-months-of-support-for-windows-10-1511.html", "description": "Microsoft has reversed the retirement of Windows 10 version 1511, extending support for the 2015 feature upgrade by six months for commercial customers. "To help some early enterprise adopters that are still finishing their transition to Windows as a ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.CF1173A352F3A398B18F9C2BF8B23BC7&pid=News", "width": 700, @@ -173,28 +109,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/16aeb6d9-9098-0a40-4970-8e46a4fcee12", - "name": "Microsoft Windows" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft" - }], "provider": [{ "_type": "Organization", "name": "VentureBeat" }], "datePublished": "2017-11-16T20:23:00Z", - "clusteredArticles": null, - "mentions": null, - "video": null, "category": "ScienceAndTechnology", "name": "Microsoft releases new Windows 10 preview with settings and input improvements", "url": "https://venturebeat.com/2017/11/16/microsoft-releases-new-windows-10-preview-with-settings-and-input-improvements/", "description": "Microsoft today released a new Windows 10 preview for PCs with settings and input improvements. This build is part of the RS4 branch, which represents the next Windows 10 update the company has yet to announce. Windows 10 is a service, meaning it was built ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.56897A0CE9509506FEF503C83461DD9D&pid=News", "width": 578, @@ -203,24 +127,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft" - }], "provider": [{ "_type": "Organization", "name": "GeekWire" }], "datePublished": "2017-11-17T03:54:00Z", - "clusteredArticles": null, - "mentions": null, - "video": null, "category": "ScienceAndTechnology", "name": "Amazon Web Services backs deep-learning format introduced by Microsoft and Facebook", "url": "https://www.geekwire.com/2017/amazon-web-services-backs-deep-learning-format-introduced-microsoft-facebook/", "description": "The Open Neural Network Exchange (ONNX) deep-learning format, introduced in September by Microsoft and Facebook, has a new backer following Amazon Web Services’ decision to embrace the framework with a new open-source project. Advanced research into deep ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.9C8143D80E80303CE8C640F4E3DDEB3E&pid=News", "width": 630, @@ -229,32 +145,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/bb4c6305-a048-2324-503c-0b84a3ff94b6", - "name": "Boulder Dash: Rocks!" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/0a3092b7-40c1-99e3-6a99-2cff0bf3c89b", - "name": "EDGE" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a012213e-f970-bbc0-9652-57a07be959fd", - "name": "PC Magazine" - }], "provider": [{ "_type": "Organization", "name": "PC Magazine" }], "datePublished": "2017-11-17T04:27:00Z", - "clusteredArticles": null, - "mentions": null, - "video": null, "category": "ScienceAndTechnology", "name": "12 Reasons Microsoft's Edge Browser Rocks (No, Really)", "url": "https://www.pcmag.com/feature/357262/12-reasons-microsoft-s-edge-browser-rocks-no-really", "description": "At just two years old, Edge is the new kid on the web browser block, but what it lacks in maturity, it makes up for in speed and convenience. Development has been swift. With each major Windows 10 release, Edge improves. Windows 10 Fall Creators Update ...", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.D6CC6169ECD49465AACCC1327B37283E&pid=News", "width": 700, @@ -263,10 +163,6 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/d3cf09a9-76dd-973e-2179-47f7f24c5e37", - "name": "Microsoft Surface" - }], "provider": [{ "_type": "Organization", "name": "Business Insider" @@ -276,10 +172,6 @@ "name": "REVIEW: Microsoft's newest laptop is my new favorite computer (MSFT)", "url": "https://www.msn.com/en-us/money/other/review-microsofts-newest-laptop-is-my-new-favorite-computer-msft/ar-BBF2svf", "description": "It may have been the company's first-ever laptop, but when I tested it last year a few months after it debuted, I immediately liked it better than any of Apple's MacBooks that I'd ever used. I now have a new favorite computer, and it's the successor to my ...", - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft" - }], "provider": [{ "_type": "Organization", "name": "Business Insider on MSN.com" @@ -287,22 +179,11 @@ "datePublished": "2017-11-17T01:59:00Z", "category": "ScienceAndTechnology" }], - "mentions": [{ - "name": "Microsoft Surface" - }, - { - "name": "Business Insider" - }, - { - "name": "USB" - }], - "video": null, "category": "ScienceAndTechnology", "name": "REVIEW: Microsoft's newest laptop is a powerful alternative to any of Apple's MacBooks or iPads", "url": "http://www.businessinsider.com/microsoft-surface-book-2-review-2017-11", "description": "Microsoft's original Surface Book was my favorite computer. It may have been the company's first-ever laptop, but when I tested it last year a few months after it debuted, I immediately liked it better than any of Apple's MacBooks that I'd ever used.", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.7CEEFC996C222EA79BC65ABFE9356D63&pid=News", "width": 700, @@ -311,32 +192,16 @@ } }, { - "about": [{ - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/16aeb6d9-9098-0a40-4970-8e46a4fcee12", - "name": "Microsoft Windows" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft" - }, - { - "readLink": "https://api.cognitive.microsoft.com/api/v7/entities/fd31547a-9016-4940-b644-78988670c18a", - "name": "Build" - }], "provider": [{ "_type": "Organization", "name": "Beta News" }], "datePublished": "2017-11-16T19:14:00Z", - "clusteredArticles": null, - "mentions": null, - "video": null, "category": "ScienceAndTechnology", "name": "Microsoft releases Windows 10 Redstone 4 Build 17040 to the Fast ring", "url": "https://betanews.com/2017/11/16/microsoft-releases-windows-10-redstone-4-build-17040-to-the-fast-ring/", "description": "Last week, Microsoft rolled out Windows 10 Insider Build 17035 to users on the Fast ring (and Skip Ahead), but didn’t make it available to all. A bug affecting PCs with AMD processors meant that Microsoft was forced to block the new release on those systems.", "image": { - "contentUrl": null, "thumbnail": { "contentUrl": "https://www.bing.com/th?id=ON.D1C9A537128B5BA72C3D72F53727CE1E&pid=News", "width": 640, diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json index 6c94f95a45a5..71caa71c8b6d 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json @@ -1,6 +1,15 @@ { "parameters": { - "Ocp-Apim-Subscription-Key": "{API key}" + "Ocp-Apim-Subscription-Key": "{API key}", + "X-BingApis-SDK": "true", + "Accept": "application/json", + "Accept-language": "en-us", + "User-Agent": "{User Agent}", + "X-MSEdge-ClientID": "{Client ID}", + "mkt": "en-us", + "X-MS-EdgeClientIP": "{IP AddresS}", + "cc": "US", + "setLang": "en" }, "responses": { "200": { From 403d68dd31d296f68de7044fd773d37a58abb428 Mon Sep 17 00:00:00 2001 From: Jing He Date: Thu, 7 Dec 2017 21:30:03 -0800 Subject: [PATCH 2/3] Add datePublished property back --- .../data-plane/NewsSearch/v1.0/NewsSearch.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json index 4ce9b52227e6..78e3c2645366 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/NewsSearch.json @@ -903,6 +903,11 @@ "$ref": "#/definitions/Thing" } }, + "datePublished": { + "description": "The date on which the CreativeWork was published.", + "readOnly": true, + "type": "string" + }, "video": { "$ref": "#/definitions/VideoObject", "readOnly": true From e8f7a6dd60a326bc061655a4fe01403dc0312d99 Mon Sep 17 00:00:00 2001 From: Jing He Date: Thu, 7 Dec 2017 22:44:23 -0800 Subject: [PATCH 3/3] Add _type value in examples --- .../SuccessfulNewsCategoryRequest.json | 176 +----- .../examples/SuccessfulNewsSearchRequest.json | 121 +--- .../SuccessfulNewsTrendingRequest.json | 554 +----------------- 3 files changed, 39 insertions(+), 812 deletions(-) diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json index f64c98869cc5..4a7f19dd2c69 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsCategoryRequest.json @@ -19,10 +19,13 @@ "_type": "News", "webSearchUrl": "https://www.bing.com/news/search?q=sports+news&form=TNSA02", "value": [{ + "_type": "NewsArticle", "name": "'It’s a very difficult situation:' Bulls try to focus as Nikola Mirotic-Bobby Portis drama continues", "url": "http://www.chicagotribune.com/sports/basketball/bulls/ct-spt-bulls-nikola-mirotic-bobby-portis-fallout-20171115-story.html", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.372546C0684230BBFABBE735B0D85E0E&pid=News", "width": 700, "height": 393 @@ -33,7 +36,9 @@ "_type": "Organization", "name": "Chicago Tribune", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.SIR111219528389e4ac0552cd50a9f07f86e23462e7&pid=News" } } @@ -42,10 +47,13 @@ "category": "Sports" }, { + "_type": "NewsArticle", "name": "Al Michaels: Player protests and Donald Trump contributed to NFL ratings decline", "url": "http://ftw.usatoday.com/2017/11/al-michaels-nbc-nfl-ratings-sunday-night-football-player-protests-donald-trump-decline", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.C88D0D1DA5DB60A88B6E2062EC498ACE&pid=News", "width": 700, "height": 393 @@ -56,7 +64,9 @@ "_type": "Organization", "name": "USA Today Sports For The Win", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.SIR111219423d8564095bc699fb54aa46bd19819288&pid=News" } } @@ -65,10 +75,13 @@ "category": "Sports" }, { + "_type": "NewsArticle", "name": "Source: Owners don't plan to act on Jerry Jones' sit-down request", "url": "http://abcnews.go.com/Sports/source-owners-plan-act-jerry-jones-sit-request/story?id=51210517", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.0D5611D738B0DE113E9EE80CC2A26BDD&pid=News", "width": 576, "height": 324 @@ -79,174 +92,15 @@ "_type": "Organization", "name": "ABC News", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.SIR11122011f8b32789f686c3f36f3ef26bff413db4&pid=News" } } }], "datePublished": "2017-11-17T00:35:00.0000000Z", "category": "Sports" - }, - { - "name": "Muslim student: I was kicked off college team over anthem protest", - "url": "http://www.nydailynews.com/sports/college/muslim-student-kicked-college-team-anthem-protest-article-1.3637516", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.5AD03C6B036EF4A989789A8F93EF9877&pid=News", - "width": 700, - "height": 466 - } - }, - "description": "WICHITA, Kan. — A Muslim student athlete who refused to observe the national anthem for religious reasons at a basketball game in Kansas has been kicked off the team following altercations with a team supporter, who accused him of disrespecting the ...", - "provider": [{ - "_type": "Organization", - "name": "New York Daily News", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR11122135ed5f1c72c3acd232a7cb1d4bde4318b0&pid=News" - } - } - }], - "datePublished": "2017-11-16T23:40:00.0000000Z", - "category": "Sports" - }, - { - "name": "Chris Paul returns as Rockets score franchise-record 90 points in half", - "url": "http://abcnews.go.com/Sports/chris-paul-returns-rockets-score-franchise-record-90/story?id=51215694", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.976ACACFB8B74E58CAAB18AE1E549693&pid=News", - "width": 576, - "height": 324 - } - }, - "description": "Paul, a nine-time All-Star point guard who pushed for a trade from the? LA Clippers?to the Rockets during the offseason, was spectacular in his return after missing almost a month because of a bruised left knee. He registered a double-double in 21 minutes ...", - "provider": [{ - "_type": "Organization", - "name": "ABC News", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR11122011f8b32789f686c3f36f3ef26bff413db4&pid=News" - } - } - }], - "datePublished": "2017-11-17T05:48:00.0000000Z", - "category": "Sports" - }, - { - "name": "Bruins make Chara's goal hold up for 2-1 win over Kings", - "url": "http://www.nydailynews.com/newswires/sports/bruins-chara-goal-hold-2-1-win-kings-article-1.3639017", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.0203C9D5682BA3C27E5B94F6DC29C57C&pid=News", - "width": 700, - "height": 464 - } - }, - "description": "LOS ANGELES (AP) — Zdeno Chara scored the tiebreaking goal in the second period and the Boston Bruins made it stand up for a 2-1 victory over the Los Angeles Kings that snapped a four-game losing streak Thursday night. Charlie McAvoy also scored for the ...", - "provider": [{ - "_type": "Organization", - "name": "New York Daily News", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR11122135ed5f1c72c3acd232a7cb1d4bde4318b0&pid=News" - } - } - }], - "datePublished": "2017-11-17T05:52:00.0000000Z", - "category": "Sports" - }, - { - "name": "Triple H opens up on the return of WarGames and why Shawn Michaels went 'all in' on NXT", - "url": "http://ftw.usatoday.com/2017/11/triple-h-nxt-wargames-return-shawn-michaels-survivor-series", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.ED2572CB1B2A43B8C9665FB6DCA4CB8D&pid=News", - "width": 700, - "height": 381 - } - }, - "description": "WarGames, one of the most beloved and unique match types in professional wrestling, will make its long-awaited return this Saturday after nearly two decades. At NXT TakeOver: WarGames, three teams of three men will battle inside an enormous cage across two ...", - "provider": [{ - "_type": "Organization", - "name": "USA Today Sports For The Win", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR111219423d8564095bc699fb54aa46bd19819288&pid=News" - } - } - }], - "datePublished": "2017-11-16T10:39:00.0000000Z", - "category": "Sports" - }, - { - "name": "Artem Anisimov scores hat trick vs. his former team, the Rangers: 'It means more'", - "url": "http://www.chicagotribune.com/sports/hockey/blackhawks/ct-blackhawks-rangers-spt-1116-20171115-story.html", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.3B86EDCC938EA3263D2E71E6E0D0BB8B&pid=News", - "width": 657, - "height": 700 - } - }, - "description": "The Blackhawks have a new pregame tradition. Every time they play at home after a loss, the first song they skate to in warmups is Big Sean's \"Bounce Back,\" which contains the hook, \"Last night took an 'L' but tonight I bounce back.\" An \"L'' isn't a train ...", - "provider": [{ - "_type": "Organization", - "name": "Chicago Tribune", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR111219528389e4ac0552cd50a9f07f86e23462e7&pid=News" - } - } - }], - "datePublished": "2017-11-17T07:19:00.0000000Z", - "category": "Sports" - }, - { - "name": "A’s trade young slugger Ryon Healy to Seattle Mariners", - "url": "http://www.mercurynews.com/2017/11/15/as-trade-young-slugger-to-seattle-mariners/", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.1A443999EED9A20B2DE21C58495F29DD&pid=News", - "width": 700, - "height": 466 - } - }, - "description": "“From the A’s perspective, it’s almost a sign of strength. They can finally trade from depth.” – @Ken_Rosenthal on #MLBNHotStove pic.twitter.com/ZKN7kpNEjl — MLB Network (@MLBNetwork) November 16, 2017 The A’s have struck with the first big ...", - "provider": [{ - "_type": "Organization", - "name": "mercurynews.com", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR11122236daa336bcf51140b27fed54643156c169&pid=News" - } - } - }], - "datePublished": "2017-11-17T07:13:00.0000000Z", - "category": "Sports" - }, - { - "name": "Jack Del Rio on Mexico City altitude: Preparing in Oakland makes sense for us", - "url": "http://profootballtalk.nbcsports.com/2017/11/16/jack-del-rio-on-mexico-city-altitude-preparing-in-oakland-makes-sense-for-us/", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.7239F55812230B171087C6CE159A30A0&pid=News", - "width": 563, - "height": 391 - } - }, - "description": "The Raiders and Patriots will be playing in Mexico City this Sunday and the two teams have opted for different ways of preparing for the game. The Raiders are practicing in Oakland and are treating the game similarly to other road trips while the Patriots ...", - "provider": [{ - "_type": "Organization", - "name": "NBCSports.com", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.SIR11121901e6fc6bd41cddbe1477fedf07544a4f4d&pid=News" - } - } - }], - "datePublished": "2017-11-16T16:02:00.0000000Z", - "category": "Sports" }] } } diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json index 3f360b0b099d..49ef9a4cbc83 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsSearchRequest.json @@ -19,6 +19,7 @@ "_type": "News", "totalEstimatedMatches": 46, "value": [{ + "_type": "NewsArticle", "provider": [{ "_type": "Organization", "name": "ZDNet" @@ -27,53 +28,22 @@ "category": "ScienceAndTechnology", "name": "Surface Book 2 (15-inch): Microsoft supersizes its most powerful portable PC", "url": "http://www.zdnet.com/product/microsoft-surface-book-2/", - "description": "Don't call it Surface Pro 5. The latest iteration of the Surface Pro loses the model number, keeps the kickstand, and adds mostly subtle refinements. Read More For the past five days, I've been using a Surface Book 2 in place of my everyday PC, a first ...", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.2999B2897A4DDA4521794EF81A17C1FD&pid=News", - "width": 700, - "height": 393 - } - } - }, - { - "provider": [{ - "_type": "Organization", - "name": "Forbes" - }], - "datePublished": "2017-11-17T06:21:00Z", - "video": { - "name": "Microsoft Introduces Xbox One Game Gifting In Time For Holidays; Here's How You Do It", - "thumbnailUrl": "https://www.bing.com/th?id=ON.C95779401735E2FCAF281C0F1DB8487C&pid=News", - "allowHttpsEmbed": false, - "thumbnail": { - "width": 480, - "height": 324 - } - }, - "category": "ScienceAndTechnology", - "name": "Microsoft Introduces Xbox One Game Gifting In Time For Holidays; Here's How You Do It", - "url": "https://www.forbes.com/sites/brianmazique/2017/11/14/microsoft-introduces-xbox-one-game-gifting-in-time-for-holidays-heres-how-you-do-it/", - "description": "On Monday, Microsoft began allowing users to gift Xbox One games to anyone on their friends list or to whom they have an email address. The feature was available to Xbox insiders prior to the overall release this week. This functionality comes through to ...", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.304224629654E4FDD3B8FB153DE20B9F&pid=News", - "width": 700, - "height": 466 - } - } + "description": "Don't call it Surface Pro 5. The latest iteration of the Surface Pro loses the model number, keeps the kickstand, and adds mostly subtle refinements. Read More For the past five days, I've been using a Surface Book 2 in place of my everyday PC, a first ..." }, { + "_type": "NewsArticle", "provider": [{ "_type": "Organization", "name": "CNET" }], "datePublished": "2017-11-17T06:13:00Z", "video": { + "_type": "VideoObject", "name": "Microsoft Surface Book 2 (15-inch)", "thumbnailUrl": "https://www.bing.com/th?id=ON.C362047C8A293C48E4DBF9FCF1C99DD2&pid=News", "allowHttpsEmbed": true, "thumbnail": { + "_type": "ImageObject", "width": 480, "height": 269 } @@ -83,7 +53,9 @@ "url": "https://www.cnet.com/products/microsoft-surface-book-2/review/", "description": "Microsoft Surface Book 2 - 15" - Core i7 8650U - 16 GB RAM - 512 GB SSD - English - North America fux00001 $2,899.00 Microsoft Surface Book 2 - 15" - Core i7 8650U - 16 GB RAM - 256 GB SSD - English - North America hnr00001 $2,499.00 Microsoft Surface Book ...", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.4A5C3F257DA120C0D7778A4A764A0292&pid=News", "width": 700, "height": 393 @@ -91,60 +63,7 @@ } }, { - "provider": [{ - "_type": "Organization", - "name": "Computer World" - }], - "datePublished": "2017-11-16T19:33:00Z", - "category": "ScienceAndTechnology", - "name": "Microsoft grants enterprises 6 more months of support for Windows 10 1511", - "url": "https://www.computerworld.com/article/3237667/microsoft-windows/microsoft-grants-enterprises-6-more-months-of-support-for-windows-10-1511.html", - "description": "Microsoft has reversed the retirement of Windows 10 version 1511, extending support for the 2015 feature upgrade by six months for commercial customers. "To help some early enterprise adopters that are still finishing their transition to Windows as a ...", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.CF1173A352F3A398B18F9C2BF8B23BC7&pid=News", - "width": 700, - "height": 482 - } - } - }, - { - "provider": [{ - "_type": "Organization", - "name": "VentureBeat" - }], - "datePublished": "2017-11-16T20:23:00Z", - "category": "ScienceAndTechnology", - "name": "Microsoft releases new Windows 10 preview with settings and input improvements", - "url": "https://venturebeat.com/2017/11/16/microsoft-releases-new-windows-10-preview-with-settings-and-input-improvements/", - "description": "Microsoft today released a new Windows 10 preview for PCs with settings and input improvements. This build is part of the RS4 branch, which represents the next Windows 10 update the company has yet to announce. Windows 10 is a service, meaning it was built ...", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.56897A0CE9509506FEF503C83461DD9D&pid=News", - "width": 578, - "height": 325 - } - } - }, - { - "provider": [{ - "_type": "Organization", - "name": "GeekWire" - }], - "datePublished": "2017-11-17T03:54:00Z", - "category": "ScienceAndTechnology", - "name": "Amazon Web Services backs deep-learning format introduced by Microsoft and Facebook", - "url": "https://www.geekwire.com/2017/amazon-web-services-backs-deep-learning-format-introduced-microsoft-facebook/", - "description": "The Open Neural Network Exchange (ONNX) deep-learning format, introduced in September by Microsoft and Facebook, has a new backer following Amazon Web Services’ decision to embrace the framework with a new open-source project. Advanced research into deep ...", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.9C8143D80E80303CE8C640F4E3DDEB3E&pid=News", - "width": 630, - "height": 315 - } - } - }, - { + "_type": "NewsArticle", "provider": [{ "_type": "Organization", "name": "PC Magazine" @@ -155,7 +74,9 @@ "url": "https://www.pcmag.com/feature/357262/12-reasons-microsoft-s-edge-browser-rocks-no-really", "description": "At just two years old, Edge is the new kid on the web browser block, but what it lacks in maturity, it makes up for in speed and convenience. Development has been swift. With each major Windows 10 release, Edge improves. Windows 10 Fall Creators Update ...", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.D6CC6169ECD49465AACCC1327B37283E&pid=News", "width": 700, "height": 394 @@ -163,12 +84,14 @@ } }, { + "_type": "NewsArticle", "provider": [{ "_type": "Organization", "name": "Business Insider" }], "datePublished": "2017-11-16T23:58:00Z", "clusteredArticles": [{ + "_type": "NewsArticle", "name": "REVIEW: Microsoft's newest laptop is my new favorite computer (MSFT)", "url": "https://www.msn.com/en-us/money/other/review-microsofts-newest-laptop-is-my-new-favorite-computer-msft/ar-BBF2svf", "description": "It may have been the company's first-ever laptop, but when I tested it last year a few months after it debuted, I immediately liked it better than any of Apple's MacBooks that I'd ever used. I now have a new favorite computer, and it's the successor to my ...", @@ -184,30 +107,14 @@ "url": "http://www.businessinsider.com/microsoft-surface-book-2-review-2017-11", "description": "Microsoft's original Surface Book was my favorite computer. It may have been the company's first-ever laptop, but when I tested it last year a few months after it debuted, I immediately liked it better than any of Apple's MacBooks that I'd ever used.", "image": { + "_type": "ImageObject", "thumbnail": { + "_type": "ImageObject", "contentUrl": "https://www.bing.com/th?id=ON.7CEEFC996C222EA79BC65ABFE9356D63&pid=News", "width": 700, "height": 524 } } - }, - { - "provider": [{ - "_type": "Organization", - "name": "Beta News" - }], - "datePublished": "2017-11-16T19:14:00Z", - "category": "ScienceAndTechnology", - "name": "Microsoft releases Windows 10 Redstone 4 Build 17040 to the Fast ring", - "url": "https://betanews.com/2017/11/16/microsoft-releases-windows-10-redstone-4-build-17040-to-the-fast-ring/", - "description": "Last week, Microsoft rolled out Windows 10 Insider Build 17035 to users on the Fast ring (and Skip Ahead), but didn’t make it available to all. A bug affecting PCs with AMD processors meant that Microsoft was forced to block the new release on those systems.", - "image": { - "thumbnail": { - "contentUrl": "https://www.bing.com/th?id=ON.D1C9A537128B5BA72C3D72F53727CE1E&pid=News", - "width": 640, - "height": 427 - } - } }] } } diff --git a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json index 71caa71c8b6d..5ad196b227ad 100644 --- a/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json +++ b/specification/cognitiveservices/data-plane/NewsSearch/v1.0/examples/SuccessfulNewsTrendingRequest.json @@ -17,9 +17,11 @@ "body": { "_type": "TrendingTopics", "value": [{ + "_type": "News/Topic", "webSearchUrl": "https://www.bing.com/search?q=First+marijuana+overdose&form=TNSA01&filters=tnTID%3a%22DF2B2270-F7AB-4b6d-B6C2-E6705CAC121F%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%220%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", "name": "1st fatal overdose?", "image": { + "_type": "ImageObject", "url": "https://www.bing.com/th?id=OPN.RTNews_ffDPbGlga7auVKMCVRmYdA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", "provider": [{ "_type": "Organization", @@ -33,9 +35,11 @@ "newsSearchUrl": "https://www.bing.com/news/search?q=First+marijuana+overdose&form=TNSA02&filters=tnTID%3a%22DF2B2270-F7AB-4b6d-B6C2-E6705CAC121F%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%220%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" }, { + "_type": "News/Topic", "webSearchUrl": "https://www.bing.com/search?q=Tom+Ridge&form=TNSA01&filters=tnTID%3a%22211EE3BA-A994-4533-864F-D1AA669AADE4%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%221%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", "name": "Suffers cardiac event", "image": { + "_type": "ImageObject", "url": "https://www.bing.com/th?id=OPN.RTNews_gDx8xMp4ozOfAPvxuddEdw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", "provider": [{ "_type": "Organization", @@ -49,9 +53,11 @@ "newsSearchUrl": "https://www.bing.com/news/search?q=Tom+Ridge&form=TNSA02&filters=tnTID%3a%22211EE3BA-A994-4533-864F-D1AA669AADE4%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%221%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" }, { + "_type": "News/Topic", "webSearchUrl": "https://www.bing.com/search?q=Charles+Manson+Bakersfield+still+alive&form=TNSA01&filters=tnTID%3a%22A2638A2E-154F-41d0-A306-6B20062D4494%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%222%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", "name": "Manson still alive", "image": { + "_type": "ImageObject", "url": "https://www.bing.com/th?id=OPN.RTNews_TY9fYHZVSzGqcqECHNgpyQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", "provider": [{ "_type": "Organization", @@ -65,9 +71,11 @@ "newsSearchUrl": "https://www.bing.com/news/search?q=Charles+Manson+Bakersfield+still+alive&form=TNSA02&filters=tnTID%3a%22A2638A2E-154F-41d0-A306-6B20062D4494%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%222%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" }, { + "_type": "News/Topic", "webSearchUrl": "https://www.bing.com/search?q=Koch+Brothers&form=TNSA01&filters=tnTID%3a%22178FD502-59BD-4a17-89D3-49CF96025DF0%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%223%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", "name": "Kochs backing sale", "image": { + "_type": "ImageObject", "url": "https://www.bing.com/th?id=OPN.RTNews_Vy3FSPV-k2W269NnPf7i5Q&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", "provider": [{ "_type": "Organization", @@ -81,9 +89,11 @@ "newsSearchUrl": "https://www.bing.com/news/search?q=Koch+Brothers&form=TNSA02&filters=tnTID%3a%22178FD502-59BD-4a17-89D3-49CF96025DF0%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%223%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" }, { + "_type": "News/Topic", "webSearchUrl": "https://www.bing.com/search?q=Steve+Mostyn&form=TNSA01&filters=tnTID%3a%22B105C6CD-6361-47fc-B063-7C35458B7D41%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%224%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", "name": "Democratic mega-donor", "image": { + "_type": "ImageObject", "url": "https://www.bing.com/th?id=OPN.RTNews_hE_gEJxcXVPPkBRYdra44A&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", "provider": [{ "_type": "Organization", @@ -95,550 +105,6 @@ "text": "Steve Mostyn" }, "newsSearchUrl": "https://www.bing.com/news/search?q=Steve+Mostyn&form=TNSA02&filters=tnTID%3a%22B105C6CD-6361-47fc-B063-7C35458B7D41%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%224%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Benedict+Allen+found&form=TNSA01&filters=tnTID%3a%22706A2DA7-4B5D-4f92-AA30-39926AC3D1DD%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%225%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Adventurer found", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_Lbgs8uw0ALRPwAHpqBUB4g&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Press Association Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Benedict Allen found" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Benedict+Allen+found&form=TNSA02&filters=tnTID%3a%22706A2DA7-4B5D-4f92-AA30-39926AC3D1DD%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%225%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=China+freeze-for-freeze&form=TNSA01&filters=tnTID%3a%22CEA27856-7CD6-43c6-BD34-73F6385EA8C9%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%226%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Freeze-for-freeze", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_G-IiIVe2z5YjoUXO7E_S_Q&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Andy Wong/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "China freeze-for-freeze" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=China+freeze-for-freeze&form=TNSA02&filters=tnTID%3a%22CEA27856-7CD6-43c6-BD34-73F6385EA8C9%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%226%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Kevin+Spacey+Old+Vic&form=TNSA01&filters=tnTID%3a%2292756286-3B76-4584-A5A6-064CF7E92724%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%227%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Theater allegations", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_ua5GQxQHS_zTaL3PlL6MhQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Michael Zorn/Invision/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Kevin Spacey Old Vic" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Kevin+Spacey+Old+Vic&form=TNSA02&filters=tnTID%3a%2292756286-3B76-4584-A5A6-064CF7E92724%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%227%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Game+of+trust+death&form=TNSA01&filters=tnTID%3a%2246B9369C-57BB-45ba-86DB-DCED35BDDDCA%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%228%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Diplomat's fatal fall", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_yjLcVT9b0L7eGn669Sur7w&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Beata Zawrzel/NurPhoto/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Game of trust death" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Game+of+trust+death&form=TNSA02&filters=tnTID%3a%2246B9369C-57BB-45ba-86DB-DCED35BDDDCA%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%228%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=NFL+accuses+Jerry+Jones&form=TNSA01&filters=tnTID%3a%224A8292C7-F9CB-447c-B6C4-7F27319D55EC%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%229%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "NFL accuses Jones", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_anXMAjXe_5MiUFT6LQAMOQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© David Goldman/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "NFL accuses Jerry Jones" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=NFL+accuses+Jerry+Jones&form=TNSA02&filters=tnTID%3a%224A8292C7-F9CB-447c-B6C4-7F27319D55EC%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%229%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Museum+of+the+Bible&form=TNSA01&filters=tnTID%3a%22341C777B-509A-43ca-9BE4-BD1C1836983C%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2210%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Museum of the Bible", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_2cYb3FCQsjSoHL6BjIOmcw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Saul Loeb/AFP/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Museum of the Bible" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Museum+of+the+Bible&form=TNSA02&filters=tnTID%3a%22341C777B-509A-43ca-9BE4-BD1C1836983C%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2210%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Drake+Sydney&form=TNSA01&filters=tnTID%3a%2225B847AB-28B8-4e9a-8A6D-397D952EBDDD%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2211%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Protecting his fans", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_jnVEoaoBpEWKXLUg87W0gw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Ross Gilmore/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Drake Sydney" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Drake+Sydney&form=TNSA02&filters=tnTID%3a%2225B847AB-28B8-4e9a-8A6D-397D952EBDDD%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2211%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Cashier+helps+customer&form=TNSA01&filters=tnTID%3a%2283D5F20B-214D-4f1d-B851-248E0E0A33A0%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2212%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Cashier's compassion", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_hAub56MnDSCX2IdBaoeX8Q&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "Spring Herbison Bowlin via Facebook" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Cashier helps customer" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Cashier+helps+customer&form=TNSA02&filters=tnTID%3a%2283D5F20B-214D-4f1d-B851-248E0E0A33A0%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2212%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Jesmyn+Ward&form=TNSA01&filters=tnTID%3a%22A892A4D4-1F55-4afb-B1ED-619FF4D3B823%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2213%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Wins nat'l book award", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_5PfM4PJfVWmrYHRhuxdjDA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Evan Agostini/Invision/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Jesmyn Ward" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Jesmyn+Ward&form=TNSA02&filters=tnTID%3a%22A892A4D4-1F55-4afb-B1ED-619FF4D3B823%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2213%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Walmart+tops+estimates&form=TNSA01&filters=tnTID%3a%22C6AFEACF-4B7E-423e-8D8A-A6C7455A56B5%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2214%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Tops estimates", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_tqjQwDMnLlwzEi8uWDGmhQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Daniel Becerril/Reuters" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Walmart tops estimates" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Walmart+tops+estimates&form=TNSA02&filters=tnTID%3a%22C6AFEACF-4B7E-423e-8D8A-A6C7455A56B5%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2214%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Baltimore+detective+dies&form=TNSA01&filters=tnTID%3a%22BC66A31F-D666-41bf-BA89-B752786737C3%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2215%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Succumbs to wound", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_lJOheF8sugh7aurGf4xibw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Kevin Richardson/Baltimore Sun/TNS via Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Baltimore detective dies" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Baltimore+detective+dies&form=TNSA02&filters=tnTID%3a%22BC66A31F-D666-41bf-BA89-B752786737C3%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2215%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Stephen+Curry+online+classes&form=TNSA01&filters=tnTID%3a%222CA2EE99-F89F-423a-9532-D93DE4AE24DB%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2216%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Teaching online class", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_4Dcx6zwHAKNw-RjGBXo-kw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Andrew D. Bernstein/NBAE/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Stephen Curry online classes" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Stephen+Curry+online+classes&form=TNSA02&filters=tnTID%3a%222CA2EE99-F89F-423a-9532-D93DE4AE24DB%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2216%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Ex-NFL+player+CTE&form=TNSA01&filters=tnTID%3a%22BB049B92-930C-48d6-BEBE-7036D96B36AD%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2217%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "CTE in live patient", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_veH0adQra00WKc2GPO9MpA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Jim Mone/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Ex-NFL player CTE" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Ex-NFL+player+CTE&form=TNSA02&filters=tnTID%3a%22BB049B92-930C-48d6-BEBE-7036D96B36AD%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2217%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Greece+floods&form=TNSA01&filters=tnTID%3a%221693F021-6FCB-4fe3-B06D-3411946AA03C%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2218%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Flooding in Greece", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_02KHtMJLJHe4tgWD32scjQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Argiris Madikos/Eurokinissi/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Greece floods" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Greece+floods&form=TNSA02&filters=tnTID%3a%221693F021-6FCB-4fe3-B06D-3411946AA03C%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2218%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Leonardo+da+Vinci&form=TNSA01&filters=tnTID%3a%22FB136D0C-4637-4d56-956C-87557719BC9B%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2219%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Sets auction record", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_-1eRoMRnafQH4M8qY3ky5w&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Peter Nicholls/Reuters" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Leonardo da Vinci" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Leonardo+da+Vinci&form=TNSA02&filters=tnTID%3a%22FB136D0C-4637-4d56-956C-87557719BC9B%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2219%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=George+HW+Bush&form=TNSA01&filters=tnTID%3a%227396D024-03F9-41eb-9784-87B82EF07165%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2220%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "New accuser", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_DBfsKl0ns9GF98ildGWMDA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© David J. Phillip/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "George HW Bush" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=George+HW+Bush&form=TNSA02&filters=tnTID%3a%227396D024-03F9-41eb-9784-87B82EF07165%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2220%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=8-year-old+returns+wallet+&form=TNSA01&filters=tnTID%3a%229A18C636-A9FB-4903-8FC0-8881708F4D64%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2221%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Kid does good deed", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_OC4_-pIXnbYWMoCbTzvUaQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Zero Creatives/Cultura RF/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "8-year-old returns wallet " - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=8-year-old+returns+wallet+&form=TNSA02&filters=tnTID%3a%229A18C636-A9FB-4903-8FC0-8881708F4D64%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2221%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=House+passes+GOP+tax+bill&form=TNSA01&filters=tnTID%3a%22342BE611-6B9C-4743-87AE-3BD64972731D%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2222%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "House passes tax bill", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_lgSQhDZ3hG_wcT6NLIIoRw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Jacquelyn Martin/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "House passes GOP tax bill" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=House+passes+GOP+tax+bill&form=TNSA02&filters=tnTID%3a%22342BE611-6B9C-4743-87AE-3BD64972731D%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2222%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Bob+Menendez+trial&form=TNSA01&filters=tnTID%3a%22D136D5FC-39EE-4b49-9FCC-E9B00A75D9A1%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2223%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Mistrial declared", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_6KJmFaPYiZMM5YRSaR9apg&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Spencer Platt/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Bob Menendez trial" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Bob+Menendez+trial&form=TNSA02&filters=tnTID%3a%22D136D5FC-39EE-4b49-9FCC-E9B00A75D9A1%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2223%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=SpaceX+Zuma+payload&form=TNSA01&filters=tnTID%3a%22C2D78E0B-8CDB-4a0c-9DF5-DFF180832FBA%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2224%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "'Zuma' payload", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_Ch_Uyox8UOA1i6FlIizTqg&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Joe Skipper/Reuters" - }] - }, - "isBreakingNews": false, - "query": { - "text": "SpaceX Zuma payload" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=SpaceX+Zuma+payload&form=TNSA02&filters=tnTID%3a%22C2D78E0B-8CDB-4a0c-9DF5-DFF180832FBA%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2224%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=California+shooter+made+own+rifles&form=TNSA01&filters=tnTID%3a%223C6CBFA0-1AB0-4ffc-8BA5-F41181B6A264%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2225%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Made own rifles ", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_4hfzXkXdq7wIUZ4COQC1vA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Tehama County Sheriff's Office/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "California shooter made own rifles" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=California+shooter+made+own+rifles&form=TNSA02&filters=tnTID%3a%223C6CBFA0-1AB0-4ffc-8BA5-F41181B6A264%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2225%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Jobless+claims+rise&form=TNSA01&filters=tnTID%3a%22FF50A28A-ED78-44fa-BD23-D0A1BDB5ECF5%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2226%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Jobless claims rise", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_mYG3zGldG6cPx3Dt28pbSQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Shannon Stapleton/Reuters" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Jobless claims rise" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Jobless+claims+rise&form=TNSA02&filters=tnTID%3a%22FF50A28A-ED78-44fa-BD23-D0A1BDB5ECF5%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2226%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Larry+Nance+Jr.&form=TNSA01&filters=tnTID%3a%22A4C38AC0-DAB0-4a22-BC5E-72EAC1AE8243%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2227%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Childhood pen pal", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews__mo4uxflrm5u5-Shfiqiug&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Cameron Browne/NBAE/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Larry Nance Jr." - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Larry+Nance+Jr.&form=TNSA02&filters=tnTID%3a%22A4C38AC0-DAB0-4a22-BC5E-72EAC1AE8243%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2227%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Officer+buys+car+hardworking+woman&form=TNSA01&filters=tnTID%3a%2230FBBB33-B4C6-415c-91D7-966EDE3E989E%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2228%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Cop buys woman car", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_rFSul653UiZHrY08_Rw73w&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© USA Today" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Officer buys car hardworking woman" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Officer+buys+car+hardworking+woman&form=TNSA02&filters=tnTID%3a%2230FBBB33-B4C6-415c-91D7-966EDE3E989E%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2228%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Siemens+job+cuts&form=TNSA01&filters=tnTID%3a%22850FEBAB-2941-403d-82AD-38CB1CC956E7%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2229%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Siemens cutting jobs", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_RVIK9jwLrKnB9_VZRFfqfA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Daniel Karmann/AFP/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Siemens job cuts" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Siemens+job+cuts&form=TNSA02&filters=tnTID%3a%22850FEBAB-2941-403d-82AD-38CB1CC956E7%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2229%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Bon-Ton+closing+stores&form=TNSA01&filters=tnTID%3a%22B8BF2B80-BE0F-426b-9E1B-CBA2A40BC565%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2230%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Closing 40 stores", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_8teQCG1Zbi-yfvfGOZEHOg&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Rusty Kennedy/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Bon-Ton closing stores" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Bon-Ton+closing+stores&form=TNSA02&filters=tnTID%3a%22B8BF2B80-BE0F-426b-9E1B-CBA2A40BC565%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2230%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Airbnb+buys+Accomable&form=TNSA01&filters=tnTID%3a%222C5F2FA3-F35F-4134-85D8-50D599077EF1%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2231%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Acquires Accomable", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_HfOR4zNdzJLFl_GFeoavCw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Yuya Shino/Reuters" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Airbnb buys Accomable" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Airbnb+buys+Accomable&form=TNSA02&filters=tnTID%3a%222C5F2FA3-F35F-4134-85D8-50D599077EF1%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2231%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=New+Delhi+pollution+diplomats+bags&form=TNSA01&filters=tnTID%3a%224851786E-3F88-4726-8322-7C1C970BF3BE%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2232%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Diplomats flee Delhi", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_NoSfH0mc6TVDFb1RQzSA9g&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Dominique Faget / AFP/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "New Delhi pollution diplomats bags" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=New+Delhi+pollution+diplomats+bags&form=TNSA02&filters=tnTID%3a%224851786E-3F88-4726-8322-7C1C970BF3BE%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2232%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=MLB+MVPs&form=TNSA01&filters=tnTID%3a%229A599348-ACD2-4bb2-A89C-1AF9C70573A4%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2233%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "MVPs named", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_RPc9vObmFom5UfCQlam0vA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Trautwig/MLB Photos/Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "MLB MVPs" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=MLB+MVPs&form=TNSA02&filters=tnTID%3a%229A599348-ACD2-4bb2-A89C-1AF9C70573A4%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2233%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Keystone+leak+South+Dakota&form=TNSA01&filters=tnTID%3a%22F3390A5C-9A58-4d48-8F56-910DC19887D8%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2234%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Keystone pipeline leak", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_IhqH4O7icf8ZV2IiLqc7jQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Nati Harnik/AP Photo" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Keystone leak South Dakota" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Keystone+leak+South+Dakota&form=TNSA02&filters=tnTID%3a%22F3390A5C-9A58-4d48-8F56-910DC19887D8%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2234%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Peru+World+Cup&form=TNSA01&filters=tnTID%3a%22776BE35A-E0A8-4630-A132-299638AEF272%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2235%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Peru reaches Cup", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_lutzo0dtbh7D8HyNaCWxnw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Karel Navarro/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Peru World Cup" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Peru+World+Cup&form=TNSA02&filters=tnTID%3a%22776BE35A-E0A8-4630-A132-299638AEF272%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2235%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Al+Franken&form=TNSA01&filters=tnTID%3a%22C7DCDEBF-7913-4580-BE03-64E6ED9EDAD5%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2236%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Accused of groping", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_s6ahOFMsp69jeW8kb-WVGA&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Pablo Martinez Monsivais/AP" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Al Franken" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Al+Franken&form=TNSA02&filters=tnTID%3a%22C7DCDEBF-7913-4580-BE03-64E6ED9EDAD5%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2236%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Lil+Peep+death&form=TNSA01&filters=tnTID%3a%221A7A4134-E276-4992-BFA8-361826140942%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2237%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Rising rapper dies", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_vhPbv3JpMlUKlL4jBtBWiw&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Edward Berthelot /Getty Images" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Lil Peep death" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Lil+Peep+death&form=TNSA02&filters=tnTID%3a%221A7A4134-E276-4992-BFA8-361826140942%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2237%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" - }, - { - "webSearchUrl": "https://www.bing.com/search?q=Robert+Mugabe&form=TNSA01&filters=tnTID%3a%22A3DF123C-6C61-4b33-8E87-89918B3FB99F%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2238%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22", - "name": "Presidency at an end?", - "image": { - "url": "https://www.bing.com/th?id=OPN.RTNews_SdHEgsrnRf0T-1T-TsYHGQ&c=7&rs=2&qlt=80&pcl=f9f9f9&pid=News", - "provider": [{ - "_type": "Organization", - "name": "© Howard Burditt/Reuters" - }] - }, - "isBreakingNews": false, - "query": { - "text": "Robert Mugabe" - }, - "newsSearchUrl": "https://www.bing.com/news/search?q=Robert+Mugabe&form=TNSA02&filters=tnTID%3a%22A3DF123C-6C61-4b33-8E87-89918B3FB99F%22+tnVersion%3a%222214682%22+Segment%3a%22popularnow.carousel%22+tnCol%3a%2238%22+tnScenario%3a%22TrendingTopicsAPI%22+tnOrder%3a%229b3211c9-158e-4564-8899-6f758d123e84%22" }] } }