{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "type", 
    "status"
  ], 
  "type": "object", 
  "description": "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", 
  "properties": {
    "status": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "status is the status of the condition (True, False, Unknown)"
    }, 
    "type": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "type describes the current condition"
    }, 
    "message": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "message is a human-readable explanation containing details about the transition"
    }, 
    "lastTransitionTime": {
      "description": "lastTransitionTime is the last time the condition transitioned from one status to another", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    }, 
    "reason": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "reason is the reason for the condition's last transition."
    }
  }
}