get.json 491 B

1234567891011121314151617181920212223242526272829
  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. "version": {
  15. "major": 2,
  16. "minor": 1,
  17. "revision": 0
  18. }
  19. }
  20. }
  21. },
  22. "schema": {
  23. "$ref": "../components/health-object.json"
  24. }
  25. }
  26. }
  27. }
  28. }
  29. }