# io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition

From **Kubernetes**.

CustomResourceDefinitionCondition contains details for the current condition of this pod.

- Type: `object`

## Properties

### `lastTransitionTime`

- Required: false
lastTransitionTime last time the condition transitioned from one status to another.

### `message`

- Required: false
- Type: `string`

message is a human-readable message indicating details about last transition.

### `observedGeneration`

- Required: false
- Type: `integer`
- Format: `int64`

observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.

### `reason`

- Required: false
- Type: `string`

reason is a unique, one-word, CamelCase reason for the condition's last transition.

### `status`

- Required: true
- Type: `string`

status is the status of the condition. Can be True, False, Unknown.

### `type`

- Required: true
- Type: `string`

type is the type of the condition. Types include Established, NamesAccepted and Terminating.

## JSON Schema

```json
{"description":"CustomResourceDefinitionCondition contains details for the current condition of this pod.","properties":{"lastTransitionTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"lastTransitionTime last time the condition transitioned from one status to another."},"message":{"description":"message is a human-readable message indicating details about last transition.","type":"string"},"observedGeneration":{"description":"observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.","format":"int64","type":"integer"},"reason":{"description":"reason is a unique, one-word, CamelCase reason for the condition's last transition.","type":"string"},"status":{"default":"","description":"status is the status of the condition. Can be True, False, Unknown.","type":"string"},"type":{"default":"","description":"type is the type of the condition. Types include Established, NamesAccepted and Terminating.","type":"string"}},"required":["type","status"],"type":"object"}
```
