Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/source/flatc.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,12 @@ list of `FILES...`.
`myschema.fbs` to JSON:

```sh
flatc --json myschema.fbs mydata.bin
flatc --json myschema.fbs -- mydata.bin
```

This will generate a `mydata.json` file.

This will generate a `mydata.json` file. If there is no
[`file_identifier`](schema.md/#file-identification-and-extension) defined
for this schema, you will need to use the `--raw-binary` option.

### Additional options

Expand Down
Loading