Bert Ramakers

Results 11 comments of Bert Ramakers

Thanks for the thorough explanation @sorinsarca! How would you suggest we tackle this issue if it cannot be fixed in the validator? By using 2 duplicate schemas that are 99%...

I think that would solve most cases yes. It's also an issue that people are experiencing with Spectral https://github.com/stoplightio/spectral/issues/1274 Someone linked to the Swagger (OpenAPI) docs there, which state: >...

I have another use case for this: Rewriting the path of requests before they are matched, to support deprecated / legacy paths without having to register the route twice.

We also encountered this bug today. AFAIK `readOnly` and `writeOnly` are not removed from OpenAPI v3.1.0, it was only adjusted to be compliant with JSON schema which means that it...

I ran into the same issue today but for POST parameters with multiple values. For anyone experiencing this as well, here's how I fixed it. ### 1. Override the `createBaseString`...

Major frameworks like Prooph and Broadway do it as described by @MetalArend : the method for recording an event directly calls the method for updating the internal state. **Broadway**: https://github.com/qandidate-labs/broadway/blob/master/src/Broadway/EventSourcing/EventSourcedAggregateRoot.php#L31-L47...

Hi @tobyzerner, is there any news regarding the OpenAPI spec support?

Thanks, I'll try it out soon! ~One small suggestion I already have would be to put the `name` of the collection in the `summary` of the operation instead of the...

I'd be interested in this for some of our use-cases. Can you expand on how it is already possible with custom endpoints?

Thanks @tobyzerner , I'll go with either solution 1 or 2 for now then :)