-
Notifications
You must be signed in to change notification settings - Fork 1
/
openAPI.json
82 lines (82 loc) · 2.87 KB
/
openAPI.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"openapi":"3.0.2",
"info": {
"title":"WC Info",
"version":"1.0"
},
"servers": [
{"url":"https://cf-sw.bahrus.workers.dev/"}
],
"paths": {
"/": {
"description": "Reference View for Custom Element Manifest",
"get": {
"description": "Reference for Custom Element Manifest",
"parameters": [
{
"name": "href",
"in": "query",
"description": "Location of Custom Element Manifest file",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "stylesheet",
"in": "query",
"description": "Location of CSS File to include",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "embedded",
"in": "query",
"description": "If 'true', minimal html response provided without html/head/body tags",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "tags",
"in": "query",
"description": "Comma delimited list of tags to include in response",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "ts",
"in": "query",
"description": "Timestamp. Allow the server to cache the Manifest JSON file using this as a key",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "tocXSLT",
"in": "query",
"description": "Path to XSLT file that generates links / table of contents",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"text/html":{}
}
}
}
}
}
}
}