get.json 998 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "operationId": "reportsHosts",
  3. "summary": "Report on Host Statistics",
  4. "tags": ["reports"],
  5. "security": [
  6. {
  7. "bearerAuth": []
  8. }
  9. ],
  10. "responses": {
  11. "200": {
  12. "description": "200 response",
  13. "content": {
  14. "application/json": {
  15. "examples": {
  16. "default": {
  17. "value": {
  18. "proxy": 20,
  19. "redirection": 1,
  20. "stream": 0,
  21. "dead": 1
  22. }
  23. }
  24. },
  25. "schema": {
  26. "type": "object",
  27. "properties": {
  28. "proxy": {
  29. "type": "integer",
  30. "description": "Proxy Hosts Count",
  31. "example": 20
  32. },
  33. "redirection": {
  34. "type": "integer",
  35. "description": "Redirection Hosts Count",
  36. "example": 2
  37. },
  38. "stream": {
  39. "type": "integer",
  40. "description": "Streams Count",
  41. "example": 0
  42. },
  43. "dead": {
  44. "type": "integer",
  45. "description": "404 Hosts Count",
  46. "example": 3
  47. }
  48. }
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }