mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
7fd8c0ecfe
It's possible to set a count constraint with a min but no max, which would generate an OpenAPI Schema like... "property": { "type": "array", "minItems": 1, "maxItems": 0 } With this change the schema will only set `minItems` in that example.