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

# submission inspect

> Show a submission package and the fields it carries

Show a submission package: its platform, the environment it was built from, its Beacon audit, and every field currently filled in.

## Usage

```bash theme={null}
alpic submission inspect --submission-id <submissionId>
```

## Extended Usage

Print the raw package as JSON:

```bash theme={null}
alpic submission inspect --submission-id <submissionId> --json
```

Edit a package locally, then write the changed fields back:

```bash theme={null}
alpic submission inspect --submission-id <submissionId> --json | jq .formData > submission.json
# edit submission.json
alpic submission update --submission-id <submissionId> --form-data-file submission.json
```

## Options

| Flag                | Description                                | Default |
| ------------------- | ------------------------------------------ | ------- |
| `--submission-id`   | The ID of the submission package.          | —       |
| `--json`            | Print the unmodified API response as JSON. | `false` |
| `--non-interactive` | Skip interactive prompts.                  |         |
