# io.k8s.api.resource.v1.ResourceClaimConsumerReference

From **Kubernetes**.

ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.

- Type: `object`

## Properties

### `apiGroup`

- Required: false
- Type: `string`

APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.

### `name`

- Required: true
- Type: `string`

Name is the name of resource being referenced.

### `resource`

- Required: true
- Type: `string`

Resource is the type of resource being referenced, for example "pods".

### `uid`

- Required: true
- Type: `string`

UID identifies exactly one incarnation of the resource.

## JSON Schema

```json
{"description":"ResourceClaimConsumerReference contains enough information to let you locate the consumer of a ResourceClaim. The user must be a resource in the same namespace as the ResourceClaim.","properties":{"apiGroup":{"description":"APIGroup is the group for the resource being referenced. It is empty for the core API. This matches the group in the APIVersion that is used when creating the resources.","type":"string"},"name":{"default":"","description":"Name is the name of resource being referenced.","type":"string"},"resource":{"default":"","description":"Resource is the type of resource being referenced, for example \"pods\".","type":"string"},"uid":{"default":"","description":"UID identifies exactly one incarnation of the resource.","type":"string"}},"required":["resource","name","uid"],"type":"object"}
```
