get.json 750 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "operationId": "testHttpReach",
  3. "summary": "Test HTTP Reachability",
  4. "tags": ["Certificates"],
  5. "security": [
  6. {
  7. "BearerAuth": ["certificates"]
  8. }
  9. ],
  10. "parameters": [
  11. {
  12. "in": "query",
  13. "name": "domains",
  14. "description": "Expansions",
  15. "required": true,
  16. "schema": {
  17. "type": "string",
  18. "example": "[\"test.example.ord\",\"test.example.com\",\"nonexistent.example.com\"]"
  19. }
  20. }
  21. ],
  22. "responses": {
  23. "200": {
  24. "description": "200 response",
  25. "content": {
  26. "application/json": {
  27. "examples": {
  28. "default": {
  29. "value": {
  30. "test.example.org": "ok",
  31. "test.example.com": "other:Invalid domain or IP",
  32. "nonexistent.example.com": "404"
  33. }
  34. }
  35. }
  36. }
  37. }
  38. }
  39. }
  40. }