# io.k8s.api.batch.v1.JobCondition

From **Kubernetes**.

JobCondition describes current state of a job.

- Type: `object`

## Properties

### `lastProbeTime`

- Required: false
Last time the condition was checked.

### `lastTransitionTime`

- Required: false
Last time the condition transit from one status to another.

### `message`

- Required: false
- Type: `string`

Human readable message indicating details about last transition.

### `reason`

- Required: false
- Type: `string`

(brief) reason for the condition's last transition.

### `status`

- Required: true
- Type: `string`

Status of the condition, one of True, False, Unknown.

### `type`

- Required: true
- Type: `string`

Type of job condition, Complete or Failed.

## JSON Schema

```json
{"description":"JobCondition describes current state of a job.","properties":{"lastProbeTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"Last time the condition was checked."},"lastTransitionTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"Last time the condition transit from one status to another."},"message":{"description":"Human readable message indicating details about last transition.","type":"string"},"reason":{"description":"(brief) reason for the condition's last transition.","type":"string"},"status":{"default":"","description":"Status of the condition, one of True, False, Unknown.","type":"string"},"type":{"default":"","description":"Type of job condition, Complete or Failed.","type":"string"}},"required":["type","status"],"type":"object"}
```
