frozen-array-input.yaml 726 B

1234567891011121314151617181920212223242526272829303132333435
  1. openapi: '3.0.0'
  2. info:
  3. description: >-
  4. Repro API
  5. title: Repro API
  6. version: '1.0'
  7. paths:
  8. /test:
  9. get:
  10. summary: Test get
  11. parameters:
  12. - name: fields
  13. in: query
  14. required: false
  15. explode: false
  16. schema:
  17. type: array
  18. items:
  19. type: string
  20. style: form
  21. example:
  22. - friends
  23. - family
  24. responses:
  25. 200:
  26. description: Success!
  27. content:
  28. application/json:
  29. schema:
  30. type: object
  31. properties:
  32. id:
  33. type: integer
  34. name:
  35. type: string