---
url: /api/third-parties/formio-types/types/domain/interface-formio-schema.md
description: api documentation of FormioSchema from @tsed/formio-types
---

## Usage

```typescript
import { FormioSchema } from "@tsed/formio-types";
```

> See [/packages/third-parties/formio-types/src/domain/FormioSchema.ts](https://github.com/tsedio/tsed/blob/v8.38.7/packages/third-parties/formio-types/src/domain/FormioSchema.ts#L0-L0).

## Overview

```ts
interface FormioSchema {
    key: string;
    isLocked: boolean;
    version: string;
    value: string;
}
```

## key

```ts
key: string;
```

## isLocked

```ts
isLocked: boolean;
```

## version

```ts
version: string;
```

## value

```ts
value: string;
```
