Phillip Schichtel

Results 77 issues of Phillip Schichtel

It is sometimes the case that I want to parse an object with a few concrete properties and a bunch of additional properties. OpenAPI 3's [Responses Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#responses-object) is an example...

feature

## Expected Behavior ```kotlin enum class Test { TEST_1, TEST_2, TEST_3, } fun bla(value: Test) = when (value) { Test.TEST_1, Test.TEST_2 -> { println("1, 2") } Test.TEST_3 -> { println("3")...

trailing-comma-rule

the `::nginx` class takes the access log as "<target> <format>" via the `http_access_log` parameter, while `::nginx::resource::vhost` has 2 parameters, one for the log target (`access_log`) and one for the format...

enhancement

I do understand that Anorm builds on top of JDBC which is inherently synchronous, just like most of the underlying drivers and protocols. However there are some databases that natively...

### Describe the bug I've written a tiny function to convert YamlNode's into JsonElement's (the stuff I'm reading is always JSON compatible). As part of that I have to convert...

wontfix

this is still very much broken and there a bunch of open questions, but this could be a viable starting point. This was basically adapted from the Json equivalents. The...

This is an alternative to #2212. This makes the sorting stable even if entries are modified/published in the same second. It unconditionally adds the id column to the `ORDER BY`'s....

This is an alternative to #2211. This makes the sorting stable even if entries are modified/published in the same second. It adds a query parameter to allow sorting by both...

I've blogged about this before ([see here](https://ldjam.com/events/ludum-dare/48/drillromantik/ldjam-api-misbehaving)) and I've also been in touch with @mikekasprzak regarding the issue. After participating in LD51 I tested this again with the commands from...

Not all fields that should be non-null are in a spec like this for object B: ```yml components: schemas: A: type: object required: - a properties: a: type: string b:...