removedInput schema / properties / docset_identifiers / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
removedInput schema / properties / docset_identifiers / default
Removed value: -null
addedInput schema / properties / docset_identifiers / type
Added value: +"string"
changedInput schema / required
Previous value: -[
- "query"
-]New value: +[
+ "query",
+ "docset_identifiers"
+]
addedOutput schema / $defs / SearchResult / properties / platform / anyOf
Added value: +[
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedOutput schema / $defs / SearchResult / properties / platform / default
Added value: +null
removedOutput schema / $defs / SearchResult / properties / platform / type
Removed value: -"string"
changedOutput schema / $defs / SearchResult / required
Previous value: -[
- "name",
- "type",
- "platform",
- "load_url"
-]New value: +[
+ "name",
+ "type",
+ "load_url"
+]
addedOutput schema / description
Added value: +"Result from searching documentation."
addedOutput schema / properties / error
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Error message if there was an issue",
+ "title": "Error"
+}
removedOutput schema / properties / result
Removed value: -{
- "items": {
- "$ref": "#/$defs/SearchResult"
- },
- "title": "Result",
- "type": "array"
-}
addedOutput schema / properties / results
Added value: +{
+ "description": "List of search results",
+ "items": {
+ "$ref": "#/$defs/SearchResult"
+ },
+ "title": "Results",
+ "type": "array"
+}
removedOutput schema / required
Removed value: -[
- "result"
-]
changedOutput schema / title
Previous value: -"search_documentationOutput"New value: +"SearchResults"