We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following example does not produce the same output for "bundle" and "serve":
openapi: 3.0.1 info: title: Test API description: Test API version: 1.0.0 tags: - name: Test paths: /api/test: get: summary: example request tags: - Test responses: '200': description: Success content: application/json: schema: $ref: '#/components/schemas/Response' components: schemas: PartA: type: object properties: propA: type: string PartB: type: object properties: propB: type: string Response: type: object allOf: - $ref: '#/components/schemas/BaseResponse' properties: propC: $ref: '#/components/schemas/PartB' BaseResponse: type: object properties: propD: $ref: '#/components/schemas/PartA'
The response schema of the example request seems to correct when using redoc-cli serve test.yaml:
redoc-cli serve test.yaml
However, when using redoc-cli bundle test.yaml a recursion is detected:
redoc-cli bundle test.yaml
The text was updated successfully, but these errors were encountered:
@mschefer thanks for the detailed issue report. Will check it asap
Sorry, something went wrong.
89aa754
No branches or pull requests
The following example does not produce the same output for "bundle" and "serve":
The response schema of the example request seems to correct when using
redoc-cli serve test.yaml
:However, when using
redoc-cli bundle test.yaml
a recursion is detected:The text was updated successfully, but these errors were encountered: