{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "metricName", 
    "currentAverageValue"
  ], 
  "type": "object", 
  "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", 
  "properties": {
    "currentAverageValue": {
      "description": "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
    }, 
    "metricName": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "metricName is the name of the metric in question"
    }
  }
}