> ## Documentation Index
> Fetch the complete documentation index at: https://flowdeck.studio/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Schemes

> List schemes in a workspace or project

List all schemes available in a workspace or project.

```bash theme={null}
# List schemes in a workspace
flowdeck project schemes -w App.xcworkspace

# List schemes as JSON
flowdeck project schemes -w App.xcworkspace --json

# Show usage examples
flowdeck project schemes --examples
```

## Options

| Option               | Short | Description                                              |
| -------------------- | ----- | -------------------------------------------------------- |
| `--examples`         | `-e`  | Show usage examples                                      |
| `--project <path>`   | `-p`  | Project directory                                        |
| `--workspace <path>` | `-w`  | Path to workspace (.xcworkspace) or project (.xcodeproj) |
| `--json`             | `-j`  | Output as JSON                                           |

## JSON Output

```json theme={null}
[
  {
    "name": "MyApp",
    "category": "Apps",
    "isShared": true,
    "productType": "com.apple.product-type.application",
    "platform": "iOS"
  }
]
```
