I'm using Swagger OpenApi 3.0.3 and want to use an array field with objects in it. My field definition is the following:
* - name: filter_query
* in: query
* schema:
* type: array
* items:
* type: object
* properties:
* value:
* type: string
* field_id:
* type: string
* description: Filter
If y add two objects to the array a get an array but if I just send one object I receive an object. Am I missing something?!