deep-linking.openapi.yaml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. openapi: "3.0.0"
  2. paths:
  3. /:
  4. get:
  5. operationId: "myOperation"
  6. tags: ["myTag"]
  7. summary: an operation
  8. responses:
  9. '200':
  10. description: a pet to be returned
  11. content:
  12. application/json:
  13. schema:
  14. type: object
  15. /withSpaces:
  16. post:
  17. operationId: "my Operation"
  18. tags: ["my Tag"]
  19. summary: an operation
  20. responses:
  21. '200':
  22. description: a pet to be returned
  23. content:
  24. application/json:
  25. schema:
  26. type: object
  27. /utf16fragments:
  28. head:
  29. operationId: "пошел"
  30. tags: ["шеллы"]
  31. summary: an operation
  32. responses:
  33. "200":
  34. description: ok
  35. /withUnderscores:
  36. patch:
  37. operationId: "underscore_Operation"
  38. tags: ["underscore_Tag"]
  39. summary: an operation
  40. responses:
  41. '200':
  42. description: a pet to be returned
  43. content:
  44. application/json:
  45. schema:
  46. type: object
  47. /noOperationId:
  48. put:
  49. tags: ["tagTwo"]
  50. summary: some operations are anonymous...
  51. responses:
  52. '200':
  53. description: a pet to be returned
  54. content:
  55. application/json:
  56. schema:
  57. type: object