response-extension.openapi.yaml 407 B

1234567891011121314151617181920
  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. '404':
  16. x-error: true
  17. x-error-codes: [NOT_FOUND]
  18. description: Not found