@opusdns/api 0.298.0 → 0.299.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.
- package/package.json +1 -1
- package/src/openapi.yaml +138 -48
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -188,7 +188,8 @@ components:
|
|
|
188
188
|
type: string
|
|
189
189
|
product_reference:
|
|
190
190
|
anyOf:
|
|
191
|
-
-
|
|
191
|
+
- maxLength: 255
|
|
192
|
+
minLength: 1
|
|
192
193
|
type: string
|
|
193
194
|
- type: 'null'
|
|
194
195
|
description: The reference of the product
|
|
@@ -729,6 +730,7 @@ components:
|
|
|
729
730
|
properties:
|
|
730
731
|
city:
|
|
731
732
|
description: The city of the contact
|
|
733
|
+
maxLength: 255
|
|
732
734
|
minLength: 1
|
|
733
735
|
title: City
|
|
734
736
|
type: string
|
|
@@ -757,17 +759,20 @@ components:
|
|
|
757
759
|
title: Fax
|
|
758
760
|
first_name:
|
|
759
761
|
description: The first name of the contact
|
|
762
|
+
maxLength: 255
|
|
760
763
|
minLength: 1
|
|
761
764
|
title: First Name
|
|
762
765
|
type: string
|
|
763
766
|
last_name:
|
|
764
767
|
description: The last name of the contact
|
|
768
|
+
maxLength: 255
|
|
765
769
|
minLength: 1
|
|
766
770
|
title: Last Name
|
|
767
771
|
type: string
|
|
768
772
|
org:
|
|
769
773
|
anyOf:
|
|
770
|
-
-
|
|
774
|
+
- maxLength: 255
|
|
775
|
+
minLength: 1
|
|
771
776
|
type: string
|
|
772
777
|
- type: 'null'
|
|
773
778
|
description: The organization of the contact
|
|
@@ -781,24 +786,28 @@ components:
|
|
|
781
786
|
type: string
|
|
782
787
|
postal_code:
|
|
783
788
|
description: The postal code of the contact
|
|
789
|
+
maxLength: 255
|
|
784
790
|
minLength: 1
|
|
785
791
|
title: Postal Code
|
|
786
792
|
type: string
|
|
787
793
|
state:
|
|
788
794
|
anyOf:
|
|
789
|
-
-
|
|
795
|
+
- maxLength: 255
|
|
796
|
+
minLength: 1
|
|
790
797
|
type: string
|
|
791
798
|
- type: 'null'
|
|
792
799
|
description: The state of the contact
|
|
793
800
|
title: State
|
|
794
801
|
street:
|
|
795
802
|
description: The address of the contact
|
|
803
|
+
maxLength: 255
|
|
796
804
|
minLength: 1
|
|
797
805
|
title: Street
|
|
798
806
|
type: string
|
|
799
807
|
title:
|
|
800
808
|
anyOf:
|
|
801
|
-
-
|
|
809
|
+
- maxLength: 255
|
|
810
|
+
minLength: 1
|
|
802
811
|
type: string
|
|
803
812
|
- type: 'null'
|
|
804
813
|
description: The title of the contact
|
|
@@ -844,6 +853,7 @@ components:
|
|
|
844
853
|
properties:
|
|
845
854
|
city:
|
|
846
855
|
description: City
|
|
856
|
+
maxLength: 255
|
|
847
857
|
minLength: 1
|
|
848
858
|
title: City
|
|
849
859
|
type: string
|
|
@@ -874,17 +884,20 @@ components:
|
|
|
874
884
|
title: Fax
|
|
875
885
|
first_name:
|
|
876
886
|
description: First name of the contact
|
|
887
|
+
maxLength: 255
|
|
877
888
|
minLength: 1
|
|
878
889
|
title: First Name
|
|
879
890
|
type: string
|
|
880
891
|
last_name:
|
|
881
892
|
description: Last name of the contact
|
|
893
|
+
maxLength: 255
|
|
882
894
|
minLength: 1
|
|
883
895
|
title: Last Name
|
|
884
896
|
type: string
|
|
885
897
|
org:
|
|
886
898
|
anyOf:
|
|
887
|
-
-
|
|
899
|
+
- maxLength: 255
|
|
900
|
+
minLength: 1
|
|
888
901
|
type: string
|
|
889
902
|
- type: 'null'
|
|
890
903
|
description: Override organization for this contact
|
|
@@ -896,24 +909,28 @@ components:
|
|
|
896
909
|
type: string
|
|
897
910
|
postal_code:
|
|
898
911
|
description: Postal code
|
|
912
|
+
maxLength: 255
|
|
899
913
|
minLength: 1
|
|
900
914
|
title: Postal Code
|
|
901
915
|
type: string
|
|
902
916
|
state:
|
|
903
917
|
anyOf:
|
|
904
|
-
-
|
|
918
|
+
- maxLength: 255
|
|
919
|
+
minLength: 1
|
|
905
920
|
type: string
|
|
906
921
|
- type: 'null'
|
|
907
922
|
description: Override state for this contact
|
|
908
923
|
title: State
|
|
909
924
|
street:
|
|
910
925
|
description: Street address
|
|
926
|
+
maxLength: 255
|
|
911
927
|
minLength: 1
|
|
912
928
|
title: Street
|
|
913
929
|
type: string
|
|
914
930
|
title:
|
|
915
931
|
anyOf:
|
|
916
|
-
-
|
|
932
|
+
- maxLength: 255
|
|
933
|
+
minLength: 1
|
|
917
934
|
type: string
|
|
918
935
|
- type: 'null'
|
|
919
936
|
description: Override title for this contact
|
|
@@ -959,21 +976,24 @@ components:
|
|
|
959
976
|
type: boolean
|
|
960
977
|
org:
|
|
961
978
|
anyOf:
|
|
962
|
-
-
|
|
979
|
+
- maxLength: 255
|
|
980
|
+
minLength: 1
|
|
963
981
|
type: string
|
|
964
982
|
- type: 'null'
|
|
965
983
|
description: Organization name
|
|
966
984
|
title: Org
|
|
967
985
|
state:
|
|
968
986
|
anyOf:
|
|
969
|
-
-
|
|
987
|
+
- maxLength: 255
|
|
988
|
+
minLength: 1
|
|
970
989
|
type: string
|
|
971
990
|
- type: 'null'
|
|
972
991
|
description: State/province
|
|
973
992
|
title: State
|
|
974
993
|
title:
|
|
975
994
|
anyOf:
|
|
976
|
-
-
|
|
995
|
+
- maxLength: 255
|
|
996
|
+
minLength: 1
|
|
977
997
|
type: string
|
|
978
998
|
- type: 'null'
|
|
979
999
|
description: Contact title
|
|
@@ -1012,6 +1032,7 @@ components:
|
|
|
1012
1032
|
properties:
|
|
1013
1033
|
city:
|
|
1014
1034
|
description: The city of the contact
|
|
1035
|
+
maxLength: 255
|
|
1015
1036
|
minLength: 1
|
|
1016
1037
|
title: City
|
|
1017
1038
|
type: string
|
|
@@ -1040,17 +1061,20 @@ components:
|
|
|
1040
1061
|
title: Fax
|
|
1041
1062
|
first_name:
|
|
1042
1063
|
description: The first name of the contact
|
|
1064
|
+
maxLength: 255
|
|
1043
1065
|
minLength: 1
|
|
1044
1066
|
title: First Name
|
|
1045
1067
|
type: string
|
|
1046
1068
|
last_name:
|
|
1047
1069
|
description: The last name of the contact
|
|
1070
|
+
maxLength: 255
|
|
1048
1071
|
minLength: 1
|
|
1049
1072
|
title: Last Name
|
|
1050
1073
|
type: string
|
|
1051
1074
|
org:
|
|
1052
1075
|
anyOf:
|
|
1053
|
-
-
|
|
1076
|
+
- maxLength: 255
|
|
1077
|
+
minLength: 1
|
|
1054
1078
|
type: string
|
|
1055
1079
|
- type: 'null'
|
|
1056
1080
|
description: The organization of the contact
|
|
@@ -1064,24 +1088,28 @@ components:
|
|
|
1064
1088
|
type: string
|
|
1065
1089
|
postal_code:
|
|
1066
1090
|
description: The postal code of the contact
|
|
1091
|
+
maxLength: 255
|
|
1067
1092
|
minLength: 1
|
|
1068
1093
|
title: Postal Code
|
|
1069
1094
|
type: string
|
|
1070
1095
|
state:
|
|
1071
1096
|
anyOf:
|
|
1072
|
-
-
|
|
1097
|
+
- maxLength: 255
|
|
1098
|
+
minLength: 1
|
|
1073
1099
|
type: string
|
|
1074
1100
|
- type: 'null'
|
|
1075
1101
|
description: The state of the contact
|
|
1076
1102
|
title: State
|
|
1077
1103
|
street:
|
|
1078
1104
|
description: The address of the contact
|
|
1105
|
+
maxLength: 255
|
|
1079
1106
|
minLength: 1
|
|
1080
1107
|
title: Street
|
|
1081
1108
|
type: string
|
|
1082
1109
|
title:
|
|
1083
1110
|
anyOf:
|
|
1084
|
-
-
|
|
1111
|
+
- maxLength: 255
|
|
1112
|
+
minLength: 1
|
|
1085
1113
|
type: string
|
|
1086
1114
|
- type: 'null'
|
|
1087
1115
|
description: The title of the contact
|
|
@@ -1185,6 +1213,7 @@ components:
|
|
|
1185
1213
|
type: array
|
|
1186
1214
|
city:
|
|
1187
1215
|
description: The city of the contact
|
|
1216
|
+
maxLength: 255
|
|
1188
1217
|
minLength: 1
|
|
1189
1218
|
title: City
|
|
1190
1219
|
type: string
|
|
@@ -1226,17 +1255,20 @@ components:
|
|
|
1226
1255
|
title: Fax
|
|
1227
1256
|
first_name:
|
|
1228
1257
|
description: The first name of the contact
|
|
1258
|
+
maxLength: 255
|
|
1229
1259
|
minLength: 1
|
|
1230
1260
|
title: First Name
|
|
1231
1261
|
type: string
|
|
1232
1262
|
last_name:
|
|
1233
1263
|
description: The last name of the contact
|
|
1264
|
+
maxLength: 255
|
|
1234
1265
|
minLength: 1
|
|
1235
1266
|
title: Last Name
|
|
1236
1267
|
type: string
|
|
1237
1268
|
org:
|
|
1238
1269
|
anyOf:
|
|
1239
|
-
-
|
|
1270
|
+
- maxLength: 255
|
|
1271
|
+
minLength: 1
|
|
1240
1272
|
type: string
|
|
1241
1273
|
- type: 'null'
|
|
1242
1274
|
description: The organization of the contact
|
|
@@ -1260,18 +1292,21 @@ components:
|
|
|
1260
1292
|
type: string
|
|
1261
1293
|
postal_code:
|
|
1262
1294
|
description: The postal code of the contact
|
|
1295
|
+
maxLength: 255
|
|
1263
1296
|
minLength: 1
|
|
1264
1297
|
title: Postal Code
|
|
1265
1298
|
type: string
|
|
1266
1299
|
state:
|
|
1267
1300
|
anyOf:
|
|
1268
|
-
-
|
|
1301
|
+
- maxLength: 255
|
|
1302
|
+
minLength: 1
|
|
1269
1303
|
type: string
|
|
1270
1304
|
- type: 'null'
|
|
1271
1305
|
description: The state of the contact
|
|
1272
1306
|
title: State
|
|
1273
1307
|
street:
|
|
1274
1308
|
description: The address of the contact
|
|
1309
|
+
maxLength: 255
|
|
1275
1310
|
minLength: 1
|
|
1276
1311
|
title: Street
|
|
1277
1312
|
type: string
|
|
@@ -1285,7 +1320,8 @@ components:
|
|
|
1285
1320
|
title: Tags
|
|
1286
1321
|
title:
|
|
1287
1322
|
anyOf:
|
|
1288
|
-
-
|
|
1323
|
+
- maxLength: 255
|
|
1324
|
+
minLength: 1
|
|
1289
1325
|
type: string
|
|
1290
1326
|
- type: 'null'
|
|
1291
1327
|
description: The title of the contact
|
|
@@ -1306,6 +1342,7 @@ components:
|
|
|
1306
1342
|
properties:
|
|
1307
1343
|
city:
|
|
1308
1344
|
description: The city of the contact
|
|
1345
|
+
maxLength: 255
|
|
1309
1346
|
minLength: 1
|
|
1310
1347
|
title: City
|
|
1311
1348
|
type: string
|
|
@@ -1347,17 +1384,20 @@ components:
|
|
|
1347
1384
|
title: Fax
|
|
1348
1385
|
first_name:
|
|
1349
1386
|
description: The first name of the contact
|
|
1387
|
+
maxLength: 255
|
|
1350
1388
|
minLength: 1
|
|
1351
1389
|
title: First Name
|
|
1352
1390
|
type: string
|
|
1353
1391
|
last_name:
|
|
1354
1392
|
description: The last name of the contact
|
|
1393
|
+
maxLength: 255
|
|
1355
1394
|
minLength: 1
|
|
1356
1395
|
title: Last Name
|
|
1357
1396
|
type: string
|
|
1358
1397
|
org:
|
|
1359
1398
|
anyOf:
|
|
1360
|
-
-
|
|
1399
|
+
- maxLength: 255
|
|
1400
|
+
minLength: 1
|
|
1361
1401
|
type: string
|
|
1362
1402
|
- type: 'null'
|
|
1363
1403
|
description: The organization of the contact
|
|
@@ -1381,24 +1421,28 @@ components:
|
|
|
1381
1421
|
type: string
|
|
1382
1422
|
postal_code:
|
|
1383
1423
|
description: The postal code of the contact
|
|
1424
|
+
maxLength: 255
|
|
1384
1425
|
minLength: 1
|
|
1385
1426
|
title: Postal Code
|
|
1386
1427
|
type: string
|
|
1387
1428
|
state:
|
|
1388
1429
|
anyOf:
|
|
1389
|
-
-
|
|
1430
|
+
- maxLength: 255
|
|
1431
|
+
minLength: 1
|
|
1390
1432
|
type: string
|
|
1391
1433
|
- type: 'null'
|
|
1392
1434
|
description: The state of the contact
|
|
1393
1435
|
title: State
|
|
1394
1436
|
street:
|
|
1395
1437
|
description: The address of the contact
|
|
1438
|
+
maxLength: 255
|
|
1396
1439
|
minLength: 1
|
|
1397
1440
|
title: Street
|
|
1398
1441
|
type: string
|
|
1399
1442
|
title:
|
|
1400
1443
|
anyOf:
|
|
1401
|
-
-
|
|
1444
|
+
- maxLength: 255
|
|
1445
|
+
minLength: 1
|
|
1402
1446
|
type: string
|
|
1403
1447
|
- type: 'null'
|
|
1404
1448
|
description: The title of the contact
|
|
@@ -4003,7 +4047,8 @@ components:
|
|
|
4003
4047
|
properties:
|
|
4004
4048
|
auth_code:
|
|
4005
4049
|
anyOf:
|
|
4006
|
-
-
|
|
4050
|
+
- maxLength: 255
|
|
4051
|
+
minLength: 1
|
|
4007
4052
|
type: string
|
|
4008
4053
|
- type: 'null'
|
|
4009
4054
|
description: The auth code for the domain
|
|
@@ -4123,6 +4168,7 @@ components:
|
|
|
4123
4168
|
description: The second level domain
|
|
4124
4169
|
examples:
|
|
4125
4170
|
- example
|
|
4171
|
+
maxLength: 255
|
|
4126
4172
|
minLength: 1
|
|
4127
4173
|
title: Sld
|
|
4128
4174
|
type: string
|
|
@@ -4148,6 +4194,7 @@ components:
|
|
|
4148
4194
|
description: The top level domain of the domain
|
|
4149
4195
|
examples:
|
|
4150
4196
|
- com
|
|
4197
|
+
maxLength: 255
|
|
4151
4198
|
minLength: 1
|
|
4152
4199
|
title: Tld
|
|
4153
4200
|
type: string
|
|
@@ -4766,7 +4813,8 @@ components:
|
|
|
4766
4813
|
properties:
|
|
4767
4814
|
auth_code:
|
|
4768
4815
|
anyOf:
|
|
4769
|
-
-
|
|
4816
|
+
- maxLength: 255
|
|
4817
|
+
minLength: 1
|
|
4770
4818
|
type: string
|
|
4771
4819
|
- type: 'null'
|
|
4772
4820
|
description: The new auth code for the domain
|
|
@@ -4840,7 +4888,8 @@ components:
|
|
|
4840
4888
|
properties:
|
|
4841
4889
|
auth_code:
|
|
4842
4890
|
anyOf:
|
|
4843
|
-
-
|
|
4891
|
+
- maxLength: 255
|
|
4892
|
+
minLength: 1
|
|
4844
4893
|
type: string
|
|
4845
4894
|
- type: 'null'
|
|
4846
4895
|
description: Override auth code for this domain
|
|
@@ -4972,7 +5021,8 @@ components:
|
|
|
4972
5021
|
properties:
|
|
4973
5022
|
auth_code:
|
|
4974
5023
|
anyOf:
|
|
4975
|
-
-
|
|
5024
|
+
- maxLength: 255
|
|
5025
|
+
minLength: 1
|
|
4976
5026
|
type: string
|
|
4977
5027
|
- type: 'null'
|
|
4978
5028
|
description: The new auth code for the domain
|
|
@@ -7152,14 +7202,16 @@ components:
|
|
|
7152
7202
|
properties:
|
|
7153
7203
|
address_1:
|
|
7154
7204
|
anyOf:
|
|
7155
|
-
-
|
|
7205
|
+
- maxLength: 255
|
|
7206
|
+
minLength: 1
|
|
7156
7207
|
type: string
|
|
7157
7208
|
- type: 'null'
|
|
7158
7209
|
description: First line of the organization's address.
|
|
7159
7210
|
title: Address 1
|
|
7160
7211
|
address_2:
|
|
7161
7212
|
anyOf:
|
|
7162
|
-
-
|
|
7213
|
+
- maxLength: 255
|
|
7214
|
+
minLength: 1
|
|
7163
7215
|
type: string
|
|
7164
7216
|
- type: 'null'
|
|
7165
7217
|
description: Second line of the organization's address.
|
|
@@ -7180,7 +7232,8 @@ components:
|
|
|
7180
7232
|
title: Business Number
|
|
7181
7233
|
city:
|
|
7182
7234
|
anyOf:
|
|
7183
|
-
-
|
|
7235
|
+
- maxLength: 255
|
|
7236
|
+
minLength: 1
|
|
7184
7237
|
type: string
|
|
7185
7238
|
- type: 'null'
|
|
7186
7239
|
description: City of the organization's address.
|
|
@@ -7226,6 +7279,7 @@ components:
|
|
|
7226
7279
|
title: Keycloak Organization Id
|
|
7227
7280
|
name:
|
|
7228
7281
|
description: Name of the organization.
|
|
7282
|
+
maxLength: 255
|
|
7229
7283
|
minLength: 1
|
|
7230
7284
|
title: Name
|
|
7231
7285
|
type: string
|
|
@@ -7259,7 +7313,8 @@ components:
|
|
|
7259
7313
|
title: Postal Code
|
|
7260
7314
|
state:
|
|
7261
7315
|
anyOf:
|
|
7262
|
-
-
|
|
7316
|
+
- maxLength: 255
|
|
7317
|
+
minLength: 1
|
|
7263
7318
|
type: string
|
|
7264
7319
|
- type: 'null'
|
|
7265
7320
|
description: State or province of the organization's address.
|
|
@@ -7435,14 +7490,16 @@ components:
|
|
|
7435
7490
|
properties:
|
|
7436
7491
|
address_1:
|
|
7437
7492
|
anyOf:
|
|
7438
|
-
-
|
|
7493
|
+
- maxLength: 255
|
|
7494
|
+
minLength: 1
|
|
7439
7495
|
type: string
|
|
7440
7496
|
- type: 'null'
|
|
7441
7497
|
description: First line of the organization's address.
|
|
7442
7498
|
title: Address 1
|
|
7443
7499
|
address_2:
|
|
7444
7500
|
anyOf:
|
|
7445
|
-
-
|
|
7501
|
+
- maxLength: 255
|
|
7502
|
+
minLength: 1
|
|
7446
7503
|
type: string
|
|
7447
7504
|
- type: 'null'
|
|
7448
7505
|
description: Second line of the organization's address.
|
|
@@ -7464,7 +7521,8 @@ components:
|
|
|
7464
7521
|
title: Business Number
|
|
7465
7522
|
city:
|
|
7466
7523
|
anyOf:
|
|
7467
|
-
-
|
|
7524
|
+
- maxLength: 255
|
|
7525
|
+
minLength: 1
|
|
7468
7526
|
type: string
|
|
7469
7527
|
- type: 'null'
|
|
7470
7528
|
description: City of the organization's address.
|
|
@@ -7492,6 +7550,7 @@ components:
|
|
|
7492
7550
|
title: Default Locale
|
|
7493
7551
|
name:
|
|
7494
7552
|
description: Name of the organization.
|
|
7553
|
+
maxLength: 255
|
|
7495
7554
|
minLength: 1
|
|
7496
7555
|
title: Name
|
|
7497
7556
|
type: string
|
|
@@ -7516,7 +7575,8 @@ components:
|
|
|
7516
7575
|
title: Postal Code
|
|
7517
7576
|
state:
|
|
7518
7577
|
anyOf:
|
|
7519
|
-
-
|
|
7578
|
+
- maxLength: 255
|
|
7579
|
+
minLength: 1
|
|
7520
7580
|
type: string
|
|
7521
7581
|
- type: 'null'
|
|
7522
7582
|
description: State or province of the organization's address.
|
|
@@ -7595,14 +7655,16 @@ components:
|
|
|
7595
7655
|
properties:
|
|
7596
7656
|
address_1:
|
|
7597
7657
|
anyOf:
|
|
7598
|
-
-
|
|
7658
|
+
- maxLength: 255
|
|
7659
|
+
minLength: 1
|
|
7599
7660
|
type: string
|
|
7600
7661
|
- type: 'null'
|
|
7601
7662
|
description: First line of the organization's address.
|
|
7602
7663
|
title: Address 1
|
|
7603
7664
|
address_2:
|
|
7604
7665
|
anyOf:
|
|
7605
|
-
-
|
|
7666
|
+
- maxLength: 255
|
|
7667
|
+
minLength: 1
|
|
7606
7668
|
type: string
|
|
7607
7669
|
- type: 'null'
|
|
7608
7670
|
description: Second line of the organization's address.
|
|
@@ -7618,7 +7680,8 @@ components:
|
|
|
7618
7680
|
title: Business Number
|
|
7619
7681
|
city:
|
|
7620
7682
|
anyOf:
|
|
7621
|
-
-
|
|
7683
|
+
- maxLength: 255
|
|
7684
|
+
minLength: 1
|
|
7622
7685
|
type: string
|
|
7623
7686
|
- type: 'null'
|
|
7624
7687
|
description: City of the organization's address.
|
|
@@ -7642,35 +7705,40 @@ components:
|
|
|
7642
7705
|
title: Default Locale
|
|
7643
7706
|
name:
|
|
7644
7707
|
anyOf:
|
|
7645
|
-
-
|
|
7708
|
+
- maxLength: 255
|
|
7709
|
+
minLength: 1
|
|
7646
7710
|
type: string
|
|
7647
7711
|
- type: 'null'
|
|
7648
7712
|
description: Name of the organization.
|
|
7649
7713
|
title: Name
|
|
7650
7714
|
postal_code:
|
|
7651
7715
|
anyOf:
|
|
7652
|
-
-
|
|
7716
|
+
- maxLength: 255
|
|
7717
|
+
minLength: 1
|
|
7653
7718
|
type: string
|
|
7654
7719
|
- type: 'null'
|
|
7655
7720
|
description: Postal code of the organization's address.
|
|
7656
7721
|
title: Postal Code
|
|
7657
7722
|
state:
|
|
7658
7723
|
anyOf:
|
|
7659
|
-
-
|
|
7724
|
+
- maxLength: 255
|
|
7725
|
+
minLength: 1
|
|
7660
7726
|
type: string
|
|
7661
7727
|
- type: 'null'
|
|
7662
7728
|
description: State or province of the organization's address.
|
|
7663
7729
|
title: State
|
|
7664
7730
|
tax_id:
|
|
7665
7731
|
anyOf:
|
|
7666
|
-
-
|
|
7732
|
+
- maxLength: 255
|
|
7733
|
+
minLength: 1
|
|
7667
7734
|
type: string
|
|
7668
7735
|
- type: 'null'
|
|
7669
7736
|
description: Tax ID of the organization.
|
|
7670
7737
|
title: Tax Id
|
|
7671
7738
|
tax_id_type:
|
|
7672
7739
|
anyOf:
|
|
7673
|
-
-
|
|
7740
|
+
- maxLength: 255
|
|
7741
|
+
minLength: 1
|
|
7674
7742
|
type: string
|
|
7675
7743
|
- type: 'null'
|
|
7676
7744
|
description: Type of tax ID for the organization.
|
|
@@ -7697,14 +7765,16 @@ components:
|
|
|
7697
7765
|
$ref: '#/components/schemas/BillingPlan'
|
|
7698
7766
|
address_1:
|
|
7699
7767
|
anyOf:
|
|
7700
|
-
-
|
|
7768
|
+
- maxLength: 255
|
|
7769
|
+
minLength: 1
|
|
7701
7770
|
type: string
|
|
7702
7771
|
- type: 'null'
|
|
7703
7772
|
description: First line of the organization's address.
|
|
7704
7773
|
title: Address 1
|
|
7705
7774
|
address_2:
|
|
7706
7775
|
anyOf:
|
|
7707
|
-
-
|
|
7776
|
+
- maxLength: 255
|
|
7777
|
+
minLength: 1
|
|
7708
7778
|
type: string
|
|
7709
7779
|
- type: 'null'
|
|
7710
7780
|
description: Second line of the organization's address.
|
|
@@ -7727,7 +7797,8 @@ components:
|
|
|
7727
7797
|
title: Business Number
|
|
7728
7798
|
city:
|
|
7729
7799
|
anyOf:
|
|
7730
|
-
-
|
|
7800
|
+
- maxLength: 255
|
|
7801
|
+
minLength: 1
|
|
7731
7802
|
type: string
|
|
7732
7803
|
- type: 'null'
|
|
7733
7804
|
description: City of the organization's address.
|
|
@@ -7773,6 +7844,7 @@ components:
|
|
|
7773
7844
|
title: Keycloak Organization Id
|
|
7774
7845
|
name:
|
|
7775
7846
|
description: Name of the organization.
|
|
7847
|
+
maxLength: 255
|
|
7776
7848
|
minLength: 1
|
|
7777
7849
|
title: Name
|
|
7778
7850
|
type: string
|
|
@@ -7806,7 +7878,8 @@ components:
|
|
|
7806
7878
|
title: Postal Code
|
|
7807
7879
|
state:
|
|
7808
7880
|
anyOf:
|
|
7809
|
-
-
|
|
7881
|
+
- maxLength: 255
|
|
7882
|
+
minLength: 1
|
|
7810
7883
|
type: string
|
|
7811
7884
|
- type: 'null'
|
|
7812
7885
|
description: State or province of the organization's address.
|
|
@@ -9531,6 +9604,7 @@ components:
|
|
|
9531
9604
|
title: Description
|
|
9532
9605
|
label:
|
|
9533
9606
|
description: The label of the tag
|
|
9607
|
+
maxLength: 255
|
|
9534
9608
|
minLength: 1
|
|
9535
9609
|
title: Label
|
|
9536
9610
|
type: string
|
|
@@ -9616,6 +9690,7 @@ components:
|
|
|
9616
9690
|
description: The color of the tag
|
|
9617
9691
|
label:
|
|
9618
9692
|
description: The label of the tag
|
|
9693
|
+
maxLength: 255
|
|
9619
9694
|
minLength: 1
|
|
9620
9695
|
title: Label
|
|
9621
9696
|
type: string
|
|
@@ -9659,6 +9734,7 @@ components:
|
|
|
9659
9734
|
title: Description
|
|
9660
9735
|
label:
|
|
9661
9736
|
description: The label of the tag
|
|
9737
|
+
maxLength: 255
|
|
9662
9738
|
minLength: 1
|
|
9663
9739
|
title: Label
|
|
9664
9740
|
type: string
|
|
@@ -10329,6 +10405,7 @@ components:
|
|
|
10329
10405
|
type: string
|
|
10330
10406
|
first_name:
|
|
10331
10407
|
description: The user's first name
|
|
10408
|
+
maxLength: 255
|
|
10332
10409
|
minLength: 1
|
|
10333
10410
|
title: First Name
|
|
10334
10411
|
type: string
|
|
@@ -10340,6 +10417,7 @@ components:
|
|
|
10340
10417
|
title: Keycloak User Id
|
|
10341
10418
|
last_name:
|
|
10342
10419
|
description: The user's last name
|
|
10420
|
+
maxLength: 255
|
|
10343
10421
|
minLength: 1
|
|
10344
10422
|
title: Last Name
|
|
10345
10423
|
type: string
|
|
@@ -10457,11 +10535,13 @@ components:
|
|
|
10457
10535
|
type: string
|
|
10458
10536
|
first_name:
|
|
10459
10537
|
description: The user's first name
|
|
10538
|
+
maxLength: 255
|
|
10460
10539
|
minLength: 1
|
|
10461
10540
|
title: First Name
|
|
10462
10541
|
type: string
|
|
10463
10542
|
last_name:
|
|
10464
10543
|
description: The user's last name
|
|
10544
|
+
maxLength: 255
|
|
10465
10545
|
minLength: 1
|
|
10466
10546
|
title: Last Name
|
|
10467
10547
|
type: string
|
|
@@ -10531,11 +10611,13 @@ components:
|
|
|
10531
10611
|
type: string
|
|
10532
10612
|
first_name:
|
|
10533
10613
|
description: The user's first name
|
|
10614
|
+
maxLength: 255
|
|
10534
10615
|
minLength: 1
|
|
10535
10616
|
title: First Name
|
|
10536
10617
|
type: string
|
|
10537
10618
|
last_name:
|
|
10538
10619
|
description: The user's last name
|
|
10620
|
+
maxLength: 255
|
|
10539
10621
|
minLength: 1
|
|
10540
10622
|
title: Last Name
|
|
10541
10623
|
type: string
|
|
@@ -10616,11 +10698,13 @@ components:
|
|
|
10616
10698
|
type: string
|
|
10617
10699
|
first_name:
|
|
10618
10700
|
description: The user's first name
|
|
10701
|
+
maxLength: 255
|
|
10619
10702
|
minLength: 1
|
|
10620
10703
|
title: First Name
|
|
10621
10704
|
type: string
|
|
10622
10705
|
last_name:
|
|
10623
10706
|
description: The user's last name
|
|
10707
|
+
maxLength: 255
|
|
10624
10708
|
minLength: 1
|
|
10625
10709
|
title: Last Name
|
|
10626
10710
|
type: string
|
|
@@ -10753,14 +10837,16 @@ components:
|
|
|
10753
10837
|
title: Email
|
|
10754
10838
|
first_name:
|
|
10755
10839
|
anyOf:
|
|
10756
|
-
-
|
|
10840
|
+
- maxLength: 255
|
|
10841
|
+
minLength: 1
|
|
10757
10842
|
type: string
|
|
10758
10843
|
- type: 'null'
|
|
10759
10844
|
description: The user's first name
|
|
10760
10845
|
title: First Name
|
|
10761
10846
|
last_name:
|
|
10762
10847
|
anyOf:
|
|
10763
|
-
-
|
|
10848
|
+
- maxLength: 255
|
|
10849
|
+
minLength: 1
|
|
10764
10850
|
type: string
|
|
10765
10851
|
- type: 'null'
|
|
10766
10852
|
description: The user's last name
|
|
@@ -10790,7 +10876,8 @@ components:
|
|
|
10790
10876
|
title: User Attributes
|
|
10791
10877
|
username:
|
|
10792
10878
|
anyOf:
|
|
10793
|
-
-
|
|
10879
|
+
- maxLength: 255
|
|
10880
|
+
minLength: 1
|
|
10794
10881
|
type: string
|
|
10795
10882
|
- type: 'null'
|
|
10796
10883
|
description: The user's unique username
|
|
@@ -10818,11 +10905,13 @@ components:
|
|
|
10818
10905
|
type: string
|
|
10819
10906
|
first_name:
|
|
10820
10907
|
description: The user's first name
|
|
10908
|
+
maxLength: 255
|
|
10821
10909
|
minLength: 1
|
|
10822
10910
|
title: First Name
|
|
10823
10911
|
type: string
|
|
10824
10912
|
last_name:
|
|
10825
10913
|
description: The user's last name
|
|
10914
|
+
maxLength: 255
|
|
10826
10915
|
minLength: 1
|
|
10827
10916
|
title: Last Name
|
|
10828
10917
|
type: string
|
|
@@ -11216,7 +11305,7 @@ info:
|
|
|
11216
11305
|
\n\n"
|
|
11217
11306
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
11218
11307
|
title: OpusDNS API
|
|
11219
|
-
version: 2026-05-13-
|
|
11308
|
+
version: 2026-05-13-153000
|
|
11220
11309
|
x-logo:
|
|
11221
11310
|
altText: OpusDNS API Reference
|
|
11222
11311
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -23223,7 +23312,8 @@ paths:
|
|
|
23223
23312
|
required: false
|
|
23224
23313
|
schema:
|
|
23225
23314
|
anyOf:
|
|
23226
|
-
-
|
|
23315
|
+
- maxLength: 255
|
|
23316
|
+
minLength: 1
|
|
23227
23317
|
type: string
|
|
23228
23318
|
- type: 'null'
|
|
23229
23319
|
title: Product Reference
|