# io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.SelectableField

From **Kubernetes**.

SelectableField specifies the JSON path of a field that may be used with field selectors.

- Type: `object`

## Properties

### `jsonPath`

- Required: true
- Type: `string`

jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.

## JSON Schema

```json
{"description":"SelectableField specifies the JSON path of a field that may be used with field selectors.","properties":{"jsonPath":{"default":"","description":"jsonPath is a simple JSON path which is evaluated against each custom resource to produce a field selector value. Only JSON paths without the array notation are allowed. Must point to a field of type string, boolean or integer. Types with enum values and strings with formats are allowed. If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string. Must not point to metdata fields. Required.","type":"string"}},"required":["jsonPath"],"type":"object"}
```
