Skip to content

Commit b549759

Browse files
committed
types
1 parent 820681c commit b549759

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

services/api/openapi.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10423,6 +10423,14 @@
1042310423
}
1042410424
]
1042510425
},
10426+
"rate_limit": {
10427+
"nullable": true,
10428+
"allOf": [
10429+
{
10430+
"$ref": "#/components/schemas/JsonRateLimit"
10431+
}
10432+
]
10433+
},
1042610434
"stats": {
1042710435
"nullable": true,
1042810436
"allOf": [
@@ -10628,6 +10636,29 @@
1062810636
"uuid"
1062910637
]
1063010638
},
10639+
"JsonRateLimit": {
10640+
"type": "object",
10641+
"properties": {
10642+
"claimed": {
10643+
"nullable": true,
10644+
"type": "integer",
10645+
"format": "uint32",
10646+
"minimum": 0
10647+
},
10648+
"unclaimed": {
10649+
"nullable": true,
10650+
"type": "integer",
10651+
"format": "uint32",
10652+
"minimum": 0
10653+
},
10654+
"window": {
10655+
"nullable": true,
10656+
"type": "integer",
10657+
"format": "uint32",
10658+
"minimum": 0
10659+
}
10660+
}
10661+
},
1063110662
"JsonRemoveModel": {
1063210663
"type": "object",
1063310664
"properties": {
@@ -11355,10 +11386,12 @@
1135511386
"properties": {
1135611387
"enabled": {
1135711388
"nullable": true,
11389+
"description": "Enable stats collection",
1135811390
"type": "boolean"
1135911391
},
1136011392
"offset": {
1136111393
"nullable": true,
11394+
"description": "Number of seconds from midnight",
1136211395
"type": "integer",
1136311396
"format": "uint32",
1136411397
"minimum": 0

0 commit comments

Comments
 (0)