openapi-parser 0.6.1

Extract schemas definitions tree from OpenAPI documents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# OPENAPI Parser
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
```