RapiDoc
RapiDoc copied to clipboard
Array property "uniqueItems" is not displayed
Within a schema of type array there are properties "minItems", "maxItems" and "uniqueItems" to define restraints for the array items. (see here)
Currently the minItems- and maxItems-properties are displayed in the doc within the schema tab of a request body. The property uniqueItems is missing.
OpenAPI:
type: array
items:
$ref: #/components/schemas/securityItem
uniqueItems: true
minItems: 1
Rendered:

The prop should be displayed just like minItems or maxItems.