# io.k8s.api.batch.v1.CronJobStatus

From **Kubernetes**.

CronJobStatus represents the current state of a cron job.

- Type: `object`

## Properties

### `active`

- Required: false
- Type: `array`

A list of pointers to currently running jobs.

### `lastScheduleTime`

- Required: false
Information when was the last time the job was successfully scheduled.

### `lastSuccessfulTime`

- Required: false
Information when was the last time the job successfully completed.

## JSON Schema

```json
{"description":"CronJobStatus represents the current state of a cron job.","properties":{"active":{"description":"A list of pointers to currently running jobs.","items":{"$ref":"#/components/schemas/io.k8s.api.core.v1.ObjectReference"},"type":"array","x-kubernetes-list-type":"atomic"},"lastScheduleTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"Information when was the last time the job was successfully scheduled."},"lastSuccessfulTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"Information when was the last time the job successfully completed."}},"type":"object"}
```
