I can't see the "add item" button in swagger UI
I have this
name: deviceIds
description: |-
Comma separated list of resource device IDs and ranges. Multiple ranges can be provided using the abbreviations **GT** (greater than), **LT** (less than), **GTE** (greater than or equal to) and **LTE** (less than or equal to). For ranges with two limits, **::** is used as the delimiter.
The general range format is:
**[symbol-abbreviation][string/numeric-value]** [OR]
**[symbol-abbreviation][string/numeric-value]::[symbol-abbreviation][string/numeric-value]**
in: query
required: false
style: form
explode: true
schema:
oneOf:
- type: array
items:
type: string
- type: string
examples:
numbersIDs:
summary: Example of a list of numbers for IDs
value: 1, 2, 3, 4
rangeIDs:
summary: Example of a range of IDs
value: 'GTE1::LT5'
mixedIDs:
summary: Example of a mix of ranges and specific IDs
value: 1, 2, 3, 4, 'GTE5::LTE10', 11, 12, 'GT13'
and yet it doesn't show in the UI with the "add item" button , shows in a text box. I have swagger 3.0.0
Thanks!