5455.yaml 421 B

1234567891011121314151617181920212223242526
  1. openapi: 3.0.2
  2. info:
  3. title: test
  4. version: 1.0.0
  5. paths:
  6. /foo:
  7. post:
  8. requestBody:
  9. required: true
  10. content:
  11. application/json:
  12. schema:
  13. $ref: '#/components/schemas/Foo'
  14. responses:
  15. 201:
  16. description: Created
  17. components:
  18. schemas:
  19. Foo:
  20. type: object
  21. properties:
  22. foo:
  23. type: string
  24. example: bar