-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
old.stoplight.json
39 lines (34 loc) · 964 Bytes
/
old.stoplight.json
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
30
31
32
33
34
35
36
37
38
39
{
//Stoplight.io config file documentation.
//https://meta.stoplight.io/docs/platform/2.-workspaces/c.config.md
//Comments by Jean F. Queralt
//https://github.com/JFQueralt
//Exclude Irrelevant folders.
"exclude": ["/docs/minimal Dataedo sample", "docs/Diagrams", "Docs/Diagrams"],
//Force API documentation to be under API folder.
"formats": {
"openapi": {
"rootDir": "API/Reference",
"include": [
"**"
]
},
//Force Schema documentation to be under DB folder.
//Note: Looks like this setting is being currently ignored by Stoplight.io
"json_schema": {
"rootDir": "DB/Models",
"include": [
"**"
]
},
//Default folder for Stoplight.io documentation.
"markdown": {
"rootDir": "docs"
},
//Force Stoplight.io images to be under API folder.
"image": {
//"rootDir": "Assets/APIImages"
"rootDir": "API/Reference/Images"
}
}
}