I want to query a table from my database through my API. However, I do not know how many columns the table will have or what it will contain. How can I specify this in Swagger? This is what I would like to do:
paths:
/reports/{id}:
get:
summary: Detailed results
description: filler
parameters:
- name: id
in: path
description: filler
required: true
type: integer
format: int64
responses:
200:
description: OK
schema:
type: array
items:
$ref: '#/definitions/DynamicObject'
definitions:
DynamicObject:
type: object
properties:
**$IDONTKNOWWHATTODO**
Any ideas on how to define a JSON object without any specific parameters?
source
share