Rafal Krupinski

Results 217 comments of Rafal Krupinski

wouldn't ```http://example.com/{+a}/{+b}/``` be ambiguous? Probably only one {+PathElement} per path should be allowed

@awwright > There's only one match that will be made by a finite state machine; the one such that b will never contain any "/" characters. Isn't that arbitrary? Might...

I think read/write-only properties are more about if they're allowed in object. Read-only property should be only allowed in a response model, so there should be validation for the request...

there is a problem with x-icon - it means the icon should be in .ico format

why do you keep including changes to rubocop file?

I had the same problem. I've removed themes/* but I still had ```yml module: imports: - path: github.com/mattesilver/hugo-goat-counter theme: - hugo-goat-counter ``` Just remove theme from the config

Explicit property requirement/nullability for read and write. Something like ```yaml properties: prop: schema: read: require: boolean | 'forbid' nullable: boolean write: ... ```

Currently we have read- and writeOnly properties to handle cases of slightly different types for incoming and outgoing data. But the PATCH operation is special as it typically allows any...

``` from importlib.metadata import version print(version('')) ```