Fix: Mistakes in openapi specs
This commit is contained in:
parent
4e02e51fca
commit
b28ceb8659
1 changed files with 26 additions and 12 deletions
|
@ -22,7 +22,7 @@
|
||||||
"content": {
|
"content": {
|
||||||
"application/json": {
|
"application/json": {
|
||||||
"schema": {
|
"schema": {
|
||||||
"$ref": "#/components/schemas/guildConfig"
|
"$ref": "#/components/schemas/bootConfig"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -382,6 +382,20 @@
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"schemas": {
|
"schemas": {
|
||||||
|
"bootConfig": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"guilds": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/guildConfig"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"accessToken": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"guildConfig": {
|
"guildConfig": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
@ -506,17 +520,17 @@
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "varchar(20)",
|
"format": "varchar(20)"
|
||||||
"example": [
|
},
|
||||||
"1234567890123456789",
|
"example": [
|
||||||
"1234567890123456789",
|
"1234567890123456789",
|
||||||
"1234567890123456789",
|
"1234567890123456789",
|
||||||
"1234567890123456789",
|
"1234567890123456789",
|
||||||
"1234567890123456789",
|
"1234567890123456789",
|
||||||
"1234567890123456789",
|
"1234567890123456789",
|
||||||
"1234567890123456789"
|
"1234567890123456789",
|
||||||
]
|
"1234567890123456789"
|
||||||
}
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue