{
  "$schema": "http://json-schema.org/schema#", 
  "type": "object", 
  "description": "JobStatus represents the current state of a Job.", 
  "properties": {
    "succeeded": {
      "type": "integer", 
      "description": "The number of pods which reached phase Succeeded.", 
      "format": "int32"
    }, 
    "failed": {
      "type": "integer", 
      "description": "The number of pods which reached phase Failed.", 
      "format": "int32"
    }, 
    "completionTime": {
      "description": "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    }, 
    "startTime": {
      "description": "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.", 
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
    }, 
    "active": {
      "type": "integer", 
      "description": "The number of actively running pods.", 
      "format": "int32"
    }, 
    "conditions": {
      "items": {
        "$ref": "_definitions.json#/definitions/io.k8s.kubernetes.pkg.apis.batch.v1.JobCondition"
      }, 
      "type": [
        "array", 
        "null"
      ], 
      "description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", 
      "x-kubernetes-patch-strategy": "merge", 
      "x-kubernetes-patch-merge-key": "type"
    }
  }
}