5181.yaml 662 B

123456789101112131415161718192021222324252627
  1. info:
  2. title: Required parameter missing, doesn't block request from executing.
  3. version: '1'
  4. openapi: 3.0.0
  5. servers:
  6. - url: http://httpbin.org/anything
  7. paths:
  8. /foos:
  9. post:
  10. requestBody:
  11. content:
  12. application/x-www-form-urlencoded:
  13. # application/json:
  14. # application/xml:
  15. schema:
  16. properties:
  17. foo:
  18. type: string
  19. bar:
  20. type: string
  21. required:
  22. - foo
  23. type: object
  24. required: true # Note this doesn't have an impact
  25. responses:
  26. default:
  27. description: ok