get.json 644 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "operationId": "getSettings",
  3. "summary": "Get all settings",
  4. "tags": ["Settings"],
  5. "security": [
  6. {
  7. "BearerAuth": ["settings"]
  8. }
  9. ],
  10. "responses": {
  11. "200": {
  12. "description": "200 response",
  13. "content": {
  14. "application/json": {
  15. "examples": {
  16. "default": {
  17. "value": [
  18. {
  19. "id": "default-site",
  20. "name": "Default Site",
  21. "description": "What to show when Nginx is hit with an unknown Host",
  22. "value": "congratulations",
  23. "meta": {}
  24. }
  25. ]
  26. }
  27. },
  28. "schema": {
  29. "$ref": "../../components/setting-list.json"
  30. }
  31. }
  32. }
  33. }
  34. }
  35. }