get.json 514 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "operationId": "health",
  3. "summary": "Returns the API health status",
  4. "tags": ["public"],
  5. "responses": {
  6. "200": {
  7. "description": "200 response",
  8. "content": {
  9. "application/json": {
  10. "examples": {
  11. "default": {
  12. "value": {
  13. "status": "OK",
  14. "setup": true,
  15. "version": {
  16. "major": 2,
  17. "minor": 1,
  18. "revision": 0
  19. }
  20. }
  21. }
  22. },
  23. "schema": {
  24. "$ref": "../components/health-object.json"
  25. }
  26. }
  27. }
  28. }
  29. }
  30. }