changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "altered": {
+ "description": "Altered query if Brave modified it, otherwise null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "query": {
+ "description": "The original search query",
+ "type": "string"
+ },
+ "results": {
+ "description": "Array of web search results",
+ "items": {
+ "properties": {
+ "age": {
+ "description": "Age of the result",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Result snippet/description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "hostname": {
+ "description": "Hostname from meta_url",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "language": {
+ "description": "Language of the result",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "page_age": {
+ "description": "Age of the page",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "thumbnail": {
+ "description": "Thumbnail image URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Result title",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Result URL",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of results returned in this response",
+ "type": "integer"
+ },
+ "total": {
+ "description": "Total results available for the query",
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "query",
+ "altered",
+ "total",
+ "returned",
+ "results"
+ ],
+ "type": "object"
+}