Adam Altman
Adam Altman
@bal-stan you did not quite try my solution. Do not put this: ```yaml components: schemas: Pet: $ref: ./schemas/Pet.yaml parameters: PetId: $ref: ./parameters/PetId.yaml ``` Those will be generated automatically when they...
Also, this is in particular when there is no logo.
@glen-84 did you try the `--dereferenced` option? Besides that, this seems like a bug anyway. https://redoc.ly/docs/cli/commands/#bundle ``` openapi bundle --dereferenced ``` It may be helpful if you can share your...
@mauris I think the issue is with the invalid way to split the YAML file: ```yaml components: schemas: $ref: ./models/_index.yaml responses: $ref: ../common/models/responses.v1.yaml parameters: $ref: ./parameters/_index.yaml ``` See this issue...
Yes, it can have multiple examples. However, that's a good question. It needs to target the response code or the request media type. So maybe it should be like this:...
That comment (with the bundling) was done to solve https://github.com/Redocly/openapi-cli/issues/339 There is a workaround you can do. In newer versions of OpenAPI-cli we support a new configuration file format. ```...
Good idea. I see the `allOf` situation often, and wonder...
Came across this issue twice again today (with `allOf`). ```yaml myProperty: allOf: - $ref: ./my-object.yaml ``` Should be like: ```yaml myProperty: $ref: ./my-object.yaml ```
Yes, this isn't the case I'm talking about (I mean the kind without any sibling addition).
Raising priority so that docs can be simplified.