removedInput schema / additionalProperties
Removed value: -false
removedInput schema / properties / count / default
Removed value: -50
changedInput schema / properties / count / description
Previous value: -"Number of results (1-200, default 50). Combine this parameter with `offset` to paginate search results."New value: +"Number of results (max 100; default 50)."
removedInput schema / properties / count / maximum
Removed value: -200
removedInput schema / properties / count / minimum
Removed value: -1
changedInput schema / properties / count / type
Previous value: -"integer"New value: +"number"
removedInput schema / properties / country / default
Removed value: -"US"
changedInput schema / properties / country / description
Previous value: -"Search query country, where the results come from. The country string is limited to 2 character country codes of supported countries."New value: +"2-letter country code (ISO 3166-1 alpha-2). Defaults to US."
addedInput schema / properties / q
Added value: +{
+ "description": "Search query (max 400 characters and 50 words).",
+ "type": "string"
+}
removedInput schema / properties / query
Removed value: -{
- "description": "The user's search query. Query cannot be empty. Limited to 400 characters and 50 words.",
- "maxLength": 400,
- "minLength": 1,
- "type": "string"
-}
removedInput schema / properties / safesearch / default
Removed value: -"strict"
changedInput schema / properties / safesearch / description
Previous value: -"Filters search results for adult content. The following values are supported: 'off' - No filtering. 'strict' - Drops all adult content from search results."New value: +"Filter level for adult content."
changedInput schema / properties / safesearch / enum
Previous value: -[
- "off",
- "strict"
-]New value: +[
+ "off",
+ "moderate",
+ "strict"
+]
removedInput schema / properties / search_lang / default
Removed value: -"en"
changedInput schema / properties / search_lang / description
Previous value: -"Search language preference. The 2 or more character language code for which the search results are provided."New value: +"2-letter language code for the search. Defaults to en."
removedInput schema / properties / spellcheck / default
Removed value: -true
changedInput schema / properties / spellcheck / description
Previous value: -"Whether to spellcheck provided query."New value: +"Whether to spellcheck the query."
changedInput schema / required
Previous value: -[
- "query"
-]New value: +[
+ "q"
+]
changedOutput schema / (root)
Previous value: -{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "additionalProperties": false,
- "properties": {
- "count": {
- "minimum": 0,
- "type": "integer"
- },
- "items": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "confidence": {
- "description": "The confidence level of the result.",
- "enum": [
- "low",
- "medium",
- "high"
- ],
- "type": "string"
- },
- "page_fetched": {
- "format": "date-time",
- "type": "string"
- },
- "properties": {
- "additionalProperties": false,
- "properties": {
- "height": {
- "exclusiveMinimum": 0,
- "type": "integer"
- },
- "url": {
- "format": "uri",
- "type": "string"
- },
- "width": {
- "exclusiveMinimum": 0,
- "type": "integer"
- }
- },
- "required": [
- "url",
- "width",
- "height"
- ],
- "type": "object"
- },
- "title": {
- "type": "string"
- },
- "url": {
- "format": "uri",
- "type": "string"
- }
- },
- "required": [
- "title",
- "url",
- "page_fetched",
- "confidence",
- "properties"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "might_be_offensive": {
- "description": "Whether the image might be offensive.",
- "type": "boolean"
- },
- "type": {
- "const": "object",
- "type": "string"
- }
- },
- "required": [
- "type",
- "items",
- "count",
- "might_be_offensive"
- ],
- "type": "object"
-}New value: +null