{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "metricName", 
    "currentValue"
  ], 
  "type": "object", 
  "description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.", 
  "properties": {
    "currentAverageValue": {
      "description": "currentAverageValue is the current value of metric averaged over autoscaled pods.", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
    }, 
    "currentValue": {
      "description": "currentValue is the current value of the metric (as a quantity)", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
    }, 
    "metricSelector": {
      "description": "metricSelector is used to identify a specific time series within a given metric.", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
    }, 
    "metricName": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "metricName is the name of a metric used for autoscaling in metric system."
    }
  }
}