Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the app. |
| name | string | The app name, used in routing and DNS. |
| status | string | Current status of the app (e.g., running, suspended). |
| machine_count | integer | Number of Machines currently in the app. |
| volume_count | integer | Number of Volumes currently in the app. |
| network | string | The private network name this app is attached to. |
| organization | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/App",
"title": "App",
"type": "object",
"description": "A Fly App, which is a logical grouping of related Fly Machines.",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the app."
},
"name": {
"type": "string",
"description": "The app name, used in routing and DNS."
},
"status": {
"type": "string",
"description": "Current status of the app (e.g., running, suspended)."
},
"machine_count": {
"type": "integer",
"description": "Number of Machines currently in the app."
},
"volume_count": {
"type": "integer",
"description": "Number of Volumes currently in the app."
},
"network": {
"type": "string",
"description": "The private network name this app is attached to."
},
"organization": {
"$ref": "#/components/schemas/Organization"
}
}
}