Forum Discussion

BostonKevin's avatar
BostonKevin
Contributor
6 years ago
Solved

Way to Model Response An Array of Different Objects With Identical Properties

Hi!

 

In Swagger Editor is there a way to model an array of objects each of which has identical properties but with different values for these properties?  This array is in a response to a delete operation and has the following structure:

{
  "Modifications_Following_DELETE": [
    {
      "rows_deleted": 0,
      "table_name": "Table_X"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_XX"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_BBBB"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_CCC"
    },
    {
      "rows_deleted": 1,
      "table_name": "Table_DDD"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_EEE"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_FFF"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_HHH"
    },
    {
      "rows_deleted": 0,
      "table_name": "Table_III"
    }
  ]
}

It is easy enough to model an array  consisting of objects, but getting the names of all the tables is not obvious. Perhaps there is a way?  

 

Thanks!