# io.k8s.api.scheduling.v1alpha3.TypedLocalObjectReference

From **Kubernetes**.

TypedLocalObjectReference allows to reference typed object inside the same namespace.

- Type: `object`

## Properties

### `apiGroup`

- Required: false
- Type: `string`

apiGroup is the group for the resource being referenced. If APIGroup is empty, the specified Kind must be in the core API group. For any other third-party types, setting APIGroup is required. It must be a DNS subdomain.

### `kind`

- Required: true
- Type: `string`

kind is the type of resource being referenced. It must be a path segment name.

### `name`

- Required: true
- Type: `string`

name is the name of resource being referenced. It must be a path segment name.

## JSON Schema

```json
{"description":"TypedLocalObjectReference allows to reference typed object inside the same namespace.","properties":{"apiGroup":{"description":"apiGroup is the group for the resource being referenced. If APIGroup is empty, the specified Kind must be in the core API group. For any other third-party types, setting APIGroup is required. It must be a DNS subdomain.","type":"string"},"kind":{"default":"","description":"kind is the type of resource being referenced. It must be a path segment name.","type":"string"},"name":{"default":"","description":"name is the name of resource being referenced. It must be a path segment name.","type":"string"}},"required":["kind","name"],"type":"object"}
```
