# io.k8s.api.rbac.v1.RoleRef

From **Kubernetes**.

RoleRef contains information that points to the role being used

- Type: `object`

## Properties

### `apiGroup`

- Required: false
- Type: `string`

apiGroup is the group for the resource being referenced

### `kind`

- Required: true
- Type: `string`

kind is the type of resource being referenced

### `name`

- Required: true
- Type: `string`

name is the name of resource being referenced

## JSON Schema

```json
{"description":"RoleRef contains information that points to the role being used","properties":{"apiGroup":{"default":"","description":"apiGroup is the group for the resource being referenced","type":"string"},"kind":{"default":"","description":"kind is the type of resource being referenced","type":"string"},"name":{"default":"","description":"name is the name of resource being referenced","type":"string"}},"required":["kind","name"],"type":"object","x-kubernetes-map-type":"atomic"}
```
