# z.Frame.Decoded

Decoded frame schema.

## Imports

```ts
import { z } from 'ox/zod'

z.Frame.Decoded
```

## Definition

```ts
export const Decoded: z.ZodMiniType<core_Frame.Frame, core_Frame.Frame> = z
  .object(fields(z.bigint()))
  .check(z.refine(core_Frame.validate, 'Invalid frame'))
```

**Source:** [src/zod/Frame.ts](https://github.com/wevm/ox/blob/main/src/zod/Frame.ts)
