{
  "description": "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).",
  "required": [
    "metricName",
    "currentAverageValue"
  ],
  "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": {
      "description": "metricName is the name of the metric in question",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "$schema": "http://json-schema.org/schema#",
  "type": "object"
}