---
title: "CreateAppVersionFileBody"
description: "Request body for an AppVersion operation."
section: "Reference"
group: "Types"
order: 34
---

## Definition

```ts
interface CreateAppVersionFileBody {
  path: string;
  content: string;
}
```

## Fields

| Field     | Type     | Notes                                                                 |
| --------- | -------- | --------------------------------------------------------------------- |
| `path`    | `string` | `required` — File path relative to the app root (e.g. `src/App.tsx`). |
| `content` | `string` | `required` — File content to write.                                   |
