Guest User

Untitled

a guest
Jan 20th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. swagger: "2.0"
  2. info:
  3. title: "Example API"
  4. version: "1.0.0"
  5. host: "example.com"
  6. paths:
  7. /foo:
  8. get:
  9. parameters:
  10. - in: "query"
  11. name: "foo"
  12. type: "string"
  13. enum: ["'"]
  14. responses:
  15. 200:
  16. description: ''
  17. post:
  18. parameters:
  19. - in: "body"
  20. schema:
  21. $ref: "#/definitions/x"
  22. responses:
  23. 200:
  24. description: ''
  25. definitions:
  26. x:
  27. type: "object"
  28. properties:
  29. y:
  30. type: "string"
  31. enum: ["'"]
Add Comment
Please, Sign In to add comment