You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

openapi.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "openapi": "3.0.3",
  3. "info": {
  4. "title": "systemtags",
  5. "version": "0.0.1",
  6. "description": "Collaborative tagging functionality which shares tags among people.",
  7. "license": {
  8. "name": "agpl"
  9. }
  10. },
  11. "components": {
  12. "securitySchemes": {
  13. "basic_auth": {
  14. "type": "http",
  15. "scheme": "basic"
  16. },
  17. "bearer_auth": {
  18. "type": "http",
  19. "scheme": "bearer"
  20. }
  21. },
  22. "schemas": {
  23. "Capabilities": {
  24. "type": "object",
  25. "required": [
  26. "systemtags"
  27. ],
  28. "properties": {
  29. "systemtags": {
  30. "type": "object",
  31. "required": [
  32. "enabled"
  33. ],
  34. "properties": {
  35. "enabled": {
  36. "type": "boolean",
  37. "enum": [
  38. true
  39. ]
  40. }
  41. }
  42. }
  43. }
  44. }
  45. }
  46. },
  47. "paths": {},
  48. "tags": []
  49. }