{{"data": [{"name":"abc","id":"1"}, {"name":"pqr","id":"2"}],"anotherData":[{"age":"40","company":"company 1"}, {"age":"35","company":"company 2"}]}
responses:        '200':          description: 200 response          schema:            type: array            items:              $ref: '#/definitions/data'              $ref: '#/definitions/anotherData'definitions:
 data:    type: array    description: this is data description    items:      type: object      properties:        name:          type: string          description: name 
        Id:
          type: string
          description: ID  anotherData:    type: array    description: this is anotherData description    items:      type: object      properties:        age:          type: string          description: age
        company:
          type: string
          description: company  Empty:    type: object