# io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition

From **Kubernetes**.

APIServiceCondition describes the state of an APIService at a particular point

- Type: `object`

## Properties

### `lastTransitionTime`

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

### `message`

- Required: false
- Type: `string`

Human-readable message indicating details about last transition.

### `reason`

- Required: false
- Type: `string`

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.

## JSON Schema

```json
{"description":"APIServiceCondition describes the state of an APIService at a particular point","properties":{"lastTransitionTime":{"allOf":[{"$ref":"#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Time"}],"description":"Last time the condition transitioned from one status to another."},"message":{"description":"Human-readable message indicating details about last transition.","type":"string"},"reason":{"description":"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.","type":"string"}},"required":["type","status"],"type":"object"}
```
