Reputation: 453
I just downloaded a Swagger/OpenAPI generated SDK. I know that API documentation should have been autogenerated by Swagger itself... however I am looking through the file directory and don't see anything. I have tried searching on this topic for a few hours now and nothing has been very helpful. Any help is appreciated.
Upvotes: 0
Views: 134
Reputation: 2748
OpenAPI is a standard of defining an API, it is not itself a tool that generates SDKs or documentation.
You likely used openapi-generator or a similar tool to generate your SDK - documentation would need to be generated from another tool, such as ReDoc or something from SmartBear (the original authors of Swagger).
Upvotes: 1