removedOutput schema / $defs / DocsetInfo
Removed value: -{
- "description": "Information about a docset.",
- "properties": {
- "full_text_search": {
- "description": "Full-text search status: 'not supported', 'disabled', 'indexing', or 'enabled'",
- "title": "Full Text Search",
- "type": "string"
- },
- "identifier": {
- "description": "Unique identifier",
- "title": "Identifier",
- "type": "string"
- },
- "name": {
- "description": "Display name of the docset",
- "title": "Name",
- "type": "string"
- },
- "notice": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional notice about the docset status",
- "title": "Notice"
- },
- "platform": {
- "description": "Platform/type of the docset",
- "title": "Platform",
- "type": "string"
- }
- },
- "required": [
- "name",
- "identifier",
- "platform",
- "full_text_search"
- ],
- "title": "DocsetInfo",
- "type": "object"
-}
addedOutput schema / $defs / DocsetResult
Added value: +{
+ "description": "Information about a docset.",
+ "properties": {
+ "full_text_search": {
+ "description": "Full-text search status: 'not supported', 'disabled', 'indexing', or 'enabled'",
+ "title": "Full Text Search",
+ "type": "string"
+ },
+ "identifier": {
+ "description": "Unique identifier",
+ "title": "Identifier",
+ "type": "string"
+ },
+ "name": {
+ "description": "Display name of the docset",
+ "title": "Name",
+ "type": "string"
+ },
+ "notice": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional notice about the docset status",
+ "title": "Notice"
+ },
+ "platform": {
+ "description": "Platform/type of the docset",
+ "title": "Platform",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "identifier",
+ "platform",
+ "full_text_search"
+ ],
+ "title": "DocsetResult",
+ "type": "object"
+}
addedOutput schema / description
Added value: +"Result from listing docsets."
addedOutput schema / properties / docsets
Added value: +{
+ "description": "List of installed docsets",
+ "items": {
+ "$ref": "#/$defs/DocsetResult"
+ },
+ "title": "Docsets",
+ "type": "array"
+}
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/DocsetInfo"
- },
- "title": "Result",
- "type": "array"
-}
removedOutput schema / required
Removed value: -[
- "result"
-]
changedOutput schema / title
Previous value: -"list_installed_docsetsOutput"New value: +"DocsetResults"