---
title: FormDataSchema
---

# FormDataSchema

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/data-schema/src/lib/form-data.ts#L66" target="_blank">View Source</a>

## Summary

A schema-like object that describes the fields to parse from `FormData` or `URLSearchParams`.

## Signature

```ts
type FormDataSchema = Record<string, FormDataEntrySchema<any>>;

```