{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "currentNumberScheduled", 
    "numberMisscheduled", 
    "desiredNumberScheduled", 
    "numberReady"
  ], 
  "type": "object", 
  "description": "DaemonSetStatus represents the current status of a daemon set.", 
  "properties": {
    "numberMisscheduled": {
      "type": "integer", 
      "description": "NumberMisscheduled is the number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md", 
      "format": "int32"
    }, 
    "numberReady": {
      "type": "integer", 
      "description": "NumberReady is the number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", 
      "format": "int32"
    }, 
    "desiredNumberScheduled": {
      "type": "integer", 
      "description": "DesiredNumberScheduled is the total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md", 
      "format": "int32"
    }, 
    "currentNumberScheduled": {
      "type": "integer", 
      "description": "CurrentNumberScheduled is the number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: http://releases.k8s.io/HEAD/docs/admin/daemons.md", 
      "format": "int32"
    }
  }
}