---
title: "UpdateSwarmVersionBody"
description: "Request body for updating a SwarmVersion."
section: "Reference"
group: "Types"
order: 223
---

## Definition

```ts
interface UpdateSwarmVersionBody {
  entryNodeId?: string | null | undefined;
  name?: string | undefined;
  instructions?: string | undefined;
  models?: Array<string> | undefined;
  inputSchemaId?: string | null | undefined;
  outputSchemaId?: string | null | undefined;
}
```

## Fields

| Field            | Type                          | Notes                                 |
| ---------------- | ----------------------------- | ------------------------------------- |
| `entryNodeId`    | `string \| null \| undefined` | `optional` — Entry node for execution |
| `name`           | `string \| undefined`         | `optional`                            |
| `instructions`   | `string \| undefined`         | `optional`                            |
| `models`         | `Array<string> \| undefined`  | `optional`                            |
| `inputSchemaId`  | `string \| null \| undefined` | `optional`                            |
| `outputSchemaId` | `string \| null \| undefined` | `optional`                            |
