{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the desired action succeeded or failed (true for success, false if an error occurred)"
    }
  },
  "required": [
    "success"
  ],
  "additionalProperties": false,
  "description": "Plugin register response",
  "definitions": {
    "SCSCPluginRegisterResponse": {
      "type": "object",
      "properties": {
        "success": {
          "type": "boolean",
          "description": "Whether the desired action succeeded or failed (true for success, false if an error occurred)"
        }
      },
      "required": [
        "success"
      ],
      "additionalProperties": false,
      "description": "Plugin register response"
    }
  },
  "$id": "https://core.stapps.tu-berlin.de/v4.0.2/lib/schema/SCPluginRegisterResponse.json"
}