# ValidationTargets

**Kind:** Type

**Source:** [`src/types.ts`](https://github.com/honojs/hono/blob/main/src/types.ts#L2683)

## Definition

```ts
{ json: any form: Record<string, T | T[]> query: Record<string, string | string[]> param: Record<P, P extends `${infer _}?` ? string | undefined : string> header: Record<RequestHeader | CustomHeader, string> cookie: Record<string, string> }
```
