Update explicit_server_in_path.json

This commit is contained in:
Luis Tejeda
2022-07-18 14:03:43 -05:00
parent 4634e8d9d2
commit 1f6ce673cb

View File

@@ -451,6 +451,67 @@
}
}
}
},
"/auth/schema#delete": {
"delete": {
"operationId": "put_schema",
"summary": "Fragment url no servers",
"description": "Authorize a user.",
"tags": [
"Authorization"
],
"security": [],
"parameters": [
{
"name": "response_type",
"description": "The type of response we'd like to receive.",
"in": "query",
"example": "code",
"required": true,
"schema": {
"type": "string",
"format": "token",
"enum": [
"code"
]
}
},
{
"name": "client_id",
"description": "The Client ID.",
"in": "query",
"example": "ly1nj6n11vionaie65emwzk575hnnmrk",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Does not return any data, but rather should be used in the browser.",
"content": {
"text/html": {
"schema": {
"type": "string",
"format": "html"
}
}
}
},
"default": {
"description": "Does not return any data, but rather should be used in the browser.",
"content": {
"text/html": {
"schema": {
"type": "string",
"format": "html"
}
}
}
}
}
}
}
},
"components": {