+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "FieldDTO"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
draft = true
+++
## FieldDTO interface
Like a field, but properties are optional and values may be a simple array
Signature
```typescript
export interface FieldDTO
```
Import
```typescript
import { FieldDTO } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [config](#config-property) | FieldConfig
| |
| [labels](#labels-property) | Labels
| |
| [name](#name-property) | string
| |
| [type](#type-property) | FieldType
| |
| [values](#values-property) | Vector<T> | T[]
| |
### config property
Signature
```typescript
config?: FieldConfig;
```
### labels property
Signature
```typescript
labels?: Labels;
```
### name property
Signature
```typescript
name: string;
```
### type property
Signature
```typescript
type?: FieldType;
```
### values property
Signature
```typescript
values?: Vector | T[];
```