You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Default return values follow Problem Details for HTTP APIs as specified in [RFC7807](https://tools.ietf.org/html/rfc7807).\n\nCurrently, return values contain the following members of a problem details object:\n- \"title\" (string) - A short, human-readable summary of the problem type.\n- \"status\" (number) - The HTTP status code generated by the origin server for this occurrence of the problem.\n- \"detail\" (string) - A human-readable explanation specific to this occurrence of the problem.\n",
3
+
"content": {
4
+
"application/problem+json": {
5
+
"schema": {
6
+
"type": "object",
7
+
"required": [
8
+
"title",
9
+
"status",
10
+
"detail"
11
+
],
12
+
"properties": {
13
+
"title": {
14
+
"type": "string",
15
+
"description": "A short, human-readable summary of the problem type."
16
+
},
17
+
"status": {
18
+
"type": "number",
19
+
"description": "HTTP statuscode"
20
+
},
21
+
"detail": {
22
+
"type": "string",
23
+
"description": "A human-readable explanation specific to this occurrence of the problem."
0 commit comments