OpenAPI-Parser/README.md

13 lines
294 B
Markdown
Raw Normal View History

2023-02-02 13:23:08 +00:00
# OPENAPI Parser
2023-02-03 08:56:32 +00:00
Basic library to extract schema structures from OpenAPI 3 documents.
This crate can be used as a standalone binary:
```bash
cargo install openapi-parser
```
Create a tree graph for a schema:
```bash
openapi-parser -f openapi.yaml -s MySchema graph | dot -Tpng > dest.png
```