{
  "description": "ServerStatusRequest is a request to access current status information about\nthe Velero server.",
  "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",
        "null"
      ]
    },
    "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",
        "null"
      ]
    },
    "metadata": {
      "type": [
        "object",
        "null"
      ]
    },
    "spec": {
      "description": "ServerStatusRequestSpec is the specification for a ServerStatusRequest.",
      "type": [
        "object",
        "null"
      ]
    },
    "status": {
      "additionalProperties": false,
      "description": "ServerStatusRequestStatus is the current status of a ServerStatusRequest.",
      "properties": {
        "phase": {
          "description": "Phase is the current lifecycle phase of the ServerStatusRequest.",
          "enum": [
            "New",
            "Processed"
          ],
          "type": [
            "string",
            "null"
          ]
        },
        "plugins": {
          "description": "Plugins list information about the plugins running on the Velero server",
          "items": {
            "additionalProperties": false,
            "description": "PluginInfo contains attributes of a Velero plugin",
            "properties": {
              "kind": {
                "type": "string"
              },
              "name": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "name"
            ],
            "type": "object"
          },
          "nullable": true,
          "type": [
            "array",
            "null"
          ]
        },
        "processedTimestamp": {
          "description": "ProcessedTimestamp is when the ServerStatusRequest was processed\nby the ServerStatusRequestController.",
          "format": "date-time",
          "nullable": true,
          "type": [
            "string",
            "null"
          ]
        },
        "serverVersion": {
          "description": "ServerVersion is the Velero server version.",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "type": [
        "object",
        "null"
      ]
    }
  },
  "type": "object"
}