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

# jinko schema

> Show request/response schema for a command. List all if no command given.

Show request/response schema for a command. List all if no command given.

## Usage

```bash theme={null}
jinko schema [options] [command]
```

### Arguments

| Argument  | Required | Description |
| --------- | -------- | ----------- |
| `command` | No       |             |

## Options

*No options.*

## Examples

```bash theme={null}
# Dump the current OpenAPI spec (filtered public surface)
jinko schema

# Pipe into jq, grep for flight endpoints
jinko schema | jq '.paths | keys[]' | grep flights
```

Useful for debugging field shapes without leaving the terminal.
