{
  "description": "JobStatus represents the current state of a Job.",
  "properties": {
    "active": {
      "description": "The number of actively running pods.",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "completionTime": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.19.13/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "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."
    },
    "conditions": {
      "description": "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/",
      "items": {
        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.19.13/_definitions.json#/definitions/io.k8s.api.batch.v1.JobCondition"
      },
      "type": [
        "array",
        "null"
      ],
      "x-kubernetes-patch-merge-key": "type",
      "x-kubernetes-patch-strategy": "merge"
    },
    "failed": {
      "description": "The number of pods which reached phase Failed.",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "startTime": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.19.13/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "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."
    },
    "succeeded": {
      "description": "The number of pods which reached phase Succeeded.",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    }
  },
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}