Return an array of object in Swaggerhub
问题 I am defining an API specification in swaggerhub. The /contacts request returns an array of contacts. The definition is below: /contacts: get: tags: - contacts summary: Get all the contacts description: This displays all the contacts present for the user. operationId: getContact produces: - application/json - application/xml responses: 200: description: successful operation schema: $ref: \'#/definitions/AllContacts\' 400: description: Invalid id supplied 404: description: Contact not found