@hubex/mcp 0.2.0

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.
Files changed (92) hide show
  1. package/.env.example +54 -0
  2. package/CONNECTING.md +260 -0
  3. package/README.md +266 -0
  4. package/dist/auth.js +226 -0
  5. package/dist/config.js +120 -0
  6. package/dist/generated/manifest.js +3643 -0
  7. package/dist/guides/field-notes.json +27 -0
  8. package/dist/guides/loader.js +32 -0
  9. package/dist/guides/service-map.js +6 -0
  10. package/dist/http.js +93 -0
  11. package/dist/index/store.js +134 -0
  12. package/dist/index/types.js +1 -0
  13. package/dist/index.js +20 -0
  14. package/dist/paths.js +20 -0
  15. package/dist/pii/fields.js +100 -0
  16. package/dist/pii/mask.js +50 -0
  17. package/dist/pii/strategies.js +88 -0
  18. package/dist/schema/build-index.js +67 -0
  19. package/dist/schema/deref.js +87 -0
  20. package/dist/schema/describe.js +65 -0
  21. package/dist/server.js +62 -0
  22. package/dist/token-prompt.js +41 -0
  23. package/dist/tools/curated.js +151 -0
  24. package/dist/tools/discovery.js +187 -0
  25. package/dist/tools/guides.js +126 -0
  26. package/dist/tools/registry.js +37 -0
  27. package/dist/tools/request.js +170 -0
  28. package/dist/tools/types.js +1 -0
  29. package/docs/guides/assets.md +334 -0
  30. package/docs/guides/attributes.md +125 -0
  31. package/docs/guides/checklisttemplates.md +154 -0
  32. package/docs/guides/companies.md +57 -0
  33. package/docs/guides/dictionaries.md +64 -0
  34. package/docs/guides/lifecycle.md +263 -0
  35. package/docs/guides/materials.md +135 -0
  36. package/docs/guides/notifications.md +184 -0
  37. package/docs/guides/roles.md +125 -0
  38. package/docs/guides/sla.md +130 -0
  39. package/docs/guides/start.md +67 -0
  40. package/docs/guides/taskchecklists.md +149 -0
  41. package/docs/guides/taskcreate.md +260 -0
  42. package/docs/guides/taskedit.md +277 -0
  43. package/docs/guides/tasktypes.md +156 -0
  44. package/docs/guides/users.md +71 -0
  45. package/generated/index.dev.json +18776 -0
  46. package/generated/index.prod.json +18858 -0
  47. package/package.json +48 -0
  48. package/swagger/dev/ADM.json +27777 -0
  49. package/swagger/dev/AUTH.json +1739 -0
  50. package/swagger/dev/AUTHN.json +1250 -0
  51. package/swagger/dev/AUTHZ.json +1404 -0
  52. package/swagger/dev/CM.json +309 -0
  53. package/swagger/dev/COMMON.json +6543 -0
  54. package/swagger/dev/ES.json +28029 -0
  55. package/swagger/dev/EXPORT.json +4575 -0
  56. package/swagger/dev/IMPORT.json +1479 -0
  57. package/swagger/dev/LIC.json +224 -0
  58. package/swagger/dev/MSG.json +7883 -0
  59. package/swagger/dev/NEWS.json +348 -0
  60. package/swagger/dev/PA.json +5981 -0
  61. package/swagger/dev/PMP.json +3196 -0
  62. package/swagger/dev/PROXY.json +416 -0
  63. package/swagger/dev/REPORT.json +3921 -0
  64. package/swagger/dev/SC.json +3771 -0
  65. package/swagger/dev/SLA.json +2837 -0
  66. package/swagger/dev/TSTG.json +4981 -0
  67. package/swagger/dev/UI.json +4720 -0
  68. package/swagger/dev/WH.json +16796 -0
  69. package/swagger/dev/WORK.json +36024 -0
  70. package/swagger/dev/WSP.json +1612 -0
  71. package/swagger/prod/ADM.json +27777 -0
  72. package/swagger/prod/AUTH.json +1308 -0
  73. package/swagger/prod/AUTHN.json +2710 -0
  74. package/swagger/prod/AUTHZ.json +896 -0
  75. package/swagger/prod/CM.json +162 -0
  76. package/swagger/prod/COMMON.json +4910 -0
  77. package/swagger/prod/ES.json +28029 -0
  78. package/swagger/prod/EXPORT.json +3091 -0
  79. package/swagger/prod/LIC.json +123 -0
  80. package/swagger/prod/MSG.json +6239 -0
  81. package/swagger/prod/NEWS.json +295 -0
  82. package/swagger/prod/PA.json +5123 -0
  83. package/swagger/prod/PMP.json +2978 -0
  84. package/swagger/prod/PROXY.json +250 -0
  85. package/swagger/prod/REPORT.json +3729 -0
  86. package/swagger/prod/SC.json +3771 -0
  87. package/swagger/prod/SLA.json +2201 -0
  88. package/swagger/prod/TSTG.json +4220 -0
  89. package/swagger/prod/UI.json +3879 -0
  90. package/swagger/prod/WH.json +16730 -0
  91. package/swagger/prod/WORK.json +35994 -0
  92. package/swagger/prod/WSP.json +1468 -0
@@ -0,0 +1,2710 @@
1
+ {
2
+ "openapi": "3.0.1",
3
+ "info": {
4
+ "title": "Authenticatin and authorization API for HubEx",
5
+ "description": "Performs all of the operations, necessary to authenticate and authorize a user as a valid tenant member. Offers an API for registering, verifying e-mail, changing password, etc.",
6
+ "contact": {
7
+ "name": "SmartService Backend Team",
8
+ "email": "fmbackend@melston.ru"
9
+ },
10
+ "version": "v1.0.0.0"
11
+ },
12
+ "paths": {
13
+ "/Accounts/login": {
14
+ "post": {
15
+ "tags": [
16
+ "Accounts"
17
+ ],
18
+ "summary": "Аутентификация учетной записи по мобильному телефону, адресу электронной почты или логину и паролю через Basic-авторизацию",
19
+ "description": "<br />* Выполнение данного метода резрешино от **анонимного пользователя**.",
20
+ "responses": {
21
+ "200": {
22
+ "description": "OK",
23
+ "content": {
24
+ "text/plain": {
25
+ "schema": {
26
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
27
+ }
28
+ },
29
+ "application/json": {
30
+ "schema": {
31
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
32
+ }
33
+ },
34
+ "text/json": {
35
+ "schema": {
36
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
37
+ }
38
+ }
39
+ }
40
+ }
41
+ }
42
+ }
43
+ },
44
+ "/Accounts/login/sso": {
45
+ "post": {
46
+ "tags": [
47
+ "Accounts"
48
+ ],
49
+ "summary": "Аутентификация учетной записи по sso",
50
+ "description": "<br />* Выполнение данного метода резрешино от **анонимного пользователя**.",
51
+ "responses": {
52
+ "200": {
53
+ "description": "OK",
54
+ "content": {
55
+ "text/plain": {
56
+ "schema": {
57
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
58
+ }
59
+ },
60
+ "application/json": {
61
+ "schema": {
62
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
63
+ }
64
+ },
65
+ "text/json": {
66
+ "schema": {
67
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
68
+ }
69
+ }
70
+ }
71
+ }
72
+ }
73
+ }
74
+ },
75
+ "/Accounts/smsSend": {
76
+ "post": {
77
+ "tags": [
78
+ "Accounts"
79
+ ],
80
+ "summary": "Генерация кода для авторизации через СМС",
81
+ "description": "<br />* Выполнение данного метода резрешино от **анонимного пользователя**.",
82
+ "requestBody": {
83
+ "content": {
84
+ "application/json-patch+json": {
85
+ "schema": {
86
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.PhoneDto"
87
+ }
88
+ },
89
+ "application/json": {
90
+ "schema": {
91
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.PhoneDto"
92
+ }
93
+ },
94
+ "text/json": {
95
+ "schema": {
96
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.PhoneDto"
97
+ }
98
+ },
99
+ "application/*+json": {
100
+ "schema": {
101
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.PhoneDto"
102
+ }
103
+ }
104
+ }
105
+ },
106
+ "responses": {
107
+ "200": {
108
+ "description": "OK",
109
+ "content": {
110
+ "text/plain": {
111
+ "schema": {
112
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.OtpGenerateResult"
113
+ }
114
+ },
115
+ "application/json": {
116
+ "schema": {
117
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.OtpGenerateResult"
118
+ }
119
+ },
120
+ "text/json": {
121
+ "schema": {
122
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.OtpGenerateResult"
123
+ }
124
+ }
125
+ }
126
+ },
127
+ "429": {
128
+ "description": "Too Many Requests",
129
+ "content": {
130
+ "text/plain": {
131
+ "schema": {
132
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
133
+ }
134
+ },
135
+ "application/json": {
136
+ "schema": {
137
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
138
+ }
139
+ },
140
+ "text/json": {
141
+ "schema": {
142
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
143
+ }
144
+ }
145
+ }
146
+ },
147
+ "500": {
148
+ "description": "Internal Server Error",
149
+ "content": {
150
+ "text/plain": {
151
+ "schema": {
152
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
153
+ }
154
+ },
155
+ "application/json": {
156
+ "schema": {
157
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
158
+ }
159
+ },
160
+ "text/json": {
161
+ "schema": {
162
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ }
169
+ },
170
+ "/Accounts/smsLogin": {
171
+ "post": {
172
+ "tags": [
173
+ "Accounts"
174
+ ],
175
+ "summary": "Проверка СМС кода",
176
+ "description": "<br />* Выполнение данного метода резрешино от **анонимного пользователя**.",
177
+ "requestBody": {
178
+ "content": {
179
+ "application/json-patch+json": {
180
+ "schema": {
181
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.AuthSmsDto"
182
+ }
183
+ },
184
+ "application/json": {
185
+ "schema": {
186
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.AuthSmsDto"
187
+ }
188
+ },
189
+ "text/json": {
190
+ "schema": {
191
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.AuthSmsDto"
192
+ }
193
+ },
194
+ "application/*+json": {
195
+ "schema": {
196
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Dto.AuthSmsDto"
197
+ }
198
+ }
199
+ }
200
+ },
201
+ "responses": {
202
+ "200": {
203
+ "description": "OK",
204
+ "content": {
205
+ "text/plain": {
206
+ "schema": {
207
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
208
+ }
209
+ },
210
+ "application/json": {
211
+ "schema": {
212
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
213
+ }
214
+ },
215
+ "text/json": {
216
+ "schema": {
217
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult"
218
+ }
219
+ }
220
+ }
221
+ },
222
+ "500": {
223
+ "description": "Internal Server Error",
224
+ "content": {
225
+ "text/plain": {
226
+ "schema": {
227
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
228
+ }
229
+ },
230
+ "application/json": {
231
+ "schema": {
232
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
233
+ }
234
+ },
235
+ "text/json": {
236
+ "schema": {
237
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.ObjectResult"
238
+ }
239
+ }
240
+ }
241
+ }
242
+ }
243
+ }
244
+ },
245
+ "/Accounts/realm": {
246
+ "post": {
247
+ "tags": [
248
+ "Accounts"
249
+ ],
250
+ "summary": "Возвращает данные о реалмах аккаунта по адресу электронной почты или домену",
251
+ "description": "<br />* Выполнение данного метода резрешино от **анонимного пользователя**.",
252
+ "requestBody": {
253
+ "description": "Данные для входа",
254
+ "content": {
255
+ "application/json-patch+json": {
256
+ "schema": {
257
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.AccountRealms.CredentialData"
258
+ }
259
+ },
260
+ "application/json": {
261
+ "schema": {
262
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.AccountRealms.CredentialData"
263
+ }
264
+ },
265
+ "text/json": {
266
+ "schema": {
267
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.AccountRealms.CredentialData"
268
+ }
269
+ },
270
+ "application/*+json": {
271
+ "schema": {
272
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.AccountRealms.CredentialData"
273
+ }
274
+ }
275
+ }
276
+ },
277
+ "responses": {
278
+ "200": {
279
+ "description": "OK",
280
+ "content": {
281
+ "text/plain": {
282
+ "schema": {
283
+ "type": "array",
284
+ "items": {
285
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AccountRealmResult"
286
+ }
287
+ }
288
+ },
289
+ "application/json": {
290
+ "schema": {
291
+ "type": "array",
292
+ "items": {
293
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AccountRealmResult"
294
+ }
295
+ }
296
+ },
297
+ "text/json": {
298
+ "schema": {
299
+ "type": "array",
300
+ "items": {
301
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.AccountRealmResult"
302
+ }
303
+ }
304
+ }
305
+ }
306
+ },
307
+ "500": {
308
+ "description": "Internal Server Error",
309
+ "content": {
310
+ "text/plain": {
311
+ "schema": {
312
+ "type": "array",
313
+ "items": {
314
+ "$ref": "#/components/schemas/SmartService.Common.ExceptionHandling.Models.ErrorModel"
315
+ }
316
+ }
317
+ },
318
+ "application/json": {
319
+ "schema": {
320
+ "type": "array",
321
+ "items": {
322
+ "$ref": "#/components/schemas/SmartService.Common.ExceptionHandling.Models.ErrorModel"
323
+ }
324
+ }
325
+ },
326
+ "text/json": {
327
+ "schema": {
328
+ "type": "array",
329
+ "items": {
330
+ "$ref": "#/components/schemas/SmartService.Common.ExceptionHandling.Models.ErrorModel"
331
+ }
332
+ }
333
+ }
334
+ }
335
+ },
336
+ "204": {
337
+ "description": "No Content"
338
+ }
339
+ }
340
+ }
341
+ },
342
+ "/Passwords/set": {
343
+ "post": {
344
+ "tags": [
345
+ "Passwords"
346
+ ],
347
+ "summary": "Устанавливает пароль для вновь созданной учётной записи.",
348
+ "description": "<br />* Выполнение данного метода резрешино от **анонимного пользователя**.",
349
+ "requestBody": {
350
+ "content": {
351
+ "application/json-patch+json": {
352
+ "schema": {
353
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.Passwords.SetData"
354
+ }
355
+ },
356
+ "application/json": {
357
+ "schema": {
358
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.Passwords.SetData"
359
+ }
360
+ },
361
+ "text/json": {
362
+ "schema": {
363
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.Passwords.SetData"
364
+ }
365
+ },
366
+ "application/*+json": {
367
+ "schema": {
368
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Data.Passwords.SetData"
369
+ }
370
+ }
371
+ }
372
+ },
373
+ "responses": {
374
+ "202": {
375
+ "description": "Accepted",
376
+ "content": {
377
+ "text/plain": {
378
+ "schema": {
379
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.JwtResultBase"
380
+ }
381
+ },
382
+ "application/json": {
383
+ "schema": {
384
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.JwtResultBase"
385
+ }
386
+ },
387
+ "text/json": {
388
+ "schema": {
389
+ "$ref": "#/components/schemas/HubEx.Service.AUTHN.Core.Results.Account.JwtResultBase"
390
+ }
391
+ }
392
+ }
393
+ }
394
+ }
395
+ }
396
+ }
397
+ },
398
+ "components": {
399
+ "schemas": {
400
+ "HubEx.DataProvider.Api.Entities.ADM.TenantCreationRequestEntity": {
401
+ "type": "object",
402
+ "properties": {
403
+ "id": {
404
+ "type": "string",
405
+ "nullable": true
406
+ },
407
+ "accountID": {
408
+ "type": "integer",
409
+ "format": "int32"
410
+ },
411
+ "tenantID": {
412
+ "type": "integer",
413
+ "format": "int32",
414
+ "nullable": true
415
+ },
416
+ "tenantName": {
417
+ "type": "string",
418
+ "nullable": true
419
+ },
420
+ "tenantFullName": {
421
+ "type": "string",
422
+ "nullable": true
423
+ },
424
+ "tenantUriName": {
425
+ "type": "string",
426
+ "nullable": true
427
+ },
428
+ "ownerFirstName": {
429
+ "type": "string",
430
+ "nullable": true
431
+ },
432
+ "ownerLastName": {
433
+ "type": "string",
434
+ "nullable": true
435
+ },
436
+ "ownerMiddleName": {
437
+ "type": "string",
438
+ "nullable": true
439
+ },
440
+ "templateID": {
441
+ "type": "integer",
442
+ "format": "int32",
443
+ "nullable": true
444
+ },
445
+ "isSuccess": {
446
+ "type": "boolean",
447
+ "nullable": true
448
+ },
449
+ "message": {
450
+ "type": "string",
451
+ "nullable": true
452
+ },
453
+ "licenseID": {
454
+ "type": "integer",
455
+ "format": "int32",
456
+ "nullable": true
457
+ },
458
+ "created": {
459
+ "type": "string",
460
+ "format": "date-time"
461
+ },
462
+ "processed": {
463
+ "type": "string",
464
+ "format": "date-time",
465
+ "nullable": true
466
+ },
467
+ "approved": {
468
+ "type": "string",
469
+ "format": "date-time",
470
+ "nullable": true
471
+ },
472
+ "rejected": {
473
+ "type": "string",
474
+ "format": "date-time",
475
+ "nullable": true
476
+ },
477
+ "rejectionReason": {
478
+ "type": "string",
479
+ "nullable": true
480
+ }
481
+ },
482
+ "additionalProperties": false
483
+ },
484
+ "HubEx.DataProvider.Api.Projections.AUTH.TenantAuthorizationProjection": {
485
+ "type": "object",
486
+ "properties": {
487
+ "tenantID": {
488
+ "type": "integer",
489
+ "format": "int32"
490
+ },
491
+ "uriName": {
492
+ "type": "string",
493
+ "nullable": true
494
+ },
495
+ "name": {
496
+ "type": "string",
497
+ "nullable": true
498
+ },
499
+ "fullName": {
500
+ "type": "string",
501
+ "nullable": true
502
+ },
503
+ "banTill": {
504
+ "type": "string",
505
+ "format": "date-time",
506
+ "nullable": true
507
+ },
508
+ "banReasonID": {
509
+ "type": "integer",
510
+ "format": "int32",
511
+ "nullable": true
512
+ },
513
+ "banReasonCode": {
514
+ "type": "string",
515
+ "nullable": true
516
+ },
517
+ "isTenantArchived": {
518
+ "type": "boolean"
519
+ },
520
+ "isTenantDeleted": {
521
+ "type": "boolean"
522
+ },
523
+ "accountID": {
524
+ "type": "integer",
525
+ "format": "int32"
526
+ },
527
+ "userID": {
528
+ "type": "integer",
529
+ "format": "int32"
530
+ },
531
+ "tenantMemberID": {
532
+ "type": "integer",
533
+ "format": "int32"
534
+ },
535
+ "tenantMemberDescription": {
536
+ "type": "string",
537
+ "nullable": true
538
+ },
539
+ "tenantMemberValidTill": {
540
+ "type": "string",
541
+ "format": "date-time",
542
+ "nullable": true
543
+ },
544
+ "userBanTill": {
545
+ "type": "string",
546
+ "format": "date-time",
547
+ "nullable": true
548
+ },
549
+ "isUserBanned": {
550
+ "type": "boolean"
551
+ },
552
+ "userBanReasonID": {
553
+ "type": "integer",
554
+ "format": "int32",
555
+ "nullable": true
556
+ },
557
+ "userBanReasonCode": {
558
+ "type": "string",
559
+ "nullable": true
560
+ },
561
+ "email": {
562
+ "type": "string",
563
+ "nullable": true
564
+ },
565
+ "firstName": {
566
+ "type": "string",
567
+ "nullable": true
568
+ },
569
+ "middleName": {
570
+ "type": "string",
571
+ "nullable": true
572
+ },
573
+ "lastName": {
574
+ "type": "string",
575
+ "nullable": true
576
+ },
577
+ "hasUserProfile": {
578
+ "type": "boolean"
579
+ }
580
+ },
581
+ "additionalProperties": false
582
+ },
583
+ "HubEx.Service.AUTHN.Core.Data.AccountRealms.CredentialData": {
584
+ "required": [
585
+ "credential"
586
+ ],
587
+ "type": "object",
588
+ "properties": {
589
+ "credential": {
590
+ "minLength": 1,
591
+ "type": "string"
592
+ }
593
+ },
594
+ "additionalProperties": false
595
+ },
596
+ "HubEx.Service.AUTHN.Core.Data.Passwords.SetData": {
597
+ "required": [
598
+ "password"
599
+ ],
600
+ "type": "object",
601
+ "properties": {
602
+ "password": {
603
+ "minLength": 1,
604
+ "type": "string"
605
+ },
606
+ "codeHash": {
607
+ "type": "string",
608
+ "nullable": true
609
+ },
610
+ "code": {
611
+ "type": "string",
612
+ "nullable": true
613
+ },
614
+ "mobilePhone": {
615
+ "type": "string",
616
+ "nullable": true
617
+ }
618
+ },
619
+ "additionalProperties": false
620
+ },
621
+ "HubEx.Service.AUTHN.Core.Dto.AuthSmsDto": {
622
+ "type": "object",
623
+ "properties": {
624
+ "code": {
625
+ "type": "string",
626
+ "nullable": true
627
+ },
628
+ "phone": {
629
+ "type": "string",
630
+ "nullable": true
631
+ }
632
+ },
633
+ "additionalProperties": false
634
+ },
635
+ "HubEx.Service.AUTHN.Core.Dto.PhoneDto": {
636
+ "type": "object",
637
+ "properties": {
638
+ "phone": {
639
+ "type": "string",
640
+ "nullable": true
641
+ }
642
+ },
643
+ "additionalProperties": false
644
+ },
645
+ "HubEx.Service.AUTHN.Core.Results.Account.AccountRealmResult": {
646
+ "type": "object",
647
+ "properties": {
648
+ "tenantID": {
649
+ "type": "integer",
650
+ "format": "int32"
651
+ },
652
+ "tenantName": {
653
+ "type": "string",
654
+ "nullable": true
655
+ },
656
+ "realm": {
657
+ "type": "string",
658
+ "nullable": true
659
+ }
660
+ },
661
+ "additionalProperties": false
662
+ },
663
+ "HubEx.Service.AUTHN.Core.Results.Account.AuthenticationResult": {
664
+ "type": "object",
665
+ "properties": {
666
+ "access_token": {
667
+ "type": "string",
668
+ "nullable": true,
669
+ "readOnly": true
670
+ },
671
+ "refresh_token": {
672
+ "type": "string",
673
+ "nullable": true,
674
+ "readOnly": true
675
+ },
676
+ "expires_in": {
677
+ "type": "integer",
678
+ "format": "int32",
679
+ "nullable": true,
680
+ "readOnly": true
681
+ },
682
+ "jwtValidTill": {
683
+ "type": "string",
684
+ "format": "date-time",
685
+ "nullable": true
686
+ },
687
+ "accountUserTypeID": {
688
+ "type": "integer",
689
+ "format": "int32",
690
+ "nullable": true
691
+ },
692
+ "tenantEntities": {
693
+ "type": "array",
694
+ "items": {
695
+ "$ref": "#/components/schemas/HubEx.DataProvider.Api.Projections.AUTH.TenantAuthorizationProjection"
696
+ },
697
+ "nullable": true
698
+ },
699
+ "requests": {
700
+ "type": "array",
701
+ "items": {
702
+ "$ref": "#/components/schemas/HubEx.DataProvider.Api.Entities.ADM.TenantCreationRequestEntity"
703
+ },
704
+ "nullable": true
705
+ },
706
+ "accountHasUserProfile": {
707
+ "type": "boolean"
708
+ },
709
+ "isCrossTenantAdmin": {
710
+ "type": "boolean"
711
+ },
712
+ "isAnonymous": {
713
+ "type": "boolean"
714
+ }
715
+ },
716
+ "additionalProperties": false
717
+ },
718
+ "HubEx.Service.AUTHN.Core.Results.Account.JwtResultBase": {
719
+ "type": "object",
720
+ "properties": {
721
+ "access_token": {
722
+ "type": "string",
723
+ "nullable": true,
724
+ "readOnly": true
725
+ },
726
+ "refresh_token": {
727
+ "type": "string",
728
+ "nullable": true,
729
+ "readOnly": true
730
+ },
731
+ "expires_in": {
732
+ "type": "integer",
733
+ "format": "int32",
734
+ "nullable": true,
735
+ "readOnly": true
736
+ },
737
+ "jwtValidTill": {
738
+ "type": "string",
739
+ "format": "date-time",
740
+ "nullable": true
741
+ },
742
+ "accountUserTypeID": {
743
+ "type": "integer",
744
+ "format": "int32",
745
+ "nullable": true
746
+ }
747
+ },
748
+ "additionalProperties": false
749
+ },
750
+ "HubEx.Service.AUTHN.Core.Results.Account.OtpGenerateResult": {
751
+ "type": "object",
752
+ "properties": {
753
+ "phone": {
754
+ "type": "string",
755
+ "nullable": true
756
+ }
757
+ },
758
+ "additionalProperties": false
759
+ },
760
+ "Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter": {
761
+ "type": "object",
762
+ "additionalProperties": false
763
+ },
764
+ "Microsoft.AspNetCore.Mvc.ObjectResult": {
765
+ "type": "object",
766
+ "properties": {
767
+ "value": {
768
+ "nullable": true
769
+ },
770
+ "formatters": {
771
+ "type": "array",
772
+ "items": {
773
+ "$ref": "#/components/schemas/Microsoft.AspNetCore.Mvc.Formatters.IOutputFormatter"
774
+ },
775
+ "nullable": true
776
+ },
777
+ "contentTypes": {
778
+ "type": "array",
779
+ "items": {
780
+ "type": "string"
781
+ },
782
+ "nullable": true
783
+ },
784
+ "declaredType": {
785
+ "$ref": "#/components/schemas/System.Type"
786
+ },
787
+ "statusCode": {
788
+ "type": "integer",
789
+ "format": "int32",
790
+ "nullable": true
791
+ }
792
+ },
793
+ "additionalProperties": false
794
+ },
795
+ "SmartService.Common.ExceptionHandling.Models.ErrorModel": {
796
+ "type": "object",
797
+ "properties": {
798
+ "traceIdentifier": {
799
+ "type": "string",
800
+ "nullable": true
801
+ },
802
+ "code": {
803
+ "type": "string",
804
+ "nullable": true
805
+ },
806
+ "message": {
807
+ "type": "string",
808
+ "nullable": true
809
+ },
810
+ "arguments": {
811
+ "type": "object",
812
+ "additionalProperties": {
813
+ "type": "string",
814
+ "nullable": true
815
+ },
816
+ "nullable": true
817
+ }
818
+ },
819
+ "additionalProperties": false
820
+ },
821
+ "System.IntPtr": {
822
+ "type": "object",
823
+ "additionalProperties": false
824
+ },
825
+ "System.ModuleHandle": {
826
+ "type": "object",
827
+ "properties": {
828
+ "mdStreamVersion": {
829
+ "type": "integer",
830
+ "format": "int32",
831
+ "readOnly": true
832
+ }
833
+ },
834
+ "additionalProperties": false
835
+ },
836
+ "System.Reflection.Assembly": {
837
+ "type": "object",
838
+ "properties": {
839
+ "definedTypes": {
840
+ "type": "array",
841
+ "items": {
842
+ "$ref": "#/components/schemas/System.Reflection.TypeInfo"
843
+ },
844
+ "nullable": true,
845
+ "readOnly": true
846
+ },
847
+ "exportedTypes": {
848
+ "type": "array",
849
+ "items": {
850
+ "$ref": "#/components/schemas/System.Type"
851
+ },
852
+ "nullable": true,
853
+ "readOnly": true
854
+ },
855
+ "codeBase": {
856
+ "type": "string",
857
+ "nullable": true,
858
+ "readOnly": true,
859
+ "deprecated": true
860
+ },
861
+ "entryPoint": {
862
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
863
+ },
864
+ "fullName": {
865
+ "type": "string",
866
+ "nullable": true,
867
+ "readOnly": true
868
+ },
869
+ "imageRuntimeVersion": {
870
+ "type": "string",
871
+ "nullable": true,
872
+ "readOnly": true
873
+ },
874
+ "isDynamic": {
875
+ "type": "boolean",
876
+ "readOnly": true
877
+ },
878
+ "location": {
879
+ "type": "string",
880
+ "nullable": true,
881
+ "readOnly": true
882
+ },
883
+ "reflectionOnly": {
884
+ "type": "boolean",
885
+ "readOnly": true
886
+ },
887
+ "isCollectible": {
888
+ "type": "boolean",
889
+ "readOnly": true
890
+ },
891
+ "isFullyTrusted": {
892
+ "type": "boolean",
893
+ "readOnly": true
894
+ },
895
+ "customAttributes": {
896
+ "type": "array",
897
+ "items": {
898
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
899
+ },
900
+ "nullable": true,
901
+ "readOnly": true
902
+ },
903
+ "escapedCodeBase": {
904
+ "type": "string",
905
+ "nullable": true,
906
+ "readOnly": true,
907
+ "deprecated": true
908
+ },
909
+ "manifestModule": {
910
+ "$ref": "#/components/schemas/System.Reflection.Module"
911
+ },
912
+ "modules": {
913
+ "type": "array",
914
+ "items": {
915
+ "$ref": "#/components/schemas/System.Reflection.Module"
916
+ },
917
+ "nullable": true,
918
+ "readOnly": true
919
+ },
920
+ "globalAssemblyCache": {
921
+ "type": "boolean",
922
+ "readOnly": true,
923
+ "deprecated": true
924
+ },
925
+ "hostContext": {
926
+ "type": "integer",
927
+ "format": "int64",
928
+ "readOnly": true
929
+ },
930
+ "securityRuleSet": {
931
+ "$ref": "#/components/schemas/System.Security.SecurityRuleSet"
932
+ }
933
+ },
934
+ "additionalProperties": false
935
+ },
936
+ "System.Reflection.CallingConventions": {
937
+ "enum": [
938
+ "Standard",
939
+ "VarArgs",
940
+ "Any",
941
+ "HasThis",
942
+ "ExplicitThis"
943
+ ],
944
+ "type": "string"
945
+ },
946
+ "System.Reflection.ConstructorInfo": {
947
+ "type": "object",
948
+ "properties": {
949
+ "name": {
950
+ "type": "string",
951
+ "nullable": true,
952
+ "readOnly": true
953
+ },
954
+ "declaringType": {
955
+ "$ref": "#/components/schemas/System.Type"
956
+ },
957
+ "reflectedType": {
958
+ "$ref": "#/components/schemas/System.Type"
959
+ },
960
+ "module": {
961
+ "$ref": "#/components/schemas/System.Reflection.Module"
962
+ },
963
+ "customAttributes": {
964
+ "type": "array",
965
+ "items": {
966
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
967
+ },
968
+ "nullable": true,
969
+ "readOnly": true
970
+ },
971
+ "isCollectible": {
972
+ "type": "boolean",
973
+ "readOnly": true
974
+ },
975
+ "metadataToken": {
976
+ "type": "integer",
977
+ "format": "int32",
978
+ "readOnly": true
979
+ },
980
+ "attributes": {
981
+ "$ref": "#/components/schemas/System.Reflection.MethodAttributes"
982
+ },
983
+ "methodImplementationFlags": {
984
+ "$ref": "#/components/schemas/System.Reflection.MethodImplAttributes"
985
+ },
986
+ "callingConvention": {
987
+ "$ref": "#/components/schemas/System.Reflection.CallingConventions"
988
+ },
989
+ "isAbstract": {
990
+ "type": "boolean",
991
+ "readOnly": true
992
+ },
993
+ "isConstructor": {
994
+ "type": "boolean",
995
+ "readOnly": true
996
+ },
997
+ "isFinal": {
998
+ "type": "boolean",
999
+ "readOnly": true
1000
+ },
1001
+ "isHideBySig": {
1002
+ "type": "boolean",
1003
+ "readOnly": true
1004
+ },
1005
+ "isSpecialName": {
1006
+ "type": "boolean",
1007
+ "readOnly": true
1008
+ },
1009
+ "isStatic": {
1010
+ "type": "boolean",
1011
+ "readOnly": true
1012
+ },
1013
+ "isVirtual": {
1014
+ "type": "boolean",
1015
+ "readOnly": true
1016
+ },
1017
+ "isAssembly": {
1018
+ "type": "boolean",
1019
+ "readOnly": true
1020
+ },
1021
+ "isFamily": {
1022
+ "type": "boolean",
1023
+ "readOnly": true
1024
+ },
1025
+ "isFamilyAndAssembly": {
1026
+ "type": "boolean",
1027
+ "readOnly": true
1028
+ },
1029
+ "isFamilyOrAssembly": {
1030
+ "type": "boolean",
1031
+ "readOnly": true
1032
+ },
1033
+ "isPrivate": {
1034
+ "type": "boolean",
1035
+ "readOnly": true
1036
+ },
1037
+ "isPublic": {
1038
+ "type": "boolean",
1039
+ "readOnly": true
1040
+ },
1041
+ "isConstructedGenericMethod": {
1042
+ "type": "boolean",
1043
+ "readOnly": true
1044
+ },
1045
+ "isGenericMethod": {
1046
+ "type": "boolean",
1047
+ "readOnly": true
1048
+ },
1049
+ "isGenericMethodDefinition": {
1050
+ "type": "boolean",
1051
+ "readOnly": true
1052
+ },
1053
+ "containsGenericParameters": {
1054
+ "type": "boolean",
1055
+ "readOnly": true
1056
+ },
1057
+ "methodHandle": {
1058
+ "$ref": "#/components/schemas/System.RuntimeMethodHandle"
1059
+ },
1060
+ "isSecurityCritical": {
1061
+ "type": "boolean",
1062
+ "readOnly": true
1063
+ },
1064
+ "isSecuritySafeCritical": {
1065
+ "type": "boolean",
1066
+ "readOnly": true
1067
+ },
1068
+ "isSecurityTransparent": {
1069
+ "type": "boolean",
1070
+ "readOnly": true
1071
+ },
1072
+ "memberType": {
1073
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1074
+ }
1075
+ },
1076
+ "additionalProperties": false
1077
+ },
1078
+ "System.Reflection.CustomAttributeData": {
1079
+ "type": "object",
1080
+ "properties": {
1081
+ "attributeType": {
1082
+ "$ref": "#/components/schemas/System.Type"
1083
+ },
1084
+ "constructor": {
1085
+ "$ref": "#/components/schemas/System.Reflection.ConstructorInfo"
1086
+ },
1087
+ "constructorArguments": {
1088
+ "type": "array",
1089
+ "items": {
1090
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeTypedArgument"
1091
+ },
1092
+ "nullable": true,
1093
+ "readOnly": true
1094
+ },
1095
+ "namedArguments": {
1096
+ "type": "array",
1097
+ "items": {
1098
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeNamedArgument"
1099
+ },
1100
+ "nullable": true,
1101
+ "readOnly": true
1102
+ }
1103
+ },
1104
+ "additionalProperties": false
1105
+ },
1106
+ "System.Reflection.CustomAttributeNamedArgument": {
1107
+ "type": "object",
1108
+ "properties": {
1109
+ "memberInfo": {
1110
+ "$ref": "#/components/schemas/System.Reflection.MemberInfo"
1111
+ },
1112
+ "typedValue": {
1113
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeTypedArgument"
1114
+ },
1115
+ "memberName": {
1116
+ "type": "string",
1117
+ "nullable": true,
1118
+ "readOnly": true
1119
+ },
1120
+ "isField": {
1121
+ "type": "boolean",
1122
+ "readOnly": true
1123
+ }
1124
+ },
1125
+ "additionalProperties": false
1126
+ },
1127
+ "System.Reflection.CustomAttributeTypedArgument": {
1128
+ "type": "object",
1129
+ "properties": {
1130
+ "argumentType": {
1131
+ "$ref": "#/components/schemas/System.Type"
1132
+ },
1133
+ "value": {
1134
+ "nullable": true
1135
+ }
1136
+ },
1137
+ "additionalProperties": false
1138
+ },
1139
+ "System.Reflection.EventAttributes": {
1140
+ "enum": [
1141
+ "None",
1142
+ "SpecialName",
1143
+ "RTSpecialName"
1144
+ ],
1145
+ "type": "string"
1146
+ },
1147
+ "System.Reflection.EventInfo": {
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "name": {
1151
+ "type": "string",
1152
+ "nullable": true,
1153
+ "readOnly": true
1154
+ },
1155
+ "declaringType": {
1156
+ "$ref": "#/components/schemas/System.Type"
1157
+ },
1158
+ "reflectedType": {
1159
+ "$ref": "#/components/schemas/System.Type"
1160
+ },
1161
+ "module": {
1162
+ "$ref": "#/components/schemas/System.Reflection.Module"
1163
+ },
1164
+ "customAttributes": {
1165
+ "type": "array",
1166
+ "items": {
1167
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1168
+ },
1169
+ "nullable": true,
1170
+ "readOnly": true
1171
+ },
1172
+ "isCollectible": {
1173
+ "type": "boolean",
1174
+ "readOnly": true
1175
+ },
1176
+ "metadataToken": {
1177
+ "type": "integer",
1178
+ "format": "int32",
1179
+ "readOnly": true
1180
+ },
1181
+ "memberType": {
1182
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1183
+ },
1184
+ "attributes": {
1185
+ "$ref": "#/components/schemas/System.Reflection.EventAttributes"
1186
+ },
1187
+ "isSpecialName": {
1188
+ "type": "boolean",
1189
+ "readOnly": true
1190
+ },
1191
+ "addMethod": {
1192
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
1193
+ },
1194
+ "removeMethod": {
1195
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
1196
+ },
1197
+ "raiseMethod": {
1198
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
1199
+ },
1200
+ "isMulticast": {
1201
+ "type": "boolean",
1202
+ "readOnly": true
1203
+ },
1204
+ "eventHandlerType": {
1205
+ "$ref": "#/components/schemas/System.Type"
1206
+ }
1207
+ },
1208
+ "additionalProperties": false
1209
+ },
1210
+ "System.Reflection.FieldAttributes": {
1211
+ "enum": [
1212
+ "PrivateScope",
1213
+ "Private",
1214
+ "FamANDAssem",
1215
+ "Assembly",
1216
+ "Family",
1217
+ "FamORAssem",
1218
+ "Public",
1219
+ "FieldAccessMask",
1220
+ "Static",
1221
+ "InitOnly",
1222
+ "Literal",
1223
+ "NotSerialized",
1224
+ "HasFieldRVA",
1225
+ "SpecialName",
1226
+ "RTSpecialName",
1227
+ "HasFieldMarshal",
1228
+ "PinvokeImpl",
1229
+ "HasDefault",
1230
+ "ReservedMask"
1231
+ ],
1232
+ "type": "string"
1233
+ },
1234
+ "System.Reflection.FieldInfo": {
1235
+ "type": "object",
1236
+ "properties": {
1237
+ "name": {
1238
+ "type": "string",
1239
+ "nullable": true,
1240
+ "readOnly": true
1241
+ },
1242
+ "declaringType": {
1243
+ "$ref": "#/components/schemas/System.Type"
1244
+ },
1245
+ "reflectedType": {
1246
+ "$ref": "#/components/schemas/System.Type"
1247
+ },
1248
+ "module": {
1249
+ "$ref": "#/components/schemas/System.Reflection.Module"
1250
+ },
1251
+ "customAttributes": {
1252
+ "type": "array",
1253
+ "items": {
1254
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1255
+ },
1256
+ "nullable": true,
1257
+ "readOnly": true
1258
+ },
1259
+ "isCollectible": {
1260
+ "type": "boolean",
1261
+ "readOnly": true
1262
+ },
1263
+ "metadataToken": {
1264
+ "type": "integer",
1265
+ "format": "int32",
1266
+ "readOnly": true
1267
+ },
1268
+ "memberType": {
1269
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1270
+ },
1271
+ "attributes": {
1272
+ "$ref": "#/components/schemas/System.Reflection.FieldAttributes"
1273
+ },
1274
+ "fieldType": {
1275
+ "$ref": "#/components/schemas/System.Type"
1276
+ },
1277
+ "isInitOnly": {
1278
+ "type": "boolean",
1279
+ "readOnly": true
1280
+ },
1281
+ "isLiteral": {
1282
+ "type": "boolean",
1283
+ "readOnly": true
1284
+ },
1285
+ "isNotSerialized": {
1286
+ "type": "boolean",
1287
+ "readOnly": true,
1288
+ "deprecated": true
1289
+ },
1290
+ "isPinvokeImpl": {
1291
+ "type": "boolean",
1292
+ "readOnly": true
1293
+ },
1294
+ "isSpecialName": {
1295
+ "type": "boolean",
1296
+ "readOnly": true
1297
+ },
1298
+ "isStatic": {
1299
+ "type": "boolean",
1300
+ "readOnly": true
1301
+ },
1302
+ "isAssembly": {
1303
+ "type": "boolean",
1304
+ "readOnly": true
1305
+ },
1306
+ "isFamily": {
1307
+ "type": "boolean",
1308
+ "readOnly": true
1309
+ },
1310
+ "isFamilyAndAssembly": {
1311
+ "type": "boolean",
1312
+ "readOnly": true
1313
+ },
1314
+ "isFamilyOrAssembly": {
1315
+ "type": "boolean",
1316
+ "readOnly": true
1317
+ },
1318
+ "isPrivate": {
1319
+ "type": "boolean",
1320
+ "readOnly": true
1321
+ },
1322
+ "isPublic": {
1323
+ "type": "boolean",
1324
+ "readOnly": true
1325
+ },
1326
+ "isSecurityCritical": {
1327
+ "type": "boolean",
1328
+ "readOnly": true
1329
+ },
1330
+ "isSecuritySafeCritical": {
1331
+ "type": "boolean",
1332
+ "readOnly": true
1333
+ },
1334
+ "isSecurityTransparent": {
1335
+ "type": "boolean",
1336
+ "readOnly": true
1337
+ },
1338
+ "fieldHandle": {
1339
+ "$ref": "#/components/schemas/System.RuntimeFieldHandle"
1340
+ }
1341
+ },
1342
+ "additionalProperties": false
1343
+ },
1344
+ "System.Reflection.GenericParameterAttributes": {
1345
+ "enum": [
1346
+ "None",
1347
+ "Covariant",
1348
+ "Contravariant",
1349
+ "VarianceMask",
1350
+ "ReferenceTypeConstraint",
1351
+ "NotNullableValueTypeConstraint",
1352
+ "DefaultConstructorConstraint",
1353
+ "SpecialConstraintMask"
1354
+ ],
1355
+ "type": "string"
1356
+ },
1357
+ "System.Reflection.ICustomAttributeProvider": {
1358
+ "type": "object",
1359
+ "additionalProperties": false
1360
+ },
1361
+ "System.Reflection.MemberInfo": {
1362
+ "type": "object",
1363
+ "properties": {
1364
+ "memberType": {
1365
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1366
+ },
1367
+ "name": {
1368
+ "type": "string",
1369
+ "nullable": true,
1370
+ "readOnly": true
1371
+ },
1372
+ "declaringType": {
1373
+ "$ref": "#/components/schemas/System.Type"
1374
+ },
1375
+ "reflectedType": {
1376
+ "$ref": "#/components/schemas/System.Type"
1377
+ },
1378
+ "module": {
1379
+ "$ref": "#/components/schemas/System.Reflection.Module"
1380
+ },
1381
+ "customAttributes": {
1382
+ "type": "array",
1383
+ "items": {
1384
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1385
+ },
1386
+ "nullable": true,
1387
+ "readOnly": true
1388
+ },
1389
+ "isCollectible": {
1390
+ "type": "boolean",
1391
+ "readOnly": true
1392
+ },
1393
+ "metadataToken": {
1394
+ "type": "integer",
1395
+ "format": "int32",
1396
+ "readOnly": true
1397
+ }
1398
+ },
1399
+ "additionalProperties": false
1400
+ },
1401
+ "System.Reflection.MemberTypes": {
1402
+ "enum": [
1403
+ "Constructor",
1404
+ "Event",
1405
+ "Field",
1406
+ "Method",
1407
+ "Property",
1408
+ "TypeInfo",
1409
+ "Custom",
1410
+ "NestedType",
1411
+ "All"
1412
+ ],
1413
+ "type": "string"
1414
+ },
1415
+ "System.Reflection.MethodAttributes": {
1416
+ "enum": [
1417
+ "PrivateScope",
1418
+ "Private",
1419
+ "FamANDAssem",
1420
+ "Assembly",
1421
+ "Family",
1422
+ "FamORAssem",
1423
+ "Public",
1424
+ "MemberAccessMask",
1425
+ "UnmanagedExport",
1426
+ "Static",
1427
+ "Final",
1428
+ "Virtual",
1429
+ "HideBySig",
1430
+ "NewSlot",
1431
+ "CheckAccessOnOverride",
1432
+ "Abstract",
1433
+ "SpecialName",
1434
+ "RTSpecialName",
1435
+ "PinvokeImpl",
1436
+ "HasSecurity",
1437
+ "RequireSecObject",
1438
+ "ReservedMask"
1439
+ ],
1440
+ "type": "string"
1441
+ },
1442
+ "System.Reflection.MethodBase": {
1443
+ "type": "object",
1444
+ "properties": {
1445
+ "memberType": {
1446
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1447
+ },
1448
+ "name": {
1449
+ "type": "string",
1450
+ "nullable": true,
1451
+ "readOnly": true
1452
+ },
1453
+ "declaringType": {
1454
+ "$ref": "#/components/schemas/System.Type"
1455
+ },
1456
+ "reflectedType": {
1457
+ "$ref": "#/components/schemas/System.Type"
1458
+ },
1459
+ "module": {
1460
+ "$ref": "#/components/schemas/System.Reflection.Module"
1461
+ },
1462
+ "customAttributes": {
1463
+ "type": "array",
1464
+ "items": {
1465
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1466
+ },
1467
+ "nullable": true,
1468
+ "readOnly": true
1469
+ },
1470
+ "isCollectible": {
1471
+ "type": "boolean",
1472
+ "readOnly": true
1473
+ },
1474
+ "metadataToken": {
1475
+ "type": "integer",
1476
+ "format": "int32",
1477
+ "readOnly": true
1478
+ },
1479
+ "attributes": {
1480
+ "$ref": "#/components/schemas/System.Reflection.MethodAttributes"
1481
+ },
1482
+ "methodImplementationFlags": {
1483
+ "$ref": "#/components/schemas/System.Reflection.MethodImplAttributes"
1484
+ },
1485
+ "callingConvention": {
1486
+ "$ref": "#/components/schemas/System.Reflection.CallingConventions"
1487
+ },
1488
+ "isAbstract": {
1489
+ "type": "boolean",
1490
+ "readOnly": true
1491
+ },
1492
+ "isConstructor": {
1493
+ "type": "boolean",
1494
+ "readOnly": true
1495
+ },
1496
+ "isFinal": {
1497
+ "type": "boolean",
1498
+ "readOnly": true
1499
+ },
1500
+ "isHideBySig": {
1501
+ "type": "boolean",
1502
+ "readOnly": true
1503
+ },
1504
+ "isSpecialName": {
1505
+ "type": "boolean",
1506
+ "readOnly": true
1507
+ },
1508
+ "isStatic": {
1509
+ "type": "boolean",
1510
+ "readOnly": true
1511
+ },
1512
+ "isVirtual": {
1513
+ "type": "boolean",
1514
+ "readOnly": true
1515
+ },
1516
+ "isAssembly": {
1517
+ "type": "boolean",
1518
+ "readOnly": true
1519
+ },
1520
+ "isFamily": {
1521
+ "type": "boolean",
1522
+ "readOnly": true
1523
+ },
1524
+ "isFamilyAndAssembly": {
1525
+ "type": "boolean",
1526
+ "readOnly": true
1527
+ },
1528
+ "isFamilyOrAssembly": {
1529
+ "type": "boolean",
1530
+ "readOnly": true
1531
+ },
1532
+ "isPrivate": {
1533
+ "type": "boolean",
1534
+ "readOnly": true
1535
+ },
1536
+ "isPublic": {
1537
+ "type": "boolean",
1538
+ "readOnly": true
1539
+ },
1540
+ "isConstructedGenericMethod": {
1541
+ "type": "boolean",
1542
+ "readOnly": true
1543
+ },
1544
+ "isGenericMethod": {
1545
+ "type": "boolean",
1546
+ "readOnly": true
1547
+ },
1548
+ "isGenericMethodDefinition": {
1549
+ "type": "boolean",
1550
+ "readOnly": true
1551
+ },
1552
+ "containsGenericParameters": {
1553
+ "type": "boolean",
1554
+ "readOnly": true
1555
+ },
1556
+ "methodHandle": {
1557
+ "$ref": "#/components/schemas/System.RuntimeMethodHandle"
1558
+ },
1559
+ "isSecurityCritical": {
1560
+ "type": "boolean",
1561
+ "readOnly": true
1562
+ },
1563
+ "isSecuritySafeCritical": {
1564
+ "type": "boolean",
1565
+ "readOnly": true
1566
+ },
1567
+ "isSecurityTransparent": {
1568
+ "type": "boolean",
1569
+ "readOnly": true
1570
+ }
1571
+ },
1572
+ "additionalProperties": false
1573
+ },
1574
+ "System.Reflection.MethodImplAttributes": {
1575
+ "enum": [
1576
+ "IL",
1577
+ "Native",
1578
+ "OPTIL",
1579
+ "CodeTypeMask",
1580
+ "ManagedMask",
1581
+ "NoInlining",
1582
+ "ForwardRef",
1583
+ "Synchronized",
1584
+ "NoOptimization",
1585
+ "PreserveSig",
1586
+ "AggressiveInlining",
1587
+ "AggressiveOptimization",
1588
+ "InternalCall",
1589
+ "MaxMethodImplVal"
1590
+ ],
1591
+ "type": "string"
1592
+ },
1593
+ "System.Reflection.MethodInfo": {
1594
+ "type": "object",
1595
+ "properties": {
1596
+ "name": {
1597
+ "type": "string",
1598
+ "nullable": true,
1599
+ "readOnly": true
1600
+ },
1601
+ "declaringType": {
1602
+ "$ref": "#/components/schemas/System.Type"
1603
+ },
1604
+ "reflectedType": {
1605
+ "$ref": "#/components/schemas/System.Type"
1606
+ },
1607
+ "module": {
1608
+ "$ref": "#/components/schemas/System.Reflection.Module"
1609
+ },
1610
+ "customAttributes": {
1611
+ "type": "array",
1612
+ "items": {
1613
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1614
+ },
1615
+ "nullable": true,
1616
+ "readOnly": true
1617
+ },
1618
+ "isCollectible": {
1619
+ "type": "boolean",
1620
+ "readOnly": true
1621
+ },
1622
+ "metadataToken": {
1623
+ "type": "integer",
1624
+ "format": "int32",
1625
+ "readOnly": true
1626
+ },
1627
+ "attributes": {
1628
+ "$ref": "#/components/schemas/System.Reflection.MethodAttributes"
1629
+ },
1630
+ "methodImplementationFlags": {
1631
+ "$ref": "#/components/schemas/System.Reflection.MethodImplAttributes"
1632
+ },
1633
+ "callingConvention": {
1634
+ "$ref": "#/components/schemas/System.Reflection.CallingConventions"
1635
+ },
1636
+ "isAbstract": {
1637
+ "type": "boolean",
1638
+ "readOnly": true
1639
+ },
1640
+ "isConstructor": {
1641
+ "type": "boolean",
1642
+ "readOnly": true
1643
+ },
1644
+ "isFinal": {
1645
+ "type": "boolean",
1646
+ "readOnly": true
1647
+ },
1648
+ "isHideBySig": {
1649
+ "type": "boolean",
1650
+ "readOnly": true
1651
+ },
1652
+ "isSpecialName": {
1653
+ "type": "boolean",
1654
+ "readOnly": true
1655
+ },
1656
+ "isStatic": {
1657
+ "type": "boolean",
1658
+ "readOnly": true
1659
+ },
1660
+ "isVirtual": {
1661
+ "type": "boolean",
1662
+ "readOnly": true
1663
+ },
1664
+ "isAssembly": {
1665
+ "type": "boolean",
1666
+ "readOnly": true
1667
+ },
1668
+ "isFamily": {
1669
+ "type": "boolean",
1670
+ "readOnly": true
1671
+ },
1672
+ "isFamilyAndAssembly": {
1673
+ "type": "boolean",
1674
+ "readOnly": true
1675
+ },
1676
+ "isFamilyOrAssembly": {
1677
+ "type": "boolean",
1678
+ "readOnly": true
1679
+ },
1680
+ "isPrivate": {
1681
+ "type": "boolean",
1682
+ "readOnly": true
1683
+ },
1684
+ "isPublic": {
1685
+ "type": "boolean",
1686
+ "readOnly": true
1687
+ },
1688
+ "isConstructedGenericMethod": {
1689
+ "type": "boolean",
1690
+ "readOnly": true
1691
+ },
1692
+ "isGenericMethod": {
1693
+ "type": "boolean",
1694
+ "readOnly": true
1695
+ },
1696
+ "isGenericMethodDefinition": {
1697
+ "type": "boolean",
1698
+ "readOnly": true
1699
+ },
1700
+ "containsGenericParameters": {
1701
+ "type": "boolean",
1702
+ "readOnly": true
1703
+ },
1704
+ "methodHandle": {
1705
+ "$ref": "#/components/schemas/System.RuntimeMethodHandle"
1706
+ },
1707
+ "isSecurityCritical": {
1708
+ "type": "boolean",
1709
+ "readOnly": true
1710
+ },
1711
+ "isSecuritySafeCritical": {
1712
+ "type": "boolean",
1713
+ "readOnly": true
1714
+ },
1715
+ "isSecurityTransparent": {
1716
+ "type": "boolean",
1717
+ "readOnly": true
1718
+ },
1719
+ "memberType": {
1720
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1721
+ },
1722
+ "returnParameter": {
1723
+ "$ref": "#/components/schemas/System.Reflection.ParameterInfo"
1724
+ },
1725
+ "returnType": {
1726
+ "$ref": "#/components/schemas/System.Type"
1727
+ },
1728
+ "returnTypeCustomAttributes": {
1729
+ "$ref": "#/components/schemas/System.Reflection.ICustomAttributeProvider"
1730
+ }
1731
+ },
1732
+ "additionalProperties": false
1733
+ },
1734
+ "System.Reflection.Module": {
1735
+ "type": "object",
1736
+ "properties": {
1737
+ "assembly": {
1738
+ "$ref": "#/components/schemas/System.Reflection.Assembly"
1739
+ },
1740
+ "fullyQualifiedName": {
1741
+ "type": "string",
1742
+ "nullable": true,
1743
+ "readOnly": true
1744
+ },
1745
+ "name": {
1746
+ "type": "string",
1747
+ "nullable": true,
1748
+ "readOnly": true
1749
+ },
1750
+ "mdStreamVersion": {
1751
+ "type": "integer",
1752
+ "format": "int32",
1753
+ "readOnly": true
1754
+ },
1755
+ "moduleVersionId": {
1756
+ "type": "string",
1757
+ "format": "uuid",
1758
+ "readOnly": true
1759
+ },
1760
+ "scopeName": {
1761
+ "type": "string",
1762
+ "nullable": true,
1763
+ "readOnly": true
1764
+ },
1765
+ "moduleHandle": {
1766
+ "$ref": "#/components/schemas/System.ModuleHandle"
1767
+ },
1768
+ "customAttributes": {
1769
+ "type": "array",
1770
+ "items": {
1771
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1772
+ },
1773
+ "nullable": true,
1774
+ "readOnly": true
1775
+ },
1776
+ "metadataToken": {
1777
+ "type": "integer",
1778
+ "format": "int32",
1779
+ "readOnly": true
1780
+ }
1781
+ },
1782
+ "additionalProperties": false
1783
+ },
1784
+ "System.Reflection.ParameterAttributes": {
1785
+ "enum": [
1786
+ "None",
1787
+ "In",
1788
+ "Out",
1789
+ "Lcid",
1790
+ "Retval",
1791
+ "Optional",
1792
+ "HasDefault",
1793
+ "HasFieldMarshal",
1794
+ "Reserved3",
1795
+ "Reserved4",
1796
+ "ReservedMask"
1797
+ ],
1798
+ "type": "string"
1799
+ },
1800
+ "System.Reflection.ParameterInfo": {
1801
+ "type": "object",
1802
+ "properties": {
1803
+ "attributes": {
1804
+ "$ref": "#/components/schemas/System.Reflection.ParameterAttributes"
1805
+ },
1806
+ "member": {
1807
+ "$ref": "#/components/schemas/System.Reflection.MemberInfo"
1808
+ },
1809
+ "name": {
1810
+ "type": "string",
1811
+ "nullable": true,
1812
+ "readOnly": true
1813
+ },
1814
+ "parameterType": {
1815
+ "$ref": "#/components/schemas/System.Type"
1816
+ },
1817
+ "position": {
1818
+ "type": "integer",
1819
+ "format": "int32",
1820
+ "readOnly": true
1821
+ },
1822
+ "isIn": {
1823
+ "type": "boolean",
1824
+ "readOnly": true
1825
+ },
1826
+ "isLcid": {
1827
+ "type": "boolean",
1828
+ "readOnly": true
1829
+ },
1830
+ "isOptional": {
1831
+ "type": "boolean",
1832
+ "readOnly": true
1833
+ },
1834
+ "isOut": {
1835
+ "type": "boolean",
1836
+ "readOnly": true
1837
+ },
1838
+ "isRetval": {
1839
+ "type": "boolean",
1840
+ "readOnly": true
1841
+ },
1842
+ "defaultValue": {
1843
+ "nullable": true,
1844
+ "readOnly": true
1845
+ },
1846
+ "rawDefaultValue": {
1847
+ "nullable": true,
1848
+ "readOnly": true
1849
+ },
1850
+ "hasDefaultValue": {
1851
+ "type": "boolean",
1852
+ "readOnly": true
1853
+ },
1854
+ "customAttributes": {
1855
+ "type": "array",
1856
+ "items": {
1857
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1858
+ },
1859
+ "nullable": true,
1860
+ "readOnly": true
1861
+ },
1862
+ "metadataToken": {
1863
+ "type": "integer",
1864
+ "format": "int32",
1865
+ "readOnly": true
1866
+ }
1867
+ },
1868
+ "additionalProperties": false
1869
+ },
1870
+ "System.Reflection.PropertyAttributes": {
1871
+ "enum": [
1872
+ "None",
1873
+ "SpecialName",
1874
+ "RTSpecialName",
1875
+ "HasDefault",
1876
+ "Reserved2",
1877
+ "Reserved3",
1878
+ "Reserved4",
1879
+ "ReservedMask"
1880
+ ],
1881
+ "type": "string"
1882
+ },
1883
+ "System.Reflection.PropertyInfo": {
1884
+ "type": "object",
1885
+ "properties": {
1886
+ "name": {
1887
+ "type": "string",
1888
+ "nullable": true,
1889
+ "readOnly": true
1890
+ },
1891
+ "declaringType": {
1892
+ "$ref": "#/components/schemas/System.Type"
1893
+ },
1894
+ "reflectedType": {
1895
+ "$ref": "#/components/schemas/System.Type"
1896
+ },
1897
+ "module": {
1898
+ "$ref": "#/components/schemas/System.Reflection.Module"
1899
+ },
1900
+ "customAttributes": {
1901
+ "type": "array",
1902
+ "items": {
1903
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1904
+ },
1905
+ "nullable": true,
1906
+ "readOnly": true
1907
+ },
1908
+ "isCollectible": {
1909
+ "type": "boolean",
1910
+ "readOnly": true
1911
+ },
1912
+ "metadataToken": {
1913
+ "type": "integer",
1914
+ "format": "int32",
1915
+ "readOnly": true
1916
+ },
1917
+ "memberType": {
1918
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
1919
+ },
1920
+ "propertyType": {
1921
+ "$ref": "#/components/schemas/System.Type"
1922
+ },
1923
+ "attributes": {
1924
+ "$ref": "#/components/schemas/System.Reflection.PropertyAttributes"
1925
+ },
1926
+ "isSpecialName": {
1927
+ "type": "boolean",
1928
+ "readOnly": true
1929
+ },
1930
+ "canRead": {
1931
+ "type": "boolean",
1932
+ "readOnly": true
1933
+ },
1934
+ "canWrite": {
1935
+ "type": "boolean",
1936
+ "readOnly": true
1937
+ },
1938
+ "getMethod": {
1939
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
1940
+ },
1941
+ "setMethod": {
1942
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
1943
+ }
1944
+ },
1945
+ "additionalProperties": false
1946
+ },
1947
+ "System.Reflection.TypeAttributes": {
1948
+ "enum": [
1949
+ "NotPublic",
1950
+ "Public",
1951
+ "NestedPublic",
1952
+ "NestedPrivate",
1953
+ "NestedFamily",
1954
+ "NestedAssembly",
1955
+ "NestedFamANDAssem",
1956
+ "VisibilityMask",
1957
+ "SequentialLayout",
1958
+ "ExplicitLayout",
1959
+ "LayoutMask",
1960
+ "Interface",
1961
+ "Abstract",
1962
+ "Sealed",
1963
+ "SpecialName",
1964
+ "RTSpecialName",
1965
+ "Import",
1966
+ "Serializable",
1967
+ "WindowsRuntime",
1968
+ "UnicodeClass",
1969
+ "AutoClass",
1970
+ "StringFormatMask",
1971
+ "HasSecurity",
1972
+ "ReservedMask",
1973
+ "BeforeFieldInit",
1974
+ "CustomFormatMask"
1975
+ ],
1976
+ "type": "string"
1977
+ },
1978
+ "System.Reflection.TypeInfo": {
1979
+ "type": "object",
1980
+ "properties": {
1981
+ "name": {
1982
+ "type": "string",
1983
+ "nullable": true,
1984
+ "readOnly": true
1985
+ },
1986
+ "customAttributes": {
1987
+ "type": "array",
1988
+ "items": {
1989
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
1990
+ },
1991
+ "nullable": true,
1992
+ "readOnly": true
1993
+ },
1994
+ "isCollectible": {
1995
+ "type": "boolean",
1996
+ "readOnly": true
1997
+ },
1998
+ "metadataToken": {
1999
+ "type": "integer",
2000
+ "format": "int32",
2001
+ "readOnly": true
2002
+ },
2003
+ "isInterface": {
2004
+ "type": "boolean",
2005
+ "readOnly": true
2006
+ },
2007
+ "memberType": {
2008
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
2009
+ },
2010
+ "namespace": {
2011
+ "type": "string",
2012
+ "nullable": true,
2013
+ "readOnly": true
2014
+ },
2015
+ "assemblyQualifiedName": {
2016
+ "type": "string",
2017
+ "nullable": true,
2018
+ "readOnly": true
2019
+ },
2020
+ "fullName": {
2021
+ "type": "string",
2022
+ "nullable": true,
2023
+ "readOnly": true
2024
+ },
2025
+ "assembly": {
2026
+ "$ref": "#/components/schemas/System.Reflection.Assembly"
2027
+ },
2028
+ "module": {
2029
+ "$ref": "#/components/schemas/System.Reflection.Module"
2030
+ },
2031
+ "isNested": {
2032
+ "type": "boolean",
2033
+ "readOnly": true
2034
+ },
2035
+ "declaringType": {
2036
+ "$ref": "#/components/schemas/System.Type"
2037
+ },
2038
+ "declaringMethod": {
2039
+ "$ref": "#/components/schemas/System.Reflection.MethodBase"
2040
+ },
2041
+ "reflectedType": {
2042
+ "$ref": "#/components/schemas/System.Type"
2043
+ },
2044
+ "underlyingSystemType": {
2045
+ "$ref": "#/components/schemas/System.Type"
2046
+ },
2047
+ "isTypeDefinition": {
2048
+ "type": "boolean",
2049
+ "readOnly": true
2050
+ },
2051
+ "isArray": {
2052
+ "type": "boolean",
2053
+ "readOnly": true
2054
+ },
2055
+ "isByRef": {
2056
+ "type": "boolean",
2057
+ "readOnly": true
2058
+ },
2059
+ "isPointer": {
2060
+ "type": "boolean",
2061
+ "readOnly": true
2062
+ },
2063
+ "isConstructedGenericType": {
2064
+ "type": "boolean",
2065
+ "readOnly": true
2066
+ },
2067
+ "isGenericParameter": {
2068
+ "type": "boolean",
2069
+ "readOnly": true
2070
+ },
2071
+ "isGenericTypeParameter": {
2072
+ "type": "boolean",
2073
+ "readOnly": true
2074
+ },
2075
+ "isGenericMethodParameter": {
2076
+ "type": "boolean",
2077
+ "readOnly": true
2078
+ },
2079
+ "isGenericType": {
2080
+ "type": "boolean",
2081
+ "readOnly": true
2082
+ },
2083
+ "isGenericTypeDefinition": {
2084
+ "type": "boolean",
2085
+ "readOnly": true
2086
+ },
2087
+ "isSZArray": {
2088
+ "type": "boolean",
2089
+ "readOnly": true
2090
+ },
2091
+ "isVariableBoundArray": {
2092
+ "type": "boolean",
2093
+ "readOnly": true
2094
+ },
2095
+ "isByRefLike": {
2096
+ "type": "boolean",
2097
+ "readOnly": true
2098
+ },
2099
+ "isFunctionPointer": {
2100
+ "type": "boolean",
2101
+ "readOnly": true
2102
+ },
2103
+ "isUnmanagedFunctionPointer": {
2104
+ "type": "boolean",
2105
+ "readOnly": true
2106
+ },
2107
+ "hasElementType": {
2108
+ "type": "boolean",
2109
+ "readOnly": true
2110
+ },
2111
+ "genericTypeArguments": {
2112
+ "type": "array",
2113
+ "items": {
2114
+ "$ref": "#/components/schemas/System.Type"
2115
+ },
2116
+ "nullable": true,
2117
+ "readOnly": true
2118
+ },
2119
+ "genericParameterPosition": {
2120
+ "type": "integer",
2121
+ "format": "int32",
2122
+ "readOnly": true
2123
+ },
2124
+ "genericParameterAttributes": {
2125
+ "$ref": "#/components/schemas/System.Reflection.GenericParameterAttributes"
2126
+ },
2127
+ "attributes": {
2128
+ "$ref": "#/components/schemas/System.Reflection.TypeAttributes"
2129
+ },
2130
+ "isAbstract": {
2131
+ "type": "boolean",
2132
+ "readOnly": true
2133
+ },
2134
+ "isImport": {
2135
+ "type": "boolean",
2136
+ "readOnly": true
2137
+ },
2138
+ "isSealed": {
2139
+ "type": "boolean",
2140
+ "readOnly": true
2141
+ },
2142
+ "isSpecialName": {
2143
+ "type": "boolean",
2144
+ "readOnly": true
2145
+ },
2146
+ "isClass": {
2147
+ "type": "boolean",
2148
+ "readOnly": true
2149
+ },
2150
+ "isNestedAssembly": {
2151
+ "type": "boolean",
2152
+ "readOnly": true
2153
+ },
2154
+ "isNestedFamANDAssem": {
2155
+ "type": "boolean",
2156
+ "readOnly": true
2157
+ },
2158
+ "isNestedFamily": {
2159
+ "type": "boolean",
2160
+ "readOnly": true
2161
+ },
2162
+ "isNestedFamORAssem": {
2163
+ "type": "boolean",
2164
+ "readOnly": true
2165
+ },
2166
+ "isNestedPrivate": {
2167
+ "type": "boolean",
2168
+ "readOnly": true
2169
+ },
2170
+ "isNestedPublic": {
2171
+ "type": "boolean",
2172
+ "readOnly": true
2173
+ },
2174
+ "isNotPublic": {
2175
+ "type": "boolean",
2176
+ "readOnly": true
2177
+ },
2178
+ "isPublic": {
2179
+ "type": "boolean",
2180
+ "readOnly": true
2181
+ },
2182
+ "isAutoLayout": {
2183
+ "type": "boolean",
2184
+ "readOnly": true
2185
+ },
2186
+ "isExplicitLayout": {
2187
+ "type": "boolean",
2188
+ "readOnly": true
2189
+ },
2190
+ "isLayoutSequential": {
2191
+ "type": "boolean",
2192
+ "readOnly": true
2193
+ },
2194
+ "isAnsiClass": {
2195
+ "type": "boolean",
2196
+ "readOnly": true
2197
+ },
2198
+ "isAutoClass": {
2199
+ "type": "boolean",
2200
+ "readOnly": true
2201
+ },
2202
+ "isUnicodeClass": {
2203
+ "type": "boolean",
2204
+ "readOnly": true
2205
+ },
2206
+ "isCOMObject": {
2207
+ "type": "boolean",
2208
+ "readOnly": true
2209
+ },
2210
+ "isContextful": {
2211
+ "type": "boolean",
2212
+ "readOnly": true
2213
+ },
2214
+ "isEnum": {
2215
+ "type": "boolean",
2216
+ "readOnly": true
2217
+ },
2218
+ "isMarshalByRef": {
2219
+ "type": "boolean",
2220
+ "readOnly": true
2221
+ },
2222
+ "isPrimitive": {
2223
+ "type": "boolean",
2224
+ "readOnly": true
2225
+ },
2226
+ "isValueType": {
2227
+ "type": "boolean",
2228
+ "readOnly": true
2229
+ },
2230
+ "isSignatureType": {
2231
+ "type": "boolean",
2232
+ "readOnly": true
2233
+ },
2234
+ "isSecurityCritical": {
2235
+ "type": "boolean",
2236
+ "readOnly": true
2237
+ },
2238
+ "isSecuritySafeCritical": {
2239
+ "type": "boolean",
2240
+ "readOnly": true
2241
+ },
2242
+ "isSecurityTransparent": {
2243
+ "type": "boolean",
2244
+ "readOnly": true
2245
+ },
2246
+ "structLayoutAttribute": {
2247
+ "$ref": "#/components/schemas/System.Runtime.InteropServices.StructLayoutAttribute"
2248
+ },
2249
+ "typeInitializer": {
2250
+ "$ref": "#/components/schemas/System.Reflection.ConstructorInfo"
2251
+ },
2252
+ "typeHandle": {
2253
+ "$ref": "#/components/schemas/System.RuntimeTypeHandle"
2254
+ },
2255
+ "guid": {
2256
+ "type": "string",
2257
+ "format": "uuid",
2258
+ "readOnly": true
2259
+ },
2260
+ "baseType": {
2261
+ "$ref": "#/components/schemas/System.Type"
2262
+ },
2263
+ "isSerializable": {
2264
+ "type": "boolean",
2265
+ "readOnly": true,
2266
+ "deprecated": true
2267
+ },
2268
+ "containsGenericParameters": {
2269
+ "type": "boolean",
2270
+ "readOnly": true
2271
+ },
2272
+ "isVisible": {
2273
+ "type": "boolean",
2274
+ "readOnly": true
2275
+ },
2276
+ "genericTypeParameters": {
2277
+ "type": "array",
2278
+ "items": {
2279
+ "$ref": "#/components/schemas/System.Type"
2280
+ },
2281
+ "nullable": true,
2282
+ "readOnly": true
2283
+ },
2284
+ "declaredConstructors": {
2285
+ "type": "array",
2286
+ "items": {
2287
+ "$ref": "#/components/schemas/System.Reflection.ConstructorInfo"
2288
+ },
2289
+ "nullable": true,
2290
+ "readOnly": true
2291
+ },
2292
+ "declaredEvents": {
2293
+ "type": "array",
2294
+ "items": {
2295
+ "$ref": "#/components/schemas/System.Reflection.EventInfo"
2296
+ },
2297
+ "nullable": true,
2298
+ "readOnly": true
2299
+ },
2300
+ "declaredFields": {
2301
+ "type": "array",
2302
+ "items": {
2303
+ "$ref": "#/components/schemas/System.Reflection.FieldInfo"
2304
+ },
2305
+ "nullable": true,
2306
+ "readOnly": true
2307
+ },
2308
+ "declaredMembers": {
2309
+ "type": "array",
2310
+ "items": {
2311
+ "$ref": "#/components/schemas/System.Reflection.MemberInfo"
2312
+ },
2313
+ "nullable": true,
2314
+ "readOnly": true
2315
+ },
2316
+ "declaredMethods": {
2317
+ "type": "array",
2318
+ "items": {
2319
+ "$ref": "#/components/schemas/System.Reflection.MethodInfo"
2320
+ },
2321
+ "nullable": true,
2322
+ "readOnly": true
2323
+ },
2324
+ "declaredNestedTypes": {
2325
+ "type": "array",
2326
+ "items": {
2327
+ "$ref": "#/components/schemas/System.Reflection.TypeInfo"
2328
+ },
2329
+ "nullable": true,
2330
+ "readOnly": true
2331
+ },
2332
+ "declaredProperties": {
2333
+ "type": "array",
2334
+ "items": {
2335
+ "$ref": "#/components/schemas/System.Reflection.PropertyInfo"
2336
+ },
2337
+ "nullable": true,
2338
+ "readOnly": true
2339
+ },
2340
+ "implementedInterfaces": {
2341
+ "type": "array",
2342
+ "items": {
2343
+ "$ref": "#/components/schemas/System.Type"
2344
+ },
2345
+ "nullable": true,
2346
+ "readOnly": true
2347
+ }
2348
+ },
2349
+ "additionalProperties": false
2350
+ },
2351
+ "System.Runtime.InteropServices.LayoutKind": {
2352
+ "enum": [
2353
+ "Sequential",
2354
+ "Explicit",
2355
+ "Auto"
2356
+ ],
2357
+ "type": "string"
2358
+ },
2359
+ "System.Runtime.InteropServices.StructLayoutAttribute": {
2360
+ "type": "object",
2361
+ "properties": {
2362
+ "typeId": {
2363
+ "nullable": true,
2364
+ "readOnly": true
2365
+ },
2366
+ "value": {
2367
+ "$ref": "#/components/schemas/System.Runtime.InteropServices.LayoutKind"
2368
+ }
2369
+ },
2370
+ "additionalProperties": false
2371
+ },
2372
+ "System.RuntimeFieldHandle": {
2373
+ "type": "object",
2374
+ "properties": {
2375
+ "value": {
2376
+ "$ref": "#/components/schemas/System.IntPtr"
2377
+ }
2378
+ },
2379
+ "additionalProperties": false
2380
+ },
2381
+ "System.RuntimeMethodHandle": {
2382
+ "type": "object",
2383
+ "properties": {
2384
+ "value": {
2385
+ "$ref": "#/components/schemas/System.IntPtr"
2386
+ }
2387
+ },
2388
+ "additionalProperties": false
2389
+ },
2390
+ "System.RuntimeTypeHandle": {
2391
+ "type": "object",
2392
+ "properties": {
2393
+ "value": {
2394
+ "$ref": "#/components/schemas/System.IntPtr"
2395
+ }
2396
+ },
2397
+ "additionalProperties": false
2398
+ },
2399
+ "System.Security.SecurityRuleSet": {
2400
+ "enum": [
2401
+ "None",
2402
+ "Level1",
2403
+ "Level2"
2404
+ ],
2405
+ "type": "string"
2406
+ },
2407
+ "System.Type": {
2408
+ "type": "object",
2409
+ "properties": {
2410
+ "name": {
2411
+ "type": "string",
2412
+ "nullable": true,
2413
+ "readOnly": true
2414
+ },
2415
+ "customAttributes": {
2416
+ "type": "array",
2417
+ "items": {
2418
+ "$ref": "#/components/schemas/System.Reflection.CustomAttributeData"
2419
+ },
2420
+ "nullable": true,
2421
+ "readOnly": true
2422
+ },
2423
+ "isCollectible": {
2424
+ "type": "boolean",
2425
+ "readOnly": true
2426
+ },
2427
+ "metadataToken": {
2428
+ "type": "integer",
2429
+ "format": "int32",
2430
+ "readOnly": true
2431
+ },
2432
+ "isInterface": {
2433
+ "type": "boolean",
2434
+ "readOnly": true
2435
+ },
2436
+ "memberType": {
2437
+ "$ref": "#/components/schemas/System.Reflection.MemberTypes"
2438
+ },
2439
+ "namespace": {
2440
+ "type": "string",
2441
+ "nullable": true,
2442
+ "readOnly": true
2443
+ },
2444
+ "assemblyQualifiedName": {
2445
+ "type": "string",
2446
+ "nullable": true,
2447
+ "readOnly": true
2448
+ },
2449
+ "fullName": {
2450
+ "type": "string",
2451
+ "nullable": true,
2452
+ "readOnly": true
2453
+ },
2454
+ "assembly": {
2455
+ "$ref": "#/components/schemas/System.Reflection.Assembly"
2456
+ },
2457
+ "module": {
2458
+ "$ref": "#/components/schemas/System.Reflection.Module"
2459
+ },
2460
+ "isNested": {
2461
+ "type": "boolean",
2462
+ "readOnly": true
2463
+ },
2464
+ "declaringType": {
2465
+ "$ref": "#/components/schemas/System.Type"
2466
+ },
2467
+ "declaringMethod": {
2468
+ "$ref": "#/components/schemas/System.Reflection.MethodBase"
2469
+ },
2470
+ "reflectedType": {
2471
+ "$ref": "#/components/schemas/System.Type"
2472
+ },
2473
+ "underlyingSystemType": {
2474
+ "$ref": "#/components/schemas/System.Type"
2475
+ },
2476
+ "isTypeDefinition": {
2477
+ "type": "boolean",
2478
+ "readOnly": true
2479
+ },
2480
+ "isArray": {
2481
+ "type": "boolean",
2482
+ "readOnly": true
2483
+ },
2484
+ "isByRef": {
2485
+ "type": "boolean",
2486
+ "readOnly": true
2487
+ },
2488
+ "isPointer": {
2489
+ "type": "boolean",
2490
+ "readOnly": true
2491
+ },
2492
+ "isConstructedGenericType": {
2493
+ "type": "boolean",
2494
+ "readOnly": true
2495
+ },
2496
+ "isGenericParameter": {
2497
+ "type": "boolean",
2498
+ "readOnly": true
2499
+ },
2500
+ "isGenericTypeParameter": {
2501
+ "type": "boolean",
2502
+ "readOnly": true
2503
+ },
2504
+ "isGenericMethodParameter": {
2505
+ "type": "boolean",
2506
+ "readOnly": true
2507
+ },
2508
+ "isGenericType": {
2509
+ "type": "boolean",
2510
+ "readOnly": true
2511
+ },
2512
+ "isGenericTypeDefinition": {
2513
+ "type": "boolean",
2514
+ "readOnly": true
2515
+ },
2516
+ "isSZArray": {
2517
+ "type": "boolean",
2518
+ "readOnly": true
2519
+ },
2520
+ "isVariableBoundArray": {
2521
+ "type": "boolean",
2522
+ "readOnly": true
2523
+ },
2524
+ "isByRefLike": {
2525
+ "type": "boolean",
2526
+ "readOnly": true
2527
+ },
2528
+ "isFunctionPointer": {
2529
+ "type": "boolean",
2530
+ "readOnly": true
2531
+ },
2532
+ "isUnmanagedFunctionPointer": {
2533
+ "type": "boolean",
2534
+ "readOnly": true
2535
+ },
2536
+ "hasElementType": {
2537
+ "type": "boolean",
2538
+ "readOnly": true
2539
+ },
2540
+ "genericTypeArguments": {
2541
+ "type": "array",
2542
+ "items": {
2543
+ "$ref": "#/components/schemas/System.Type"
2544
+ },
2545
+ "nullable": true,
2546
+ "readOnly": true
2547
+ },
2548
+ "genericParameterPosition": {
2549
+ "type": "integer",
2550
+ "format": "int32",
2551
+ "readOnly": true
2552
+ },
2553
+ "genericParameterAttributes": {
2554
+ "$ref": "#/components/schemas/System.Reflection.GenericParameterAttributes"
2555
+ },
2556
+ "attributes": {
2557
+ "$ref": "#/components/schemas/System.Reflection.TypeAttributes"
2558
+ },
2559
+ "isAbstract": {
2560
+ "type": "boolean",
2561
+ "readOnly": true
2562
+ },
2563
+ "isImport": {
2564
+ "type": "boolean",
2565
+ "readOnly": true
2566
+ },
2567
+ "isSealed": {
2568
+ "type": "boolean",
2569
+ "readOnly": true
2570
+ },
2571
+ "isSpecialName": {
2572
+ "type": "boolean",
2573
+ "readOnly": true
2574
+ },
2575
+ "isClass": {
2576
+ "type": "boolean",
2577
+ "readOnly": true
2578
+ },
2579
+ "isNestedAssembly": {
2580
+ "type": "boolean",
2581
+ "readOnly": true
2582
+ },
2583
+ "isNestedFamANDAssem": {
2584
+ "type": "boolean",
2585
+ "readOnly": true
2586
+ },
2587
+ "isNestedFamily": {
2588
+ "type": "boolean",
2589
+ "readOnly": true
2590
+ },
2591
+ "isNestedFamORAssem": {
2592
+ "type": "boolean",
2593
+ "readOnly": true
2594
+ },
2595
+ "isNestedPrivate": {
2596
+ "type": "boolean",
2597
+ "readOnly": true
2598
+ },
2599
+ "isNestedPublic": {
2600
+ "type": "boolean",
2601
+ "readOnly": true
2602
+ },
2603
+ "isNotPublic": {
2604
+ "type": "boolean",
2605
+ "readOnly": true
2606
+ },
2607
+ "isPublic": {
2608
+ "type": "boolean",
2609
+ "readOnly": true
2610
+ },
2611
+ "isAutoLayout": {
2612
+ "type": "boolean",
2613
+ "readOnly": true
2614
+ },
2615
+ "isExplicitLayout": {
2616
+ "type": "boolean",
2617
+ "readOnly": true
2618
+ },
2619
+ "isLayoutSequential": {
2620
+ "type": "boolean",
2621
+ "readOnly": true
2622
+ },
2623
+ "isAnsiClass": {
2624
+ "type": "boolean",
2625
+ "readOnly": true
2626
+ },
2627
+ "isAutoClass": {
2628
+ "type": "boolean",
2629
+ "readOnly": true
2630
+ },
2631
+ "isUnicodeClass": {
2632
+ "type": "boolean",
2633
+ "readOnly": true
2634
+ },
2635
+ "isCOMObject": {
2636
+ "type": "boolean",
2637
+ "readOnly": true
2638
+ },
2639
+ "isContextful": {
2640
+ "type": "boolean",
2641
+ "readOnly": true
2642
+ },
2643
+ "isEnum": {
2644
+ "type": "boolean",
2645
+ "readOnly": true
2646
+ },
2647
+ "isMarshalByRef": {
2648
+ "type": "boolean",
2649
+ "readOnly": true
2650
+ },
2651
+ "isPrimitive": {
2652
+ "type": "boolean",
2653
+ "readOnly": true
2654
+ },
2655
+ "isValueType": {
2656
+ "type": "boolean",
2657
+ "readOnly": true
2658
+ },
2659
+ "isSignatureType": {
2660
+ "type": "boolean",
2661
+ "readOnly": true
2662
+ },
2663
+ "isSecurityCritical": {
2664
+ "type": "boolean",
2665
+ "readOnly": true
2666
+ },
2667
+ "isSecuritySafeCritical": {
2668
+ "type": "boolean",
2669
+ "readOnly": true
2670
+ },
2671
+ "isSecurityTransparent": {
2672
+ "type": "boolean",
2673
+ "readOnly": true
2674
+ },
2675
+ "structLayoutAttribute": {
2676
+ "$ref": "#/components/schemas/System.Runtime.InteropServices.StructLayoutAttribute"
2677
+ },
2678
+ "typeInitializer": {
2679
+ "$ref": "#/components/schemas/System.Reflection.ConstructorInfo"
2680
+ },
2681
+ "typeHandle": {
2682
+ "$ref": "#/components/schemas/System.RuntimeTypeHandle"
2683
+ },
2684
+ "guid": {
2685
+ "type": "string",
2686
+ "format": "uuid",
2687
+ "readOnly": true
2688
+ },
2689
+ "baseType": {
2690
+ "$ref": "#/components/schemas/System.Type"
2691
+ },
2692
+ "isSerializable": {
2693
+ "type": "boolean",
2694
+ "readOnly": true,
2695
+ "deprecated": true
2696
+ },
2697
+ "containsGenericParameters": {
2698
+ "type": "boolean",
2699
+ "readOnly": true
2700
+ },
2701
+ "isVisible": {
2702
+ "type": "boolean",
2703
+ "readOnly": true
2704
+ }
2705
+ },
2706
+ "additionalProperties": false
2707
+ }
2708
+ }
2709
+ }
2710
+ }