4641.yaml 906 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. openapi: 3.0.0
  2. info:
  3. title: Demo API
  4. description: First test
  5. termsOfService: 'http://demo.io/terms-of-service/'
  6. contact:
  7. name: Demo Support
  8. email: support@demo.io
  9. version: 1.0.0
  10. paths:
  11. /4641_1:
  12. get:
  13. summary: Returns a 200
  14. security:
  15. - api_key_1: []
  16. responses:
  17. '200':
  18. description: A 200
  19. content:
  20. application/text:
  21. schema:
  22. type: string
  23. /4641_2:
  24. get:
  25. summary: Returns a 200
  26. security:
  27. - api_key_1: []
  28. - api_key_2: []
  29. responses:
  30. '200':
  31. description: A 200
  32. content:
  33. application/text:
  34. schema:
  35. type: string
  36. components:
  37. securitySchemes:
  38. api_key_1:
  39. type: apiKey
  40. name: api_key_1
  41. in: header
  42. api_key_2:
  43. type: apiKey
  44. name: api_key_2
  45. in: header