---
title: FormDataEntrySchema
source: https://github.com/remix-run/remix/blob/remix@3.0.0-beta.3/packages/data-schema/src/lib/form-data.ts#L22
---

# FormDataEntrySchema

## Summary

A schema entry that reads one or more values from `FormData` or `URLSearchParams` and validates
them.

## Signature

```ts
interface FormDataEntrySchema<output> {
  kind: FormDataEntryKind;
  name?: string;
  schema: Schema<any, output>;
}

```

## Properties

### `kind`

The parsing mode used to read values from the input object.

### `name`

The form field name to read. Defaults to the object key passed to `object()`.

### `schema`

The schema used to validate the parsed value or values.