{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "AppSummary": { "description": "EXPERIMENTAL - app metadata summary for plugin-install responses.", "properties": { "description": { "type": [ "string", "null" ] }, "id": { "type": "string" }, "installUrl": { "type": [ "string", "null" ] }, "name": { "type": "string" } }, "required": [ "id", "name" ], "type": "object" } }, "properties": { "appsNeedingAuth": { "items": { "$ref": "#/definitions/AppSummary" }, "type": "array" } }, "required": [ "appsNeedingAuth" ], "title": "PluginInstallResponse", "type": "object" }