12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "openapi": "3.0.3",
- "info": {
- "title": "comments",
- "version": "0.0.1",
- "description": "Files app plugin to add comments to files",
- "license": {
- "name": "agpl"
- }
- },
- "components": {
- "securitySchemes": {
- "basic_auth": {
- "type": "http",
- "scheme": "basic"
- },
- "bearer_auth": {
- "type": "http",
- "scheme": "bearer"
- }
- },
- "schemas": {
- "Capabilities": {
- "type": "object",
- "required": [
- "files"
- ],
- "properties": {
- "files": {
- "type": "object",
- "required": [
- "comments"
- ],
- "properties": {
- "comments": {
- "type": "boolean"
- }
- }
- }
- }
- }
- }
- },
- "paths": {},
- "tags": []
- }
|