Syntax

suprsend schema list [flags]

Flags

FlagDescriptionDefault
-h, --helpShow help for the command
-l, --limit intLimit the number of schemas to list20
-m, --mode stringMode of schemas to list (draft, live)live
-f, --offset intOffset the number of schemas to list0
-o, --output stringOutput Style (pretty, yaml, json)pretty

Example

# List schemas in staging workspace (default)
suprsend schema list

# List schemas in production workspace
suprsend schema list --workspace production

# List schemas in draft mode, with limit and offset
suprsend schema list --limit 10 --offset 5 --mode draft

# List schemas in JSON format and pipe to jq
suprsend schema list --output json | jq '.[].slug'