nextcloud/apps/comments/openapi.json
jld3103 8f0a35e13f
comments: Ignore endpoints in OpenAPI
Signed-off-by: jld3103 <jld3103yt@gmail.com>
2023-09-04 20:23:24 +02:00

46 строки
1.1 KiB
JSON

{
"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": []
}