Martin Váňa

Results 4 comments of Martin Váňa

The problem is that BC change regarding exclusiveMinimum/exclusiveMaximum was introduced in OpenAPI 3.1 https://github.com/OAI/OpenAPI-Specification/releases/tag/3.1.0-rc0 > exclusiveMaximum and exclusiveMinimum cannot accept boolean values (following JSON Schema). https://www.openapis.org/blog/2021/02/16/migrating-from-openapi-3-0-to-3-1-0 ``` # OpenAPI v3.0...

One possible solution is to use `\DateTimeInterface`.

Rubberducking at its finest :( Solution is to use [typed properties](https://github.com/vanam/forest-project/commit/776789e714ab8daeea97b13c2e44a35a400d9ebb) (and fix typos I made during example creation). However, new bug appears: when I try to use typed property...

I tried to create a [structured request](https://github.com/vanam/forest-project/commit/aa805f3dea1ebd203ea9eb83d9a905a4e3bcad18) and everything is an array. ``` App\Domain\Api\Request\CreateUsersReqDto users: array 0 => array 'email' => '[email protected]' 'name' => 'Karel' 'surname' => 'Vommáčka' 'username' =>...