Here is the file structure. And I would like to generate html documentation for components/schemas/..
not for openapi.yaml
which has endpoints.
├── code samples
│ └── C#
│ └── postundefined
│ └── PHP
│ └── postundefined
├── components
│ └── headers
│ └── ExpiresAfter.yaml
│ └── responses
│ └── Problem.yaml
│ └── schemas
│ └── Email.yaml
│ └── Problem.yaml
│ └── Schema.yaml
│ └── User.yaml
├── paths
│ └── echo.yaml
│ └── pathItem.yaml
│ └── pathItemWithExamples.yaml
│ └── users@{username}.yaml
└── openapi.yaml
Here is a git hub page openapi-starter. It has a folder structure components/schemas/..
Using redocly redocly build-docs openapi.yaml
it generates it only generate redoc-static.html
and it has all the documentation for rest endpoints but not for schemas.
In my case, I would like to generate documentation/html pages only for the schemas and in this particular case Email.yaml
, User.yaml
, Schema.yaml
, User.yaml
Is there any tool that can accomplish this ?