Add schema

This commit is contained in:
Pierre Hubert 2023-02-03 09:56:32 +01:00
parent 960d4318ec
commit bda9cc3fad
1 changed files with 12 additions and 1 deletions

View File

@ -1,2 +1,13 @@
# OPENAPI Parser
Basic library to extract schema structures from OpenAPI 3 documents.
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
```