v1-response.js 437 B

1234567891011121314151617181920
  1. /**
  2. * @swagger
  3. *
  4. * components:
  5. * schemas:
  6. * V1ResponseOK:
  7. * description: API is succeeded
  8. * type: boolean
  9. * V1Response:
  10. * description: Response v1
  11. * type: object
  12. * properties:
  13. * ok:
  14. * $ref: '#/components/schemas/V1ResponseOK'
  15. * responses:
  16. * 403:
  17. * description: 'Forbidden'
  18. * 500:
  19. * description: 'Internal Server Error'
  20. */