{
  "description": "PluginConfig defines plugin configuration.",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": "string"
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": "string"
    },
    "metadata": {
      "type": "object"
    },
    "spec": {
      "description": "PluginConfigSpec defines the desired state of a PluginConfig,\nin which plugins and their configuration are specified.",
      "properties": {
        "plugins": {
          "description": "Plugins are an array of plugins and their configuration to be applied.",
          "items": {
            "properties": {
              "config": {
                "description": "Config is plugin configuration details.",
                "x-kubernetes-preserve-unknown-fields": true
              },
              "name": {
                "description": "Name is the name of the plugin.",
                "type": "string"
              }
            },
            "required": [
              "name"
            ],
            "type": "object",
            "additionalProperties": false
          },
          "type": "array"
        }
      },
      "required": [
        "plugins"
      ],
      "type": "object",
      "additionalProperties": false
    }
  },
  "type": "object"
}
