What is the correct way to define a result type of array of objects
1. is this definition correct to return a variable size array of list items? responses: 200: description: List Returned schema: type: object format: array properties: ListID: type: integer format: int64 description: ID of the list ListName: type: string description: List name ListItem: type: string description: List Item Text Abbreviation: type: string description: Abbreviation text if applicable 2.when I generate the client code in c# do I need to do something to process the array. right now I am getting a json deserialization returns null. It seems to me that if I define the results as an array of items it should give me a list ofInlineResponsexxx's thanks for you helpSolved2.4KViews0likes5Comments