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
Copy file name to clipboardExpand all lines: openapi/index_openapi.json
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2004,6 +2004,19 @@
2004
2004
"title": "Response Message",
2005
2005
"description": "response string from the server"
2006
2006
},
2007
+
"request_delay": {
2008
+
"anyOf": [
2009
+
{
2010
+
"type": "number",
2011
+
"minimum": 0.0
2012
+
},
2013
+
{
2014
+
"type": "null"
2015
+
}
2016
+
],
2017
+
"title": "Request Delay",
2018
+
"description": "A non-negative float giving time in seconds that the client is suggested to wait before issuing a subsequent request.\nImplementation note: the functionality of this field overlaps to some degree with features provided by the HTTP error `429 Too Many Requests` and the `Retry-After` HTTP header.\nImplementations are suggested to provide consistent handling of request overload through both mechanisms."
Copy file name to clipboardExpand all lines: openapi/openapi.json
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3852,6 +3852,19 @@
3852
3852
"title": "Response Message",
3853
3853
"description": "response string from the server"
3854
3854
},
3855
+
"request_delay": {
3856
+
"anyOf": [
3857
+
{
3858
+
"type": "number",
3859
+
"minimum": 0.0
3860
+
},
3861
+
{
3862
+
"type": "null"
3863
+
}
3864
+
],
3865
+
"title": "Request Delay",
3866
+
"description": "A non-negative float giving time in seconds that the client is suggested to wait before issuing a subsequent request.\nImplementation note: the functionality of this field overlaps to some degree with features provided by the HTTP error `429 Too Many Requests` and the `Retry-After` HTTP header.\nImplementations are suggested to provide consistent handling of request overload through both mechanisms."
@@ -360,6 +367,15 @@ class ResponseMeta(jsonapi.Meta):
360
367
str|None, StrictField(description="response string from the server")
361
368
] =None
362
369
370
+
request_delay: Annotated[
371
+
NonNegativeFloat|None,
372
+
StrictField(
373
+
description="""A non-negative float giving time in seconds that the client is suggested to wait before issuing a subsequent request.
374
+
Implementation note: the functionality of this field overlaps to some degree with features provided by the HTTP error `429 Too Many Requests` and the `Retry-After` HTTP header.
375
+
Implementations are suggested to provide consistent handling of request overload through both mechanisms."""
376
+
),
377
+
] =None
378
+
363
379
implementation: Annotated[
364
380
Implementation|None,
365
381
StrictField(description="a dictionary describing the server implementation"),
0 commit comments