openapi.yaml 376 B

123456789101112131415161718192021
  1. openapi: "3.0.0"
  2. info:
  3. title: Testcase API
  4. version: 2.0.0
  5. paths:
  6. '/endpoint':
  7. get:
  8. parameters:
  9. - name: type
  10. in: query
  11. example: fruit
  12. schema:
  13. type: string
  14. enum:
  15. - fruit
  16. - vegetable
  17. - drink
  18. responses:
  19. '200':
  20. description: 200 response