-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-config.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathsample-config.json
File metadata and controls
65 lines (65 loc) · 1.67 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "dev-docs",
"description": "Documentation server hosting multiple libraries",
"cacheDir": "./cache",
"updateInterval": 30,
"refreshInterval": 10,
"libraries": [
{
"name": "relaxjs",
"description": "Lightweight JavaScript framework for streamlined UIs",
"sources": [
{
"type": "github",
"origin": "https://github.com/user/relaxjs",
"kind": "docs",
"folder": "docs"
},
{
"type": "github",
"origin": "https://github.com/user/relaxjs",
"kind": "api",
"folder": "api"
}
]
},
{
"name": "petstore",
"description": "Petstore OpenAPI spec (example)",
"sources": [
{
"type": "disk",
"origin": "./schemas/petstore",
"kind": "schema"
}
]
},
{
"name": "mylib-local",
"description": "Local checkout of MyLib — docs and C# XML API comments",
"sources": [
{ "type": "disk", "origin": "./mylib/docs", "kind": "docs" },
{ "type": "disk", "origin": "./mylib/bin/Release", "kind": "api" }
]
},
{
"name": "orders-api",
"description": "Order handling service — OpenAPI spec fetched from the running service",
"sources": [
{
"type": "url",
"origin": "https://localhost:5001/openapi/v1.json",
"kind": "schema",
"name": "orders"
}
]
},
{
"name": "exports",
"description": "Nightly JSON exports — queried, never read whole",
"sources": [
{ "type": "disk", "origin": "./exports", "kind": "data" }
]
}
]
}