zklighter-perps 1.0.28 → 1.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/AccountApi.ts +157 -235
- package/apis/BlockApi.ts +28 -26
- package/apis/CandlestickApi.ts +28 -28
- package/apis/InfoApi.ts +21 -21
- package/apis/LiquidationApi.ts +4 -4
- package/apis/OrderApi.ts +85 -85
- package/apis/RootApi.ts +5 -5
- package/apis/TransactionApi.ts +208 -208
- package/openapi.json +80 -131
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"paths": {
|
|
18
18
|
"/": {
|
|
19
19
|
"get": {
|
|
20
|
-
"summary": "
|
|
21
|
-
"operationId": "
|
|
20
|
+
"summary": "status",
|
|
21
|
+
"operationId": "status",
|
|
22
22
|
"responses": {
|
|
23
23
|
"200": {
|
|
24
24
|
"description": "A successful response.",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
},
|
|
42
42
|
"/api/v1/account": {
|
|
43
43
|
"get": {
|
|
44
|
-
"summary": "
|
|
45
|
-
"operationId": "
|
|
44
|
+
"summary": "account",
|
|
45
|
+
"operationId": "account",
|
|
46
46
|
"responses": {
|
|
47
47
|
"200": {
|
|
48
48
|
"description": "A successful response.",
|
|
@@ -81,13 +81,13 @@
|
|
|
81
81
|
"consumes": [
|
|
82
82
|
"multipart/form-data"
|
|
83
83
|
],
|
|
84
|
-
"description": "Get account by account's
|
|
84
|
+
"description": "Get account by account's index. <br>More details about account index: [Account Index](https://apidocs.lighter.xyz/docs/account-index)<hr>**Response Description:**<br><br>1) **Status:** 1 is active 0 is inactive.<br>2) **Collateral:** The amount of collateral in the account.<hr>**Position Details Description:**<br>1) **OOC:** Open order count in that market.<br>2) **Sign:** 1 for Long, -1 for Short.<br>3) **Position:** The amount of position in that market.<br>4) **Avg Entry Price:** The average entry price of the position.<br>5) **Position Value:** The value of the position.<br>6) **Unrealized PnL:** The unrealized profit and loss of the position.<br>7) **Realized PnL:** The realized profit and loss of the position."
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"/api/v1/accountActiveOrders": {
|
|
88
88
|
"get": {
|
|
89
|
-
"summary": "
|
|
90
|
-
"operationId": "
|
|
89
|
+
"summary": "accountActiveOrders",
|
|
90
|
+
"operationId": "accountActiveOrders",
|
|
91
91
|
"responses": {
|
|
92
92
|
"200": {
|
|
93
93
|
"description": "A successful response.",
|
|
@@ -129,8 +129,8 @@
|
|
|
129
129
|
},
|
|
130
130
|
"/api/v1/accountInactiveOrders": {
|
|
131
131
|
"get": {
|
|
132
|
-
"summary": "
|
|
133
|
-
"operationId": "
|
|
132
|
+
"summary": "accountInactiveOrders",
|
|
133
|
+
"operationId": "accountInactiveOrders",
|
|
134
134
|
"responses": {
|
|
135
135
|
"200": {
|
|
136
136
|
"description": "A successful response.",
|
|
@@ -197,8 +197,8 @@
|
|
|
197
197
|
},
|
|
198
198
|
"/api/v1/accountOrders": {
|
|
199
199
|
"get": {
|
|
200
|
-
"summary": "
|
|
201
|
-
"operationId": "
|
|
200
|
+
"summary": "accountOrders",
|
|
201
|
+
"operationId": "accountOrders",
|
|
202
202
|
"responses": {
|
|
203
203
|
"200": {
|
|
204
204
|
"description": "A successful response.",
|
|
@@ -255,8 +255,8 @@
|
|
|
255
255
|
},
|
|
256
256
|
"/api/v1/accountPendingTxs": {
|
|
257
257
|
"get": {
|
|
258
|
-
"summary": "
|
|
259
|
-
"operationId": "
|
|
258
|
+
"summary": "accountPendingTxs",
|
|
259
|
+
"operationId": "accountPendingTxs",
|
|
260
260
|
"responses": {
|
|
261
261
|
"200": {
|
|
262
262
|
"description": "A successful response.",
|
|
@@ -306,8 +306,8 @@
|
|
|
306
306
|
},
|
|
307
307
|
"/api/v1/accountTxs": {
|
|
308
308
|
"get": {
|
|
309
|
-
"summary": "
|
|
310
|
-
"operationId": "
|
|
309
|
+
"summary": "accountTxs",
|
|
310
|
+
"operationId": "accountTxs",
|
|
311
311
|
"responses": {
|
|
312
312
|
"200": {
|
|
313
313
|
"description": "A successful response.",
|
|
@@ -373,8 +373,8 @@
|
|
|
373
373
|
},
|
|
374
374
|
"/api/v1/accounts": {
|
|
375
375
|
"get": {
|
|
376
|
-
"summary": "
|
|
377
|
-
"operationId": "
|
|
376
|
+
"summary": "accounts",
|
|
377
|
+
"operationId": "accounts",
|
|
378
378
|
"responses": {
|
|
379
379
|
"200": {
|
|
380
380
|
"description": "A successful response.",
|
|
@@ -429,8 +429,8 @@
|
|
|
429
429
|
},
|
|
430
430
|
"/api/v1/accountsByL1Address": {
|
|
431
431
|
"get": {
|
|
432
|
-
"summary": "
|
|
433
|
-
"operationId": "
|
|
432
|
+
"summary": "accountsByL1Address",
|
|
433
|
+
"operationId": "accountsByL1Address",
|
|
434
434
|
"responses": {
|
|
435
435
|
"200": {
|
|
436
436
|
"description": "A successful response.",
|
|
@@ -464,8 +464,8 @@
|
|
|
464
464
|
},
|
|
465
465
|
"/api/v1/apikeys": {
|
|
466
466
|
"get": {
|
|
467
|
-
"summary": "
|
|
468
|
-
"operationId": "
|
|
467
|
+
"summary": "apikeys",
|
|
468
|
+
"operationId": "apikeys",
|
|
469
469
|
"responses": {
|
|
470
470
|
"200": {
|
|
471
471
|
"description": "A successful response.",
|
|
@@ -507,8 +507,8 @@
|
|
|
507
507
|
},
|
|
508
508
|
"/api/v1/block": {
|
|
509
509
|
"get": {
|
|
510
|
-
"summary": "
|
|
511
|
-
"operationId": "
|
|
510
|
+
"summary": "block",
|
|
511
|
+
"operationId": "block",
|
|
512
512
|
"responses": {
|
|
513
513
|
"200": {
|
|
514
514
|
"description": "A successful response.",
|
|
@@ -552,8 +552,8 @@
|
|
|
552
552
|
},
|
|
553
553
|
"/api/v1/blockTxs": {
|
|
554
554
|
"get": {
|
|
555
|
-
"summary": "
|
|
556
|
-
"operationId": "
|
|
555
|
+
"summary": "blockTxs",
|
|
556
|
+
"operationId": "blockTxs",
|
|
557
557
|
"responses": {
|
|
558
558
|
"200": {
|
|
559
559
|
"description": "A successful response.",
|
|
@@ -597,8 +597,8 @@
|
|
|
597
597
|
},
|
|
598
598
|
"/api/v1/blocks": {
|
|
599
599
|
"get": {
|
|
600
|
-
"summary": "
|
|
601
|
-
"operationId": "
|
|
600
|
+
"summary": "blocks",
|
|
601
|
+
"operationId": "blocks",
|
|
602
602
|
"responses": {
|
|
603
603
|
"200": {
|
|
604
604
|
"description": "A successful response.",
|
|
@@ -653,8 +653,8 @@
|
|
|
653
653
|
},
|
|
654
654
|
"/api/v1/candlesticks": {
|
|
655
655
|
"get": {
|
|
656
|
-
"summary": "
|
|
657
|
-
"operationId": "
|
|
656
|
+
"summary": "candlesticks",
|
|
657
|
+
"operationId": "candlesticks",
|
|
658
658
|
"responses": {
|
|
659
659
|
"200": {
|
|
660
660
|
"description": "A successful response.",
|
|
@@ -724,7 +724,8 @@
|
|
|
724
724
|
},
|
|
725
725
|
"/api/v1/currentHeight": {
|
|
726
726
|
"get": {
|
|
727
|
-
"
|
|
727
|
+
"summary": "currentHeight",
|
|
728
|
+
"operationId": "currentHeight",
|
|
728
729
|
"responses": {
|
|
729
730
|
"200": {
|
|
730
731
|
"description": "A successful response.",
|
|
@@ -742,13 +743,13 @@
|
|
|
742
743
|
"tags": [
|
|
743
744
|
"block"
|
|
744
745
|
],
|
|
745
|
-
"
|
|
746
|
+
"description": "Get current height"
|
|
746
747
|
}
|
|
747
748
|
},
|
|
748
749
|
"/api/v1/exchangeStats": {
|
|
749
750
|
"get": {
|
|
750
|
-
"summary": "
|
|
751
|
-
"operationId": "
|
|
751
|
+
"summary": "exchangeStats",
|
|
752
|
+
"operationId": "exchangeStats",
|
|
752
753
|
"responses": {
|
|
753
754
|
"200": {
|
|
754
755
|
"description": "A successful response.",
|
|
@@ -771,8 +772,8 @@
|
|
|
771
772
|
},
|
|
772
773
|
"/api/v1/faucet": {
|
|
773
774
|
"get": {
|
|
774
|
-
"summary": "
|
|
775
|
-
"operationId": "
|
|
775
|
+
"summary": "faucet",
|
|
776
|
+
"operationId": "faucet",
|
|
776
777
|
"responses": {
|
|
777
778
|
"200": {
|
|
778
779
|
"description": "A successful response.",
|
|
@@ -806,8 +807,8 @@
|
|
|
806
807
|
},
|
|
807
808
|
"/api/v1/fundings": {
|
|
808
809
|
"get": {
|
|
809
|
-
"summary": "
|
|
810
|
-
"operationId": "
|
|
810
|
+
"summary": "fundings",
|
|
811
|
+
"operationId": "fundings",
|
|
811
812
|
"responses": {
|
|
812
813
|
"200": {
|
|
813
814
|
"description": "A successful response.",
|
|
@@ -872,8 +873,8 @@
|
|
|
872
873
|
},
|
|
873
874
|
"/api/v1/l2Signature": {
|
|
874
875
|
"post": {
|
|
875
|
-
"summary": "
|
|
876
|
-
"operationId": "
|
|
876
|
+
"summary": "l2Signature",
|
|
877
|
+
"operationId": "l2Signature",
|
|
877
878
|
"responses": {
|
|
878
879
|
"200": {
|
|
879
880
|
"description": "A successful response.",
|
|
@@ -909,8 +910,8 @@
|
|
|
909
910
|
},
|
|
910
911
|
"/api/v1/layer1BasicInfo": {
|
|
911
912
|
"get": {
|
|
912
|
-
"summary": "
|
|
913
|
-
"operationId": "
|
|
913
|
+
"summary": "layer1BasicInfo",
|
|
914
|
+
"operationId": "layer1BasicInfo",
|
|
914
915
|
"responses": {
|
|
915
916
|
"200": {
|
|
916
917
|
"description": "A successful response.",
|
|
@@ -933,8 +934,8 @@
|
|
|
933
934
|
},
|
|
934
935
|
"/api/v1/layer2BasicInfo": {
|
|
935
936
|
"get": {
|
|
936
|
-
"summary": "
|
|
937
|
-
"operationId": "
|
|
937
|
+
"summary": "layer2BasicInfo",
|
|
938
|
+
"operationId": "layer2BasicInfo",
|
|
938
939
|
"responses": {
|
|
939
940
|
"200": {
|
|
940
941
|
"description": "A successful response.",
|
|
@@ -957,8 +958,8 @@
|
|
|
957
958
|
},
|
|
958
959
|
"/api/v1/markNotifRead": {
|
|
959
960
|
"get": {
|
|
960
|
-
"summary": "
|
|
961
|
-
"operationId": "
|
|
961
|
+
"summary": "markNotifRead",
|
|
962
|
+
"operationId": "markNotifRead",
|
|
962
963
|
"responses": {
|
|
963
964
|
"200": {
|
|
964
965
|
"description": "A successful response.",
|
|
@@ -1013,13 +1014,13 @@
|
|
|
1013
1014
|
"consumes": [
|
|
1014
1015
|
"multipart/form-data"
|
|
1015
1016
|
],
|
|
1016
|
-
"description": "Mark"
|
|
1017
|
+
"description": "Mark liquidation notification as read"
|
|
1017
1018
|
}
|
|
1018
1019
|
},
|
|
1019
1020
|
"/api/v1/nextNonce": {
|
|
1020
1021
|
"get": {
|
|
1021
|
-
"summary": "
|
|
1022
|
-
"operationId": "
|
|
1022
|
+
"summary": "nextNonce",
|
|
1023
|
+
"operationId": "nextNonce",
|
|
1023
1024
|
"responses": {
|
|
1024
1025
|
"200": {
|
|
1025
1026
|
"description": "A successful response.",
|
|
@@ -1061,8 +1062,8 @@
|
|
|
1061
1062
|
},
|
|
1062
1063
|
"/api/v1/orderBookDetails": {
|
|
1063
1064
|
"get": {
|
|
1064
|
-
"summary": "
|
|
1065
|
-
"operationId": "
|
|
1065
|
+
"summary": "orderBookDetails",
|
|
1066
|
+
"operationId": "orderBookDetails",
|
|
1066
1067
|
"responses": {
|
|
1067
1068
|
"200": {
|
|
1068
1069
|
"description": "A successful response.",
|
|
@@ -1107,8 +1108,8 @@
|
|
|
1107
1108
|
},
|
|
1108
1109
|
"/api/v1/orderBookOrders": {
|
|
1109
1110
|
"get": {
|
|
1110
|
-
"summary": "
|
|
1111
|
-
"operationId": "
|
|
1111
|
+
"summary": "orderBookOrders",
|
|
1112
|
+
"operationId": "orderBookOrders",
|
|
1112
1113
|
"responses": {
|
|
1113
1114
|
"200": {
|
|
1114
1115
|
"description": "A successful response.",
|
|
@@ -1152,8 +1153,8 @@
|
|
|
1152
1153
|
},
|
|
1153
1154
|
"/api/v1/orderBooks": {
|
|
1154
1155
|
"get": {
|
|
1155
|
-
"summary": "
|
|
1156
|
-
"operationId": "
|
|
1156
|
+
"summary": "orderBooks",
|
|
1157
|
+
"operationId": "orderBooks",
|
|
1157
1158
|
"responses": {
|
|
1158
1159
|
"200": {
|
|
1159
1160
|
"description": "A successful response.",
|
|
@@ -1193,13 +1194,13 @@
|
|
|
1193
1194
|
"consumes": [
|
|
1194
1195
|
"multipart/form-data"
|
|
1195
1196
|
],
|
|
1196
|
-
"description": "Get order books metadata"
|
|
1197
|
+
"description": "Get order books metadata.<hr>**Response Description:**<br><br>1) **Taker and maker fees** are in percentage.<br>2) **Min base amount:** The amount of base token that can be traded in a single order.<br>3) **Min quote amount:** The amount of quote token that can be traded in a single order.<br>4) **Supported size decimals:** The number of decimal places that can be used for the size of the order.<br>5) **Supported price decimals:** The number of decimal places that can be used for the price of the order.<br>6) **Supported quote decimals:** Size Decimals + Quote Decimals."
|
|
1197
1198
|
}
|
|
1198
1199
|
},
|
|
1199
1200
|
"/api/v1/pendingTxs": {
|
|
1200
1201
|
"get": {
|
|
1201
|
-
"summary": "
|
|
1202
|
-
"operationId": "
|
|
1202
|
+
"summary": "pendingTxs",
|
|
1203
|
+
"operationId": "pendingTxs",
|
|
1203
1204
|
"responses": {
|
|
1204
1205
|
"200": {
|
|
1205
1206
|
"description": "A successful response.",
|
|
@@ -1241,62 +1242,10 @@
|
|
|
1241
1242
|
"description": "Get pending transactions"
|
|
1242
1243
|
}
|
|
1243
1244
|
},
|
|
1244
|
-
"/api/v1/permission": {
|
|
1245
|
-
"get": {
|
|
1246
|
-
"summary": "GetPermission",
|
|
1247
|
-
"operationId": "GetPermission",
|
|
1248
|
-
"responses": {
|
|
1249
|
-
"200": {
|
|
1250
|
-
"description": "A successful response.",
|
|
1251
|
-
"schema": {
|
|
1252
|
-
"$ref": "#/definitions/Permission"
|
|
1253
|
-
}
|
|
1254
|
-
},
|
|
1255
|
-
"400": {
|
|
1256
|
-
"description": "Bad request",
|
|
1257
|
-
"schema": {
|
|
1258
|
-
"$ref": "#/definitions/ResultCode"
|
|
1259
|
-
}
|
|
1260
|
-
}
|
|
1261
|
-
},
|
|
1262
|
-
"parameters": [
|
|
1263
|
-
{
|
|
1264
|
-
"name": "by",
|
|
1265
|
-
"in": "query",
|
|
1266
|
-
"required": true,
|
|
1267
|
-
"type": "string",
|
|
1268
|
-
"enum": [
|
|
1269
|
-
"index",
|
|
1270
|
-
"l1_address"
|
|
1271
|
-
]
|
|
1272
|
-
},
|
|
1273
|
-
{
|
|
1274
|
-
"name": "value",
|
|
1275
|
-
"in": "query",
|
|
1276
|
-
"required": true,
|
|
1277
|
-
"type": "string"
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
"name": "tx_type",
|
|
1281
|
-
"in": "query",
|
|
1282
|
-
"required": true,
|
|
1283
|
-
"type": "integer",
|
|
1284
|
-
"format": "uint8"
|
|
1285
|
-
}
|
|
1286
|
-
],
|
|
1287
|
-
"tags": [
|
|
1288
|
-
"account"
|
|
1289
|
-
],
|
|
1290
|
-
"consumes": [
|
|
1291
|
-
"multipart/form-data"
|
|
1292
|
-
],
|
|
1293
|
-
"description": "Get permission by account's l1_address, index and tx_type"
|
|
1294
|
-
}
|
|
1295
|
-
},
|
|
1296
1245
|
"/api/v1/pnl": {
|
|
1297
1246
|
"get": {
|
|
1298
|
-
"summary": "
|
|
1299
|
-
"operationId": "
|
|
1247
|
+
"summary": "pnl",
|
|
1248
|
+
"operationId": "pnl",
|
|
1300
1249
|
"responses": {
|
|
1301
1250
|
"200": {
|
|
1302
1251
|
"description": "A successful response.",
|
|
@@ -1374,8 +1323,8 @@
|
|
|
1374
1323
|
},
|
|
1375
1324
|
"/api/v1/recentTrades": {
|
|
1376
1325
|
"get": {
|
|
1377
|
-
"summary": "
|
|
1378
|
-
"operationId": "
|
|
1326
|
+
"summary": "recentTrades",
|
|
1327
|
+
"operationId": "recentTrades",
|
|
1379
1328
|
"responses": {
|
|
1380
1329
|
"200": {
|
|
1381
1330
|
"description": "A successful response.",
|
|
@@ -1419,8 +1368,8 @@
|
|
|
1419
1368
|
},
|
|
1420
1369
|
"/api/v1/rollbacks": {
|
|
1421
1370
|
"get": {
|
|
1422
|
-
"summary": "
|
|
1423
|
-
"operationId": "
|
|
1371
|
+
"summary": "rollbacks",
|
|
1372
|
+
"operationId": "rollbacks",
|
|
1424
1373
|
"responses": {
|
|
1425
1374
|
"200": {
|
|
1426
1375
|
"description": "A successful response.",
|
|
@@ -1473,8 +1422,8 @@
|
|
|
1473
1422
|
},
|
|
1474
1423
|
"/api/v1/search": {
|
|
1475
1424
|
"get": {
|
|
1476
|
-
"summary": "
|
|
1477
|
-
"operationId": "
|
|
1425
|
+
"summary": "search",
|
|
1426
|
+
"operationId": "search",
|
|
1478
1427
|
"responses": {
|
|
1479
1428
|
"200": {
|
|
1480
1429
|
"description": "A successful response.",
|
|
@@ -1508,8 +1457,8 @@
|
|
|
1508
1457
|
},
|
|
1509
1458
|
"/api/v1/sendTx": {
|
|
1510
1459
|
"post": {
|
|
1511
|
-
"summary": "
|
|
1512
|
-
"operationId": "
|
|
1460
|
+
"summary": "sendTx",
|
|
1461
|
+
"operationId": "sendTx",
|
|
1513
1462
|
"responses": {
|
|
1514
1463
|
"200": {
|
|
1515
1464
|
"description": "A successful response.",
|
|
@@ -1540,13 +1489,13 @@
|
|
|
1540
1489
|
"consumes": [
|
|
1541
1490
|
"multipart/form-data"
|
|
1542
1491
|
],
|
|
1543
|
-
"description": "
|
|
1492
|
+
"description": "You need to sign the transaction body before sending it to the server. More details can be found in the Get Started docs: [Get Started For Programmers](https://apidocs.lighter.xyz/docs/get-started-for-programmers)"
|
|
1544
1493
|
}
|
|
1545
1494
|
},
|
|
1546
1495
|
"/api/v1/sendTxBatch": {
|
|
1547
1496
|
"post": {
|
|
1548
|
-
"summary": "
|
|
1549
|
-
"operationId": "
|
|
1497
|
+
"summary": "sendTxBatch",
|
|
1498
|
+
"operationId": "sendTxBatch",
|
|
1550
1499
|
"responses": {
|
|
1551
1500
|
"200": {
|
|
1552
1501
|
"description": "A successful response.",
|
|
@@ -1577,13 +1526,13 @@
|
|
|
1577
1526
|
"consumes": [
|
|
1578
1527
|
"multipart/form-data"
|
|
1579
1528
|
],
|
|
1580
|
-
"description": "
|
|
1529
|
+
"description": "You need to sign the transaction body before sending it to the server. More details can be found in the Get Started docs: [Get Started For Programmers](https://apidocs.lighter.xyz/docs/get-started-for-programmers)"
|
|
1581
1530
|
}
|
|
1582
1531
|
},
|
|
1583
1532
|
"/api/v1/trades": {
|
|
1584
1533
|
"get": {
|
|
1585
|
-
"summary": "
|
|
1586
|
-
"operationId": "
|
|
1534
|
+
"summary": "trades",
|
|
1535
|
+
"operationId": "trades",
|
|
1587
1536
|
"responses": {
|
|
1588
1537
|
"200": {
|
|
1589
1538
|
"description": "A successful response.",
|
|
@@ -1652,8 +1601,8 @@
|
|
|
1652
1601
|
},
|
|
1653
1602
|
"/api/v1/tx": {
|
|
1654
1603
|
"get": {
|
|
1655
|
-
"summary": "
|
|
1656
|
-
"operationId": "
|
|
1604
|
+
"summary": "tx",
|
|
1605
|
+
"operationId": "tx",
|
|
1657
1606
|
"responses": {
|
|
1658
1607
|
"200": {
|
|
1659
1608
|
"description": "A successful response.",
|
|
@@ -1697,8 +1646,8 @@
|
|
|
1697
1646
|
},
|
|
1698
1647
|
"/api/v1/txFromL1TxHash": {
|
|
1699
1648
|
"get": {
|
|
1700
|
-
"summary": "
|
|
1701
|
-
"operationId": "
|
|
1649
|
+
"summary": "txFromL1TxHash",
|
|
1650
|
+
"operationId": "txFromL1TxHash",
|
|
1702
1651
|
"responses": {
|
|
1703
1652
|
"200": {
|
|
1704
1653
|
"description": "A successful response.",
|
|
@@ -1732,8 +1681,8 @@
|
|
|
1732
1681
|
},
|
|
1733
1682
|
"/api/v1/txs": {
|
|
1734
1683
|
"get": {
|
|
1735
|
-
"summary": "
|
|
1736
|
-
"operationId": "
|
|
1684
|
+
"summary": "txs",
|
|
1685
|
+
"operationId": "txs",
|
|
1737
1686
|
"responses": {
|
|
1738
1687
|
"200": {
|
|
1739
1688
|
"description": "A successful response.",
|