Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V3 spec checks #198

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
6 changes: 4 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"stopOnEntry": false,
"args": [
"--quick-test",
"--timeout=600000"
"--timeout=600000",
"Real"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
Expand All @@ -18,7 +19,8 @@
"--nolazy"
],
"env": {
"NODE_ENV": "development"
"NODE_ENV": "development",
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
},
"console": "internalConsole",
"sourceMaps": false,
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ Features
- Tested on **[over 1,500 real-world APIs](https://apis.guru/browse-apis/)** from Google, Microsoft, Facebook, Spotify, etc.
- Supports [circular references](https://apitools.dev/swagger-parser/docs/#circular-refs), nested references, back-references, and cross-references
- Maintains object reference equality — `$ref` pointers to the same value always resolve to the same object instance

- Checks for inconsistencies in Swagger v2.0 and OpenAPI v3.0 specs:
- path parameter mis-matches
- required field mis-matches
- arrays without item definition


Related Projects
Expand Down
Loading