fx-spec-hub 0.0.28 → 0.0.29
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/dist/data/admin-backend-api.json +225 -54
- package/package.json +1 -1
|
@@ -10046,22 +10046,21 @@
|
|
|
10046
10046
|
"delete": {
|
|
10047
10047
|
"summary": "删除用户数据",
|
|
10048
10048
|
"deprecated": false,
|
|
10049
|
-
"description": "
|
|
10049
|
+
"description": "批量删除用户(提交工单)",
|
|
10050
10050
|
"tags": [
|
|
10051
10051
|
"用户"
|
|
10052
10052
|
],
|
|
10053
|
-
"parameters": [
|
|
10054
|
-
|
|
10055
|
-
|
|
10056
|
-
"
|
|
10057
|
-
|
|
10058
|
-
|
|
10059
|
-
|
|
10060
|
-
"schema": {
|
|
10061
|
-
"type": "integer"
|
|
10053
|
+
"parameters": [],
|
|
10054
|
+
"requestBody": {
|
|
10055
|
+
"content": {
|
|
10056
|
+
"application/json": {
|
|
10057
|
+
"schema": {
|
|
10058
|
+
"$ref": "#/components/schemas/dto.RemoveAdminReq"
|
|
10059
|
+
}
|
|
10062
10060
|
}
|
|
10063
|
-
}
|
|
10064
|
-
|
|
10061
|
+
},
|
|
10062
|
+
"required": true
|
|
10063
|
+
},
|
|
10065
10064
|
"responses": {
|
|
10066
10065
|
"200": {
|
|
10067
10066
|
"description": "{\"code\": 200, \"data\": [...]}",
|
|
@@ -10208,40 +10207,6 @@
|
|
|
10208
10207
|
"X-Type": {
|
|
10209
10208
|
"type": "BUS"
|
|
10210
10209
|
}
|
|
10211
|
-
},
|
|
10212
|
-
"delete": {
|
|
10213
|
-
"summary": "删除用户数据",
|
|
10214
|
-
"deprecated": false,
|
|
10215
|
-
"description": "删除数据",
|
|
10216
|
-
"tags": [
|
|
10217
|
-
"用户"
|
|
10218
|
-
],
|
|
10219
|
-
"parameters": [
|
|
10220
|
-
{
|
|
10221
|
-
"name": "userId",
|
|
10222
|
-
"in": "path",
|
|
10223
|
-
"description": "userId",
|
|
10224
|
-
"required": true,
|
|
10225
|
-
"example": 0,
|
|
10226
|
-
"schema": {
|
|
10227
|
-
"type": "integer"
|
|
10228
|
-
}
|
|
10229
|
-
}
|
|
10230
|
-
],
|
|
10231
|
-
"responses": {
|
|
10232
|
-
"200": {
|
|
10233
|
-
"description": "{\"code\": 200, \"data\": [...]}",
|
|
10234
|
-
"content": {
|
|
10235
|
-
"*/*": {
|
|
10236
|
-
"schema": {
|
|
10237
|
-
"$ref": "#/components/schemas/response.Response"
|
|
10238
|
-
}
|
|
10239
|
-
}
|
|
10240
|
-
},
|
|
10241
|
-
"headers": {}
|
|
10242
|
-
}
|
|
10243
|
-
},
|
|
10244
|
-
"security": []
|
|
10245
10210
|
}
|
|
10246
10211
|
},
|
|
10247
10212
|
"/api/v1/user/pwd/reset": {
|
|
@@ -25328,6 +25293,33 @@
|
|
|
25328
25293
|
},
|
|
25329
25294
|
"components": {
|
|
25330
25295
|
"schemas": {
|
|
25296
|
+
"dto.RemoveAdminReq": {
|
|
25297
|
+
"type": "object",
|
|
25298
|
+
"required": [
|
|
25299
|
+
"ids"
|
|
25300
|
+
],
|
|
25301
|
+
"properties": {
|
|
25302
|
+
"attachments": {
|
|
25303
|
+
"description": "附件",
|
|
25304
|
+
"type": "array",
|
|
25305
|
+
"items": {
|
|
25306
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
25307
|
+
}
|
|
25308
|
+
},
|
|
25309
|
+
"ids": {
|
|
25310
|
+
"description": "要移除的管理员用户ID列表",
|
|
25311
|
+
"type": "array",
|
|
25312
|
+
"minItems": 1,
|
|
25313
|
+
"items": {
|
|
25314
|
+
"type": "integer"
|
|
25315
|
+
}
|
|
25316
|
+
},
|
|
25317
|
+
"remark": {
|
|
25318
|
+
"description": "备注",
|
|
25319
|
+
"type": "string"
|
|
25320
|
+
}
|
|
25321
|
+
}
|
|
25322
|
+
},
|
|
25331
25323
|
"models.TicketStatusByBizIdResp": {
|
|
25332
25324
|
"type": "object",
|
|
25333
25325
|
"properties": {
|
|
@@ -25864,16 +25856,16 @@
|
|
|
25864
25856
|
"description": "当前审批层级",
|
|
25865
25857
|
"type": "integer"
|
|
25866
25858
|
},
|
|
25867
|
-
"finalReason": {
|
|
25868
|
-
"description": "最终审核原因",
|
|
25869
|
-
"type": "string"
|
|
25870
|
-
},
|
|
25871
25859
|
"id": {
|
|
25872
25860
|
"type": "integer"
|
|
25873
25861
|
},
|
|
25874
25862
|
"priority": {
|
|
25875
25863
|
"type": "string"
|
|
25876
25864
|
},
|
|
25865
|
+
"reason": {
|
|
25866
|
+
"description": "最终审核原因",
|
|
25867
|
+
"type": "string"
|
|
25868
|
+
},
|
|
25877
25869
|
"remark": {
|
|
25878
25870
|
"type": "string"
|
|
25879
25871
|
},
|
|
@@ -26005,7 +25997,7 @@
|
|
|
26005
25997
|
"description": "workflow_instances 关联字段",
|
|
26006
25998
|
"type": "integer"
|
|
26007
25999
|
},
|
|
26008
|
-
"
|
|
26000
|
+
"reason": {
|
|
26009
26001
|
"type": "string"
|
|
26010
26002
|
},
|
|
26011
26003
|
"remark": {
|
|
@@ -29426,6 +29418,10 @@
|
|
|
29426
29418
|
"models.GetCollectionSettingResp": {
|
|
29427
29419
|
"type": "object",
|
|
29428
29420
|
"properties": {
|
|
29421
|
+
"auditPending": {
|
|
29422
|
+
"description": "是否在审核中",
|
|
29423
|
+
"type": "boolean"
|
|
29424
|
+
},
|
|
29429
29425
|
"autoCollection": {
|
|
29430
29426
|
"description": "自动归集:true-开启,false-关闭",
|
|
29431
29427
|
"type": "string"
|
|
@@ -29627,13 +29623,17 @@
|
|
|
29627
29623
|
"type": "object",
|
|
29628
29624
|
"properties": {
|
|
29629
29625
|
"accountId": {
|
|
29630
|
-
"description": "
|
|
29626
|
+
"description": "账号ID",
|
|
29631
29627
|
"type": "string"
|
|
29632
29628
|
},
|
|
29633
29629
|
"addTime": {
|
|
29634
29630
|
"description": "添加时间(Unix时间戳,毫秒)",
|
|
29635
29631
|
"type": "integer"
|
|
29636
29632
|
},
|
|
29633
|
+
"deleteUserEquipmentPending": {
|
|
29634
|
+
"description": "删除工单审核中",
|
|
29635
|
+
"type": "boolean"
|
|
29636
|
+
},
|
|
29637
29637
|
"deviceId": {
|
|
29638
29638
|
"description": "设备ID",
|
|
29639
29639
|
"type": "string"
|
|
@@ -29671,6 +29671,10 @@
|
|
|
29671
29671
|
"description": "账户ID",
|
|
29672
29672
|
"type": "string"
|
|
29673
29673
|
},
|
|
29674
|
+
"deleteUserEquipmentPending": {
|
|
29675
|
+
"description": "删除工单审核中",
|
|
29676
|
+
"type": "boolean"
|
|
29677
|
+
},
|
|
29674
29678
|
"deviceId": {
|
|
29675
29679
|
"description": "设备ID",
|
|
29676
29680
|
"type": "string"
|
|
@@ -29813,6 +29817,10 @@
|
|
|
29813
29817
|
"description": "Credential ID",
|
|
29814
29818
|
"type": "string"
|
|
29815
29819
|
},
|
|
29820
|
+
"deleteUserKeyPending": {
|
|
29821
|
+
"description": "删除工单审核中",
|
|
29822
|
+
"type": "boolean"
|
|
29823
|
+
},
|
|
29816
29824
|
"deviceId": {
|
|
29817
29825
|
"description": "设备ID",
|
|
29818
29826
|
"type": "string"
|
|
@@ -30758,6 +30766,13 @@
|
|
|
30758
30766
|
"templateName"
|
|
30759
30767
|
],
|
|
30760
30768
|
"properties": {
|
|
30769
|
+
"attachments": {
|
|
30770
|
+
"description": "附件",
|
|
30771
|
+
"type": "array",
|
|
30772
|
+
"items": {
|
|
30773
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
30774
|
+
}
|
|
30775
|
+
},
|
|
30761
30776
|
"emailMsgTemplateItems": {
|
|
30762
30777
|
"description": "email 多语言内容项",
|
|
30763
30778
|
"type": "array",
|
|
@@ -30791,6 +30806,11 @@
|
|
|
30791
30806
|
"$ref": "#/components/schemas/models.MsgTemplateItem"
|
|
30792
30807
|
}
|
|
30793
30808
|
},
|
|
30809
|
+
"remark": {
|
|
30810
|
+
"description": "备注",
|
|
30811
|
+
"type": "string",
|
|
30812
|
+
"maxLength": 100
|
|
30813
|
+
},
|
|
30794
30814
|
"smsMsgTemplateItems": {
|
|
30795
30815
|
"description": "sms 多语言内容项",
|
|
30796
30816
|
"type": "array",
|
|
@@ -31369,6 +31389,10 @@
|
|
|
31369
31389
|
"models.WalletFuseResp": {
|
|
31370
31390
|
"type": "object",
|
|
31371
31391
|
"properties": {
|
|
31392
|
+
"auditPending": {
|
|
31393
|
+
"description": "是否有待审核的工单",
|
|
31394
|
+
"type": "boolean"
|
|
31395
|
+
},
|
|
31372
31396
|
"currentLevel": {
|
|
31373
31397
|
"description": "当前审批层级",
|
|
31374
31398
|
"type": "integer"
|
|
@@ -31796,10 +31820,33 @@
|
|
|
31796
31820
|
"takerFee"
|
|
31797
31821
|
],
|
|
31798
31822
|
"properties": {
|
|
31823
|
+
"attachments": {
|
|
31824
|
+
"description": "附件 [{fileId,name,type}]",
|
|
31825
|
+
"type": "array",
|
|
31826
|
+
"items": {
|
|
31827
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
31828
|
+
}
|
|
31829
|
+
},
|
|
31830
|
+
"beforeMakerFee": {
|
|
31831
|
+
"description": "修改前 MakerFee",
|
|
31832
|
+
"type": "string"
|
|
31833
|
+
},
|
|
31834
|
+
"beforeStatus": {
|
|
31835
|
+
"description": "修改前状态",
|
|
31836
|
+
"type": "string"
|
|
31837
|
+
},
|
|
31838
|
+
"beforeTakerFee": {
|
|
31839
|
+
"description": "修改前 TakerFee",
|
|
31840
|
+
"type": "string"
|
|
31841
|
+
},
|
|
31799
31842
|
"makerFee": {
|
|
31800
31843
|
"description": "交易对设置状态:OPEN/CLOSE",
|
|
31801
31844
|
"type": "string"
|
|
31802
31845
|
},
|
|
31846
|
+
"remark": {
|
|
31847
|
+
"description": "操作理由",
|
|
31848
|
+
"type": "string"
|
|
31849
|
+
},
|
|
31803
31850
|
"status": {
|
|
31804
31851
|
"description": "交易对设置状态:OPEN/CLOSE",
|
|
31805
31852
|
"type": "string"
|
|
@@ -32535,12 +32582,34 @@
|
|
|
32535
32582
|
"type": "object",
|
|
32536
32583
|
"required": [
|
|
32537
32584
|
"coinType",
|
|
32538
|
-
"confirmations",
|
|
32539
32585
|
"maxWithdrawAmount",
|
|
32540
32586
|
"minWithdrawAmount",
|
|
32541
32587
|
"withdrawFee"
|
|
32542
32588
|
],
|
|
32543
32589
|
"properties": {
|
|
32590
|
+
"attachments": {
|
|
32591
|
+
"description": "附件 [{fileId,name,type}]",
|
|
32592
|
+
"type": "array",
|
|
32593
|
+
"items": {
|
|
32594
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
32595
|
+
}
|
|
32596
|
+
},
|
|
32597
|
+
"beforeConfirmations": {
|
|
32598
|
+
"description": "修改前确认数",
|
|
32599
|
+
"type": "string"
|
|
32600
|
+
},
|
|
32601
|
+
"beforeMaxWithdrawAmount": {
|
|
32602
|
+
"description": "修改前最大金额",
|
|
32603
|
+
"type": "string"
|
|
32604
|
+
},
|
|
32605
|
+
"beforeMinWithdrawAmount": {
|
|
32606
|
+
"description": "修改前最小金额",
|
|
32607
|
+
"type": "string"
|
|
32608
|
+
},
|
|
32609
|
+
"beforeWithdrawFee": {
|
|
32610
|
+
"description": "修改前手续费",
|
|
32611
|
+
"type": "string"
|
|
32612
|
+
},
|
|
32544
32613
|
"coinType": {
|
|
32545
32614
|
"description": "币种",
|
|
32546
32615
|
"type": "string"
|
|
@@ -32561,6 +32630,10 @@
|
|
|
32561
32630
|
"description": "网络类型",
|
|
32562
32631
|
"type": "string"
|
|
32563
32632
|
},
|
|
32633
|
+
"remark": {
|
|
32634
|
+
"description": "操作理由",
|
|
32635
|
+
"type": "string"
|
|
32636
|
+
},
|
|
32564
32637
|
"withdrawFee": {
|
|
32565
32638
|
"description": "提现手续费",
|
|
32566
32639
|
"type": "string"
|
|
@@ -34538,6 +34611,13 @@
|
|
|
34538
34611
|
"description": "用户ID",
|
|
34539
34612
|
"type": "string"
|
|
34540
34613
|
},
|
|
34614
|
+
"attachments": {
|
|
34615
|
+
"description": "工单附件",
|
|
34616
|
+
"type": "array",
|
|
34617
|
+
"items": {
|
|
34618
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
34619
|
+
}
|
|
34620
|
+
},
|
|
34541
34621
|
"remark": {
|
|
34542
34622
|
"description": "操作原因",
|
|
34543
34623
|
"type": "string"
|
|
@@ -36795,6 +36875,10 @@
|
|
|
36795
36875
|
"withdrawFee": {
|
|
36796
36876
|
"description": "提现手续费",
|
|
36797
36877
|
"type": "string"
|
|
36878
|
+
},
|
|
36879
|
+
"withdrawPending": {
|
|
36880
|
+
"description": "是否存在审批中的提现设置变更",
|
|
36881
|
+
"type": "boolean"
|
|
36798
36882
|
}
|
|
36799
36883
|
}
|
|
36800
36884
|
},
|
|
@@ -36889,6 +36973,10 @@
|
|
|
36889
36973
|
"description": "邮箱",
|
|
36890
36974
|
"type": "string"
|
|
36891
36975
|
},
|
|
36976
|
+
"gaPending": {
|
|
36977
|
+
"description": "GA解绑工单审核中",
|
|
36978
|
+
"type": "boolean"
|
|
36979
|
+
},
|
|
36892
36980
|
"gaVerified": {
|
|
36893
36981
|
"description": "是否已验证GA",
|
|
36894
36982
|
"type": "boolean"
|
|
@@ -36901,6 +36989,10 @@
|
|
|
36901
36989
|
"description": "手机号",
|
|
36902
36990
|
"type": "string"
|
|
36903
36991
|
},
|
|
36992
|
+
"phonePending": {
|
|
36993
|
+
"description": "手机解绑工单审核中",
|
|
36994
|
+
"type": "boolean"
|
|
36995
|
+
},
|
|
36904
36996
|
"phoneVerified": {
|
|
36905
36997
|
"description": "是否已验证手机",
|
|
36906
36998
|
"type": "boolean"
|
|
@@ -37004,6 +37096,10 @@
|
|
|
37004
37096
|
"takerFeeRate": {
|
|
37005
37097
|
"description": "现货交易手续费(taker)",
|
|
37006
37098
|
"type": "string"
|
|
37099
|
+
},
|
|
37100
|
+
"transactionPending": {
|
|
37101
|
+
"description": "是否存在审批中的交易设置变更",
|
|
37102
|
+
"type": "boolean"
|
|
37007
37103
|
}
|
|
37008
37104
|
}
|
|
37009
37105
|
},
|
|
@@ -37047,6 +37143,10 @@
|
|
|
37047
37143
|
"models.GetLargeTradeConfigResp": {
|
|
37048
37144
|
"type": "object",
|
|
37049
37145
|
"properties": {
|
|
37146
|
+
"auditPending": {
|
|
37147
|
+
"description": "是否在审核中",
|
|
37148
|
+
"type": "boolean"
|
|
37149
|
+
},
|
|
37050
37150
|
"threshold": {
|
|
37051
37151
|
"description": "大额交易阈值",
|
|
37052
37152
|
"type": "string"
|
|
@@ -37177,6 +37277,10 @@
|
|
|
37177
37277
|
"models.GetGasConfigResp": {
|
|
37178
37278
|
"type": "object",
|
|
37179
37279
|
"properties": {
|
|
37280
|
+
"auditPending": {
|
|
37281
|
+
"description": "是否在审核中",
|
|
37282
|
+
"type": "boolean"
|
|
37283
|
+
},
|
|
37180
37284
|
"gasUsageLimit": {
|
|
37181
37285
|
"description": "Gas消耗上限",
|
|
37182
37286
|
"type": "string"
|
|
@@ -37222,6 +37326,10 @@
|
|
|
37222
37326
|
"description": "网络类型",
|
|
37223
37327
|
"type": "string"
|
|
37224
37328
|
},
|
|
37329
|
+
"rechargePending": {
|
|
37330
|
+
"description": "是否存在审批中的充值设置变更",
|
|
37331
|
+
"type": "boolean"
|
|
37332
|
+
},
|
|
37225
37333
|
"walletConfirmCount": {
|
|
37226
37334
|
"description": "钱包确认数",
|
|
37227
37335
|
"type": "string"
|
|
@@ -37320,6 +37428,10 @@
|
|
|
37320
37428
|
"description": "储备地址数量",
|
|
37321
37429
|
"type": "string"
|
|
37322
37430
|
},
|
|
37431
|
+
"auditPending": {
|
|
37432
|
+
"description": "是否有待审核的工单",
|
|
37433
|
+
"type": "boolean"
|
|
37434
|
+
},
|
|
37323
37435
|
"configId": {
|
|
37324
37436
|
"description": "配置ID",
|
|
37325
37437
|
"type": "integer"
|
|
@@ -37857,6 +37969,25 @@
|
|
|
37857
37969
|
"confirmations"
|
|
37858
37970
|
],
|
|
37859
37971
|
"properties": {
|
|
37972
|
+
"attachments": {
|
|
37973
|
+
"description": "附件 [{fileId,name,type}]",
|
|
37974
|
+
"type": "array",
|
|
37975
|
+
"items": {
|
|
37976
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
37977
|
+
}
|
|
37978
|
+
},
|
|
37979
|
+
"beforeConfirmations": {
|
|
37980
|
+
"description": "修改前确认数",
|
|
37981
|
+
"type": "string"
|
|
37982
|
+
},
|
|
37983
|
+
"beforeMaxDepositAmount24H": {
|
|
37984
|
+
"description": "修改前最大金额24小时",
|
|
37985
|
+
"type": "string"
|
|
37986
|
+
},
|
|
37987
|
+
"beforeMinDepositAmount": {
|
|
37988
|
+
"description": "修改前最小金额",
|
|
37989
|
+
"type": "string"
|
|
37990
|
+
},
|
|
37860
37991
|
"coinType": {
|
|
37861
37992
|
"description": "币种",
|
|
37862
37993
|
"type": "string"
|
|
@@ -37876,6 +38007,10 @@
|
|
|
37876
38007
|
"networkType": {
|
|
37877
38008
|
"description": "网络类型",
|
|
37878
38009
|
"type": "string"
|
|
38010
|
+
},
|
|
38011
|
+
"remark": {
|
|
38012
|
+
"description": "操作理由",
|
|
38013
|
+
"type": "string"
|
|
37879
38014
|
}
|
|
37880
38015
|
}
|
|
37881
38016
|
},
|
|
@@ -40258,6 +40393,13 @@
|
|
|
40258
40393
|
"dto.SysUserInsertReq": {
|
|
40259
40394
|
"type": "object",
|
|
40260
40395
|
"properties": {
|
|
40396
|
+
"attachments": {
|
|
40397
|
+
"description": "工单附件",
|
|
40398
|
+
"type": "array",
|
|
40399
|
+
"items": {
|
|
40400
|
+
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
40401
|
+
}
|
|
40402
|
+
},
|
|
40261
40403
|
"avatar": {
|
|
40262
40404
|
"type": "string"
|
|
40263
40405
|
},
|
|
@@ -40283,7 +40425,8 @@
|
|
|
40283
40425
|
"type": "integer"
|
|
40284
40426
|
},
|
|
40285
40427
|
"remark": {
|
|
40286
|
-
"type": "string"
|
|
40428
|
+
"type": "string",
|
|
40429
|
+
"maxLength": 100
|
|
40287
40430
|
},
|
|
40288
40431
|
"roleId": {
|
|
40289
40432
|
"type": "integer"
|
|
@@ -40320,6 +40463,14 @@
|
|
|
40320
40463
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
40321
40464
|
}
|
|
40322
40465
|
},
|
|
40466
|
+
"before": {
|
|
40467
|
+
"description": "修改前的值",
|
|
40468
|
+
"type": "object",
|
|
40469
|
+
"additionalProperties": {
|
|
40470
|
+
"type": "string"
|
|
40471
|
+
},
|
|
40472
|
+
"properties": {}
|
|
40473
|
+
},
|
|
40323
40474
|
"createBy": {
|
|
40324
40475
|
"type": "integer"
|
|
40325
40476
|
},
|
|
@@ -40336,6 +40487,10 @@
|
|
|
40336
40487
|
"description": "标记",
|
|
40337
40488
|
"type": "string"
|
|
40338
40489
|
},
|
|
40490
|
+
"isNeedTicket": {
|
|
40491
|
+
"description": "是否需要发起工单",
|
|
40492
|
+
"type": "boolean"
|
|
40493
|
+
},
|
|
40339
40494
|
"menuIds": {
|
|
40340
40495
|
"type": "array",
|
|
40341
40496
|
"items": {
|
|
@@ -40396,6 +40551,14 @@
|
|
|
40396
40551
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
40397
40552
|
}
|
|
40398
40553
|
},
|
|
40554
|
+
"before": {
|
|
40555
|
+
"description": "修改前的值",
|
|
40556
|
+
"type": "object",
|
|
40557
|
+
"additionalProperties": {
|
|
40558
|
+
"type": "string"
|
|
40559
|
+
},
|
|
40560
|
+
"properties": {}
|
|
40561
|
+
},
|
|
40399
40562
|
"createBy": {
|
|
40400
40563
|
"type": "integer"
|
|
40401
40564
|
},
|
|
@@ -40469,6 +40632,14 @@
|
|
|
40469
40632
|
"$ref": "#/components/schemas/models.AttachmentItem"
|
|
40470
40633
|
}
|
|
40471
40634
|
},
|
|
40635
|
+
"before": {
|
|
40636
|
+
"description": "修改前的值",
|
|
40637
|
+
"type": "object",
|
|
40638
|
+
"additionalProperties": {
|
|
40639
|
+
"type": "string"
|
|
40640
|
+
},
|
|
40641
|
+
"properties": {}
|
|
40642
|
+
},
|
|
40472
40643
|
"ids": {
|
|
40473
40644
|
"type": "array",
|
|
40474
40645
|
"items": {
|