Hello, I'm trying to get this code working but I get a invalid parameter 
definition error. Is it possible to link a complex object inside an array 
of the get parameters??  Here is the code I'm using:
Thank you!!

swagger: '2.0'
info:
  version: 0.0.0
  title: Simple API
paths:
  /:
    get:
      parameters:
        - name: passengers
          in: query
          type: array
          items:
            #$refs: '#/definitions/pax'
            type: string 
            
      responses:
        200:
          description: OK

definitions:
  pax:
    type: object
    properties:
      name:
        type: string
      familyname:
        type: string

-- 
You received this message because you are subscribed to the Google Groups 
"Swagger" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to swagger-swaggersocket+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to