# io.k8s.apimachinery.pkg.apis.meta.v1.GroupResource

From **Kubernetes**.

GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying concepts during lookup stages without having partially valid types

- Type: `object`

## Properties

### `group`

- Required: true
- Type: `string`

### `resource`

- Required: true
- Type: `string`

## JSON Schema

```json
{"description":"GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying concepts during lookup stages without having partially valid types","properties":{"group":{"default":"","type":"string"},"resource":{"default":"","type":"string"}},"required":["group","resource"],"type":"object"}
```
