> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mezmo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Fields Processor

> Drop specified JSON fields from each record in the data stream before sending it to storage or other processors.

## Description

The Remove Fields processor drops JSON fields from each record in the data stream.

## Use

This processor is useful when there are specific fields that you want to remove from your data before sending it to storage or to additional processors.

## Configuration

There is one option to configure for this processor.

| Option | Description                                                      | Example |
| ------ | ---------------------------------------------------------------- | ------- |
| Fields | The field or fields to drop from each record in the data stream. | `.baz`  |

## Example

### Before

```json theme={null}
{
  "foo": "bar",
  "baz": 1
}

```

### Remove Fields Options

| Option | Value  |
| ------ | ------ |
| Fields | `.baz` |

### After

```json theme={null}
{
  "foo": "bar"
}

```
