Config API documentation

This commit is contained in:
2021-01-05 02:03:39 +01:00
parent 4228e923b4
commit 4a444c4168
8 changed files with 3202 additions and 0 deletions
+66
View File
@@ -0,0 +1,66 @@
{
"paths": {
"/slugs": {
"get": {
"deprecated": false,
"description": "",
"responses": {
"200": {
"description": "response",
"content": {
"application/json": {
"schema": {
"properties": {
"foo": {
"type": "string"
}
}
}
}
}
},
"403": {
"description": "Forbidden",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
},
"404": {
"description": "Not found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
},
"default": {
"description": "unexpected error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
}
},
"summary": "",
"tags": [
"Slugs"
],
"parameters": []
}
}
},
"tags": [
{
"name": "Slugs"
}
]
}