4943.yaml 825 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. openapi: 3.0.0
  2. info:
  3. description: Test API
  4. version: v1
  5. title: Test API
  6. tags:
  7. - name: Test
  8. description: Test API
  9. servers:
  10. - url: /v1
  11. paths:
  12. /test:
  13. post:
  14. tags:
  15. - Test
  16. summary: Test endpoint
  17. description: Test
  18. operationId: postTest
  19. responses:
  20. '200':
  21. description: Returns response
  22. content:
  23. application/xml:
  24. schema:
  25. $ref: '#/components/schemas/test'
  26. components:
  27. schemas:
  28. test:
  29. type: object
  30. properties:
  31. a:
  32. type: string
  33. b:
  34. type: integer
  35. c:
  36. oneOf:
  37. - type: object
  38. - type: array
  39. items:
  40. type: string
  41. - type: boolean
  42. - type: integer
  43. - type: number