Skip to content

Commit a3495c8

Browse files
committed
fixup! fix(openapi): Regenerate OpenAPI
1 parent f8d9679 commit a3495c8

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

apps/systemtags/openapi.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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 users.",
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+
}

0 commit comments

Comments
 (0)