changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "query": {
+ "description": "The search query",
+ "type": "string"
+ },
+ "results": {
+ "description": "Array of news search results",
+ "items": {
+ "properties": {
+ "age": {
+ "description": "Age of the article",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "breaking": {
+ "description": "Whether article is breaking news",
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Article snippet/description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "page_age": {
+ "description": "Age of the page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "source": {
+ "description": "News source hostname",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "thumbnail": {
+ "description": "Article thumbnail image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "News article title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "News article URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of news results returned",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "query",
+ "returned",
+ "results"
+ ],
+ "type": "object"
+}