changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "results": {
+ "description": "up to 15 matching plugins, best matches first",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "category": {
+ "description": "marketplace category",
+ "type": "string"
+ },
+ "description": {
+ "description": "one-line summary",
+ "type": "string"
+ },
+ "id": {
+ "description": "stable plugin id, e.g. \"sql-safety-net\"",
+ "type": "string"
+ },
+ "installCommand": {
+ "description": "Claude Code install command",
+ "type": "string"
+ },
+ "name": {
+ "description": "human-readable plugin name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "installCommand"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "results"
+ ],
+ "type": "object"
+}