-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathnext.openapi.json
More file actions
29 lines (29 loc) · 617 Bytes
/
Copy pathnext.openapi.json
File metadata and controls
29 lines (29 loc) · 617 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"openapi": "3.0.0",
"info": {
"title": "API Documentation",
"version": "1.0.0",
"description": "This is the OpenAPI specification for your project."
},
"servers": [
{
"url": "http://localhost:3000/api",
"description": "Local development server"
}
],
"components": {
"securitySchemes": {
"BearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
}
},
"apiDir": "../app/api",
"schemaDir": "./",
"docsUrl": "api-docs",
"ui": "swagger",
"outputFile": "swagger.json",
"includeOpenApiRoutes": false
}