# The SettingsMetadata object

## Attributes

- `name` (string, Public Preview)
  Name of the setting.
- `description` (string, Public Preview)
  Setting description for what this setting controls
- `type` (string, Public Preview)
  Sample message depicting the type of the setting. To set this setting, the value sent must match this type.
- `docs_link` (string, Public Preview)
  Link to databricks documentation for the setting
- `preview_phase` (string, Beta)
  Preview phase for feature preview settings. This field is not set for non-preview settings.
  Possible values: `PREVIEW_PHASE_UNSPECIFIED`, `PRIVATE_PREVIEW`, `PUBLIC_PREVIEW`, `BETA`, `GA_SOON`, `GA`
- `display_name` (string, Beta)
  Human-readable display name for the setting or feature preview.
   This field may be unset if no display name is available.

## Example

```json
{
  "name": "string",
  "description": "string",
  "type": "string",
  "docs_link": "string",
  "preview_phase": "string",
  "display_name": "string"
}
```


