nickshoe
nickshoe
We use a git repository folder as storage, when we pull new notes from the remote it would be great to have the UI automatically reflect the updates!
Another possibility could be to allow multiple `$ref` right under `paths`: ```yaml ... info: ... tags: ... ... paths: $ref: './service-a.yaml#/paths' $ref: './service-b.yaml#/paths' ``` Assuming that the content of the...
@MaxenceMaire thanks for clarifying the use of `$ref`. My example was an alternative proposal. Anyways, I like your proposal too (I've put a thumbs up). We ended up defining separate...
It may sound obvious, but may help someone experiencing the same issue. A simple workaround for this is changing **Print Width** formatter settings to some higher value (e.g. 999). 
I mean... `publish` operation should refer to the act of publishing a message in a channel. I'm confused too.
Maybe it's the same bug of this issue: #2835
Manually removing the attribute (plus getter/setter), corresponding to the discriminator property, from the generated class does the trick. As stated above, I've just needed to turn off the `DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES` configuration...
I would like to contribute to the project, but it's my first time ever in the open-source.. If the proposal of removing the discriminator property from the generated class is...
I've tried to generate the same example above for "spring" target with a 4.3.x build, but still can find the discriminator property in the class.
@keenanpepper In version 4.3.1 (#5243) the Jackson's `EXISTING_PROPERTY` strategy is being used for serializing type info, maybe to address this issue, but I think that it is not correct. In...