get.json 493 B

1234567891011121314151617181920212223242526
  1. {
  2. "operationId": "checkVersion",
  3. "summary": "Returns any new version data from github",
  4. "tags": ["public"],
  5. "responses": {
  6. "200": {
  7. "description": "200 response",
  8. "content": {
  9. "application/json": {
  10. "examples": {
  11. "default": {
  12. "value": {
  13. "current": "v2.12.0",
  14. "latest": "v2.13.4",
  15. "update_available": true
  16. }
  17. }
  18. },
  19. "schema": {
  20. "$ref": "../../../components/check-version-object.json"
  21. }
  22. }
  23. }
  24. }
  25. }
  26. }