Skip to main content
List all schemes available in a workspace or project.
# 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

OptionShortDescription
--examples-eShow usage examples
--project <path>-pProject directory
--workspace <path>-wPath to workspace (.xcworkspace) or project (.xcodeproj)
--json-jOutput as JSON

JSON Output

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