# Fields

> Configure parameters for your API or SDK documentation.

Source: https://docs.doccupine.com/fields

> For the complete documentation index, see [llms.txt](https://docs.doccupine.com/llms.txt).

# Fields

Configure parameters for your API or SDK documentation.

Fields allow you to describe both the **inputs** (parameters) and **outputs** (responses) of your API. The main field component is available: `Field` for parameters and for responses.

## Fields Usage

Use the `<Field>` component to declare API or SDK parameters, or define the return values of an API.

<Field value="param" type="string" required>
  Example definition of a parameter field.
</Field>

```html
<Field value="param" type="string" required>
  Example definition of a parameter field.
</Field>
```

## Properties

<Field value="value" type="string" required>
  The name of the field.
</Field>

<Field value="type" type="string" required>
  The type of the field.
</Field>

<Field value="required" type="boolean">
  Whether the field is required.
</Field>
