@opusdns/api 1.149.0 → 1.150.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 +669 -21
- package/src/schema.d.ts +282 -10
package/package.json
CHANGED
package/src/openapi.yaml
CHANGED
|
@@ -3981,8 +3981,73 @@ components:
|
|
|
3981
3981
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
3982
3982
|
type: object
|
|
3983
3983
|
- type: 'null'
|
|
3984
|
-
description: Additional attributes of the domain
|
|
3985
|
-
|
|
3984
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
3985
|
+
request values are strings.
|
|
3986
|
+
|
|
3987
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
3988
|
+
by the platform, rejected if supplied and
|
|
3989
|
+
|
|
3990
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
3991
|
+
request because the platform derives them itself.
|
|
3992
|
+
|
|
3993
|
+
|
|
3994
|
+
| Key | Accepted values | TLDs | Direction |
|
|
3995
|
+
|
|
3996
|
+
|---|---|---|---|
|
|
3997
|
+
|
|
3998
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
3999
|
+
`.de` only on update | both |
|
|
4000
|
+
|
|
4001
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
4002
|
+
| input |
|
|
4003
|
+
|
|
4004
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
4005
|
+
transfer) | input |
|
|
4006
|
+
|
|
4007
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
4008
|
+
(registration) | input |
|
|
4009
|
+
|
|
4010
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
4011
|
+
(registration) | input |
|
|
4012
|
+
|
|
4013
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
4014
|
+
registrant change) | input |
|
|
4015
|
+
|
|
4016
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
4017
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
4018
|
+
|
|
4019
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
4020
|
+
= `REQUEST` | .de | input |
|
|
4021
|
+
|
|
4022
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
4023
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
4024
|
+
|
|
4025
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
4026
|
+
|
|
4027
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
4028
|
+
|
|
4029
|
+
| `verification_required` | | all | output |
|
|
4030
|
+
|
|
4031
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
4032
|
+
|
|
4033
|
+
|
|
4034
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
4035
|
+
period added by the transfer; on create and update it
|
|
4036
|
+
|
|
4037
|
+
selects the period of the next renewal only and the current expiry date
|
|
4038
|
+
does not move. `monthly` is rejected on transfer-in
|
|
4039
|
+
|
|
4040
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
4041
|
+
|
|
4042
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
4043
|
+
stored attribute; `.dk` reads
|
|
4044
|
+
|
|
4045
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
4046
|
+
registries ignore attributes.
|
|
4047
|
+
|
|
4048
|
+
'
|
|
4049
|
+
examples:
|
|
4050
|
+
- auto_renew_period: monthly
|
|
3986
4051
|
title: Attributes
|
|
3987
4052
|
auth_code:
|
|
3988
4053
|
anyOf:
|
|
@@ -4077,8 +4142,74 @@ components:
|
|
|
4077
4142
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
4078
4143
|
type: object
|
|
4079
4144
|
- type: 'null'
|
|
4080
|
-
description: Override attributes for this domain.
|
|
4081
|
-
|
|
4145
|
+
description: 'Override attributes for this domain.
|
|
4146
|
+
|
|
4147
|
+
|
|
4148
|
+
Additional attributes of the domain, keyed by attribute name; request
|
|
4149
|
+
values are strings.
|
|
4150
|
+
|
|
4151
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
4152
|
+
by the platform, rejected if supplied and
|
|
4153
|
+
|
|
4154
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
4155
|
+
request because the platform derives them itself.
|
|
4156
|
+
|
|
4157
|
+
|
|
4158
|
+
| Key | Accepted values | TLDs | Direction |
|
|
4159
|
+
|
|
4160
|
+
|---|---|---|---|
|
|
4161
|
+
|
|
4162
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
4163
|
+
`.de` only on update | both |
|
|
4164
|
+
|
|
4165
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
4166
|
+
| input |
|
|
4167
|
+
|
|
4168
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
4169
|
+
transfer) | input |
|
|
4170
|
+
|
|
4171
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
4172
|
+
(registration) | input |
|
|
4173
|
+
|
|
4174
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
4175
|
+
(registration) | input |
|
|
4176
|
+
|
|
4177
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
4178
|
+
registrant change) | input |
|
|
4179
|
+
|
|
4180
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
4181
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
4182
|
+
|
|
4183
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
4184
|
+
= `REQUEST` | .de | input |
|
|
4185
|
+
|
|
4186
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
4187
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
4188
|
+
|
|
4189
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
4190
|
+
|
|
4191
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
4192
|
+
|
|
4193
|
+
| `verification_required` | | all | output |
|
|
4194
|
+
|
|
4195
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
4196
|
+
|
|
4197
|
+
|
|
4198
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
4199
|
+
period added by the transfer; on create and update it
|
|
4200
|
+
|
|
4201
|
+
selects the period of the next renewal only and the current expiry date
|
|
4202
|
+
does not move. `monthly` is rejected on transfer-in
|
|
4203
|
+
|
|
4204
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
4205
|
+
|
|
4206
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
4207
|
+
stored attribute; `.dk` reads
|
|
4208
|
+
|
|
4209
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
4210
|
+
registries ignore attributes.
|
|
4211
|
+
|
|
4212
|
+
'
|
|
4082
4213
|
title: Attributes
|
|
4083
4214
|
auth_code:
|
|
4084
4215
|
anyOf:
|
|
@@ -4160,8 +4291,71 @@ components:
|
|
|
4160
4291
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
4161
4292
|
type: object
|
|
4162
4293
|
- type: 'null'
|
|
4163
|
-
description: Additional attributes of the domain
|
|
4164
|
-
|
|
4294
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
4295
|
+
request values are strings.
|
|
4296
|
+
|
|
4297
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
4298
|
+
by the platform, rejected if supplied and
|
|
4299
|
+
|
|
4300
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
4301
|
+
request because the platform derives them itself.
|
|
4302
|
+
|
|
4303
|
+
|
|
4304
|
+
| Key | Accepted values | TLDs | Direction |
|
|
4305
|
+
|
|
4306
|
+
|---|---|---|---|
|
|
4307
|
+
|
|
4308
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
4309
|
+
`.de` only on update | both |
|
|
4310
|
+
|
|
4311
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
4312
|
+
| input |
|
|
4313
|
+
|
|
4314
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
4315
|
+
transfer) | input |
|
|
4316
|
+
|
|
4317
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
4318
|
+
(registration) | input |
|
|
4319
|
+
|
|
4320
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
4321
|
+
(registration) | input |
|
|
4322
|
+
|
|
4323
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
4324
|
+
registrant change) | input |
|
|
4325
|
+
|
|
4326
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
4327
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
4328
|
+
|
|
4329
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
4330
|
+
= `REQUEST` | .de | input |
|
|
4331
|
+
|
|
4332
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
4333
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
4334
|
+
|
|
4335
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
4336
|
+
|
|
4337
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
4338
|
+
|
|
4339
|
+
| `verification_required` | | all | output |
|
|
4340
|
+
|
|
4341
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
4342
|
+
|
|
4343
|
+
|
|
4344
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
4345
|
+
period added by the transfer; on create and update it
|
|
4346
|
+
|
|
4347
|
+
selects the period of the next renewal only and the current expiry date
|
|
4348
|
+
does not move. `monthly` is rejected on transfer-in
|
|
4349
|
+
|
|
4350
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
4351
|
+
|
|
4352
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
4353
|
+
stored attribute; `.dk` reads
|
|
4354
|
+
|
|
4355
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
4356
|
+
registries ignore attributes.
|
|
4357
|
+
|
|
4358
|
+
'
|
|
4165
4359
|
title: Attributes
|
|
4166
4360
|
auth_code:
|
|
4167
4361
|
anyOf:
|
|
@@ -4233,8 +4427,73 @@ components:
|
|
|
4233
4427
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
4234
4428
|
type: object
|
|
4235
4429
|
- type: 'null'
|
|
4236
|
-
description: Additional attributes of the domain
|
|
4237
|
-
|
|
4430
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
4431
|
+
request values are strings.
|
|
4432
|
+
|
|
4433
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
4434
|
+
by the platform, rejected if supplied and
|
|
4435
|
+
|
|
4436
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
4437
|
+
request because the platform derives them itself.
|
|
4438
|
+
|
|
4439
|
+
|
|
4440
|
+
| Key | Accepted values | TLDs | Direction |
|
|
4441
|
+
|
|
4442
|
+
|---|---|---|---|
|
|
4443
|
+
|
|
4444
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
4445
|
+
`.de` only on update | both |
|
|
4446
|
+
|
|
4447
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
4448
|
+
| input |
|
|
4449
|
+
|
|
4450
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
4451
|
+
transfer) | input |
|
|
4452
|
+
|
|
4453
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
4454
|
+
(registration) | input |
|
|
4455
|
+
|
|
4456
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
4457
|
+
(registration) | input |
|
|
4458
|
+
|
|
4459
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
4460
|
+
registrant change) | input |
|
|
4461
|
+
|
|
4462
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
4463
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
4464
|
+
|
|
4465
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
4466
|
+
= `REQUEST` | .de | input |
|
|
4467
|
+
|
|
4468
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
4469
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
4470
|
+
|
|
4471
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
4472
|
+
|
|
4473
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
4474
|
+
|
|
4475
|
+
| `verification_required` | | all | output |
|
|
4476
|
+
|
|
4477
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
4478
|
+
|
|
4479
|
+
|
|
4480
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
4481
|
+
period added by the transfer; on create and update it
|
|
4482
|
+
|
|
4483
|
+
selects the period of the next renewal only and the current expiry date
|
|
4484
|
+
does not move. `monthly` is rejected on transfer-in
|
|
4485
|
+
|
|
4486
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
4487
|
+
|
|
4488
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
4489
|
+
stored attribute; `.dk` reads
|
|
4490
|
+
|
|
4491
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
4492
|
+
registries ignore attributes.
|
|
4493
|
+
|
|
4494
|
+
'
|
|
4495
|
+
examples:
|
|
4496
|
+
- auto_renew_period: monthly
|
|
4238
4497
|
title: Attributes
|
|
4239
4498
|
auth_code:
|
|
4240
4499
|
anyOf:
|
|
@@ -6091,8 +6350,74 @@ components:
|
|
|
6091
6350
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6092
6351
|
type: object
|
|
6093
6352
|
- type: 'null'
|
|
6094
|
-
description: Override attributes for this domain.
|
|
6095
|
-
|
|
6353
|
+
description: 'Override attributes for this domain.
|
|
6354
|
+
|
|
6355
|
+
|
|
6356
|
+
Additional attributes of the domain, keyed by attribute name; request
|
|
6357
|
+
values are strings.
|
|
6358
|
+
|
|
6359
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
6360
|
+
by the platform, rejected if supplied and
|
|
6361
|
+
|
|
6362
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
6363
|
+
request because the platform derives them itself.
|
|
6364
|
+
|
|
6365
|
+
|
|
6366
|
+
| Key | Accepted values | TLDs | Direction |
|
|
6367
|
+
|
|
6368
|
+
|---|---|---|---|
|
|
6369
|
+
|
|
6370
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
6371
|
+
`.de` only on update | both |
|
|
6372
|
+
|
|
6373
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
6374
|
+
| input |
|
|
6375
|
+
|
|
6376
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
6377
|
+
transfer) | input |
|
|
6378
|
+
|
|
6379
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
6380
|
+
(registration) | input |
|
|
6381
|
+
|
|
6382
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
6383
|
+
(registration) | input |
|
|
6384
|
+
|
|
6385
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
6386
|
+
registrant change) | input |
|
|
6387
|
+
|
|
6388
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
6389
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
6390
|
+
|
|
6391
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
6392
|
+
= `REQUEST` | .de | input |
|
|
6393
|
+
|
|
6394
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
6395
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
6396
|
+
|
|
6397
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
6398
|
+
|
|
6399
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
6400
|
+
|
|
6401
|
+
| `verification_required` | | all | output |
|
|
6402
|
+
|
|
6403
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
6404
|
+
|
|
6405
|
+
|
|
6406
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
6407
|
+
period added by the transfer; on create and update it
|
|
6408
|
+
|
|
6409
|
+
selects the period of the next renewal only and the current expiry date
|
|
6410
|
+
does not move. `monthly` is rejected on transfer-in
|
|
6411
|
+
|
|
6412
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
6413
|
+
|
|
6414
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
6415
|
+
stored attribute; `.dk` reads
|
|
6416
|
+
|
|
6417
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
6418
|
+
registries ignore attributes.
|
|
6419
|
+
|
|
6420
|
+
'
|
|
6096
6421
|
title: Attributes
|
|
6097
6422
|
auth_code:
|
|
6098
6423
|
anyOf:
|
|
@@ -6174,8 +6499,71 @@ components:
|
|
|
6174
6499
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6175
6500
|
type: object
|
|
6176
6501
|
- type: 'null'
|
|
6177
|
-
description: Additional attributes of the domain
|
|
6178
|
-
|
|
6502
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
6503
|
+
request values are strings.
|
|
6504
|
+
|
|
6505
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
6506
|
+
by the platform, rejected if supplied and
|
|
6507
|
+
|
|
6508
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
6509
|
+
request because the platform derives them itself.
|
|
6510
|
+
|
|
6511
|
+
|
|
6512
|
+
| Key | Accepted values | TLDs | Direction |
|
|
6513
|
+
|
|
6514
|
+
|---|---|---|---|
|
|
6515
|
+
|
|
6516
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
6517
|
+
`.de` only on update | both |
|
|
6518
|
+
|
|
6519
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
6520
|
+
| input |
|
|
6521
|
+
|
|
6522
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
6523
|
+
transfer) | input |
|
|
6524
|
+
|
|
6525
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
6526
|
+
(registration) | input |
|
|
6527
|
+
|
|
6528
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
6529
|
+
(registration) | input |
|
|
6530
|
+
|
|
6531
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
6532
|
+
registrant change) | input |
|
|
6533
|
+
|
|
6534
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
6535
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
6536
|
+
|
|
6537
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
6538
|
+
= `REQUEST` | .de | input |
|
|
6539
|
+
|
|
6540
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
6541
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
6542
|
+
|
|
6543
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
6544
|
+
|
|
6545
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
6546
|
+
|
|
6547
|
+
| `verification_required` | | all | output |
|
|
6548
|
+
|
|
6549
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
6550
|
+
|
|
6551
|
+
|
|
6552
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
6553
|
+
period added by the transfer; on create and update it
|
|
6554
|
+
|
|
6555
|
+
selects the period of the next renewal only and the current expiry date
|
|
6556
|
+
does not move. `monthly` is rejected on transfer-in
|
|
6557
|
+
|
|
6558
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
6559
|
+
|
|
6560
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
6561
|
+
stored attribute; `.dk` reads
|
|
6562
|
+
|
|
6563
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
6564
|
+
registries ignore attributes.
|
|
6565
|
+
|
|
6566
|
+
'
|
|
6179
6567
|
title: Attributes
|
|
6180
6568
|
contacts:
|
|
6181
6569
|
$ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -6241,8 +6629,73 @@ components:
|
|
|
6241
6629
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6242
6630
|
type: object
|
|
6243
6631
|
- type: 'null'
|
|
6244
|
-
description: Additional attributes of the domain
|
|
6245
|
-
|
|
6632
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
6633
|
+
request values are strings.
|
|
6634
|
+
|
|
6635
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
6636
|
+
by the platform, rejected if supplied and
|
|
6637
|
+
|
|
6638
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
6639
|
+
request because the platform derives them itself.
|
|
6640
|
+
|
|
6641
|
+
|
|
6642
|
+
| Key | Accepted values | TLDs | Direction |
|
|
6643
|
+
|
|
6644
|
+
|---|---|---|---|
|
|
6645
|
+
|
|
6646
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
6647
|
+
`.de` only on update | both |
|
|
6648
|
+
|
|
6649
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
6650
|
+
| input |
|
|
6651
|
+
|
|
6652
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
6653
|
+
transfer) | input |
|
|
6654
|
+
|
|
6655
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
6656
|
+
(registration) | input |
|
|
6657
|
+
|
|
6658
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
6659
|
+
(registration) | input |
|
|
6660
|
+
|
|
6661
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
6662
|
+
registrant change) | input |
|
|
6663
|
+
|
|
6664
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
6665
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
6666
|
+
|
|
6667
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
6668
|
+
= `REQUEST` | .de | input |
|
|
6669
|
+
|
|
6670
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
6671
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
6672
|
+
|
|
6673
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
6674
|
+
|
|
6675
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
6676
|
+
|
|
6677
|
+
| `verification_required` | | all | output |
|
|
6678
|
+
|
|
6679
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
6680
|
+
|
|
6681
|
+
|
|
6682
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
6683
|
+
period added by the transfer; on create and update it
|
|
6684
|
+
|
|
6685
|
+
selects the period of the next renewal only and the current expiry date
|
|
6686
|
+
does not move. `monthly` is rejected on transfer-in
|
|
6687
|
+
|
|
6688
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
6689
|
+
|
|
6690
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
6691
|
+
stored attribute; `.dk` reads
|
|
6692
|
+
|
|
6693
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
6694
|
+
registries ignore attributes.
|
|
6695
|
+
|
|
6696
|
+
'
|
|
6697
|
+
examples:
|
|
6698
|
+
- auto_renew_period: monthly
|
|
6246
6699
|
title: Attributes
|
|
6247
6700
|
auth_code:
|
|
6248
6701
|
anyOf:
|
|
@@ -6306,8 +6759,73 @@ components:
|
|
|
6306
6759
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6307
6760
|
type: object
|
|
6308
6761
|
- type: 'null'
|
|
6309
|
-
description: Additional attributes of the domain
|
|
6310
|
-
|
|
6762
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
6763
|
+
request values are strings.
|
|
6764
|
+
|
|
6765
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
6766
|
+
by the platform, rejected if supplied and
|
|
6767
|
+
|
|
6768
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
6769
|
+
request because the platform derives them itself.
|
|
6770
|
+
|
|
6771
|
+
|
|
6772
|
+
| Key | Accepted values | TLDs | Direction |
|
|
6773
|
+
|
|
6774
|
+
|---|---|---|---|
|
|
6775
|
+
|
|
6776
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
6777
|
+
`.de` only on update | both |
|
|
6778
|
+
|
|
6779
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
6780
|
+
| input |
|
|
6781
|
+
|
|
6782
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
6783
|
+
transfer) | input |
|
|
6784
|
+
|
|
6785
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
6786
|
+
(registration) | input |
|
|
6787
|
+
|
|
6788
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
6789
|
+
(registration) | input |
|
|
6790
|
+
|
|
6791
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
6792
|
+
registrant change) | input |
|
|
6793
|
+
|
|
6794
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
6795
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
6796
|
+
|
|
6797
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
6798
|
+
= `REQUEST` | .de | input |
|
|
6799
|
+
|
|
6800
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
6801
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
6802
|
+
|
|
6803
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
6804
|
+
|
|
6805
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
6806
|
+
|
|
6807
|
+
| `verification_required` | | all | output |
|
|
6808
|
+
|
|
6809
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
6810
|
+
|
|
6811
|
+
|
|
6812
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
6813
|
+
period added by the transfer; on create and update it
|
|
6814
|
+
|
|
6815
|
+
selects the period of the next renewal only and the current expiry date
|
|
6816
|
+
does not move. `monthly` is rejected on transfer-in
|
|
6817
|
+
|
|
6818
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
6819
|
+
|
|
6820
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
6821
|
+
stored attribute; `.dk` reads
|
|
6822
|
+
|
|
6823
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
6824
|
+
registries ignore attributes.
|
|
6825
|
+
|
|
6826
|
+
'
|
|
6827
|
+
examples:
|
|
6828
|
+
- auto_renew_period: monthly
|
|
6311
6829
|
title: Attributes
|
|
6312
6830
|
auth_code:
|
|
6313
6831
|
anyOf:
|
|
@@ -6416,8 +6934,73 @@ components:
|
|
|
6416
6934
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6417
6935
|
type: object
|
|
6418
6936
|
- type: 'null'
|
|
6419
|
-
description: Additional attributes of the domain
|
|
6420
|
-
|
|
6937
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
6938
|
+
request values are strings.
|
|
6939
|
+
|
|
6940
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
6941
|
+
by the platform, rejected if supplied and
|
|
6942
|
+
|
|
6943
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
6944
|
+
request because the platform derives them itself.
|
|
6945
|
+
|
|
6946
|
+
|
|
6947
|
+
| Key | Accepted values | TLDs | Direction |
|
|
6948
|
+
|
|
6949
|
+
|---|---|---|---|
|
|
6950
|
+
|
|
6951
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
6952
|
+
`.de` only on update | both |
|
|
6953
|
+
|
|
6954
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
6955
|
+
| input |
|
|
6956
|
+
|
|
6957
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
6958
|
+
transfer) | input |
|
|
6959
|
+
|
|
6960
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
6961
|
+
(registration) | input |
|
|
6962
|
+
|
|
6963
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
6964
|
+
(registration) | input |
|
|
6965
|
+
|
|
6966
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
6967
|
+
registrant change) | input |
|
|
6968
|
+
|
|
6969
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
6970
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
6971
|
+
|
|
6972
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
6973
|
+
= `REQUEST` | .de | input |
|
|
6974
|
+
|
|
6975
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
6976
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
6977
|
+
|
|
6978
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
6979
|
+
|
|
6980
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
6981
|
+
|
|
6982
|
+
| `verification_required` | | all | output |
|
|
6983
|
+
|
|
6984
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
6985
|
+
|
|
6986
|
+
|
|
6987
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
6988
|
+
period added by the transfer; on create and update it
|
|
6989
|
+
|
|
6990
|
+
selects the period of the next renewal only and the current expiry date
|
|
6991
|
+
does not move. `monthly` is rejected on transfer-in
|
|
6992
|
+
|
|
6993
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
6994
|
+
|
|
6995
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
6996
|
+
stored attribute; `.dk` reads
|
|
6997
|
+
|
|
6998
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
6999
|
+
registries ignore attributes.
|
|
7000
|
+
|
|
7001
|
+
'
|
|
7002
|
+
examples:
|
|
7003
|
+
- auto_renew_period: monthly
|
|
6421
7004
|
title: Attributes
|
|
6422
7005
|
auth_code:
|
|
6423
7006
|
anyOf:
|
|
@@ -6635,8 +7218,73 @@ components:
|
|
|
6635
7218
|
$ref: '#/components/schemas/DomainAttributeKey'
|
|
6636
7219
|
type: object
|
|
6637
7220
|
- type: 'null'
|
|
6638
|
-
description: Additional attributes of the domain
|
|
6639
|
-
|
|
7221
|
+
description: 'Additional attributes of the domain, keyed by attribute name;
|
|
7222
|
+
request values are strings.
|
|
7223
|
+
|
|
7224
|
+
Direction: *input* keys are read from the request; *output* keys are written
|
|
7225
|
+
by the platform, rejected if supplied and
|
|
7226
|
+
|
|
7227
|
+
never returned under `attributes`; *ignored* keys are dropped from the
|
|
7228
|
+
request because the platform derives them itself.
|
|
7229
|
+
|
|
7230
|
+
|
|
7231
|
+
| Key | Accepted values | TLDs | Direction |
|
|
7232
|
+
|
|
7233
|
+
|---|---|---|---|
|
|
7234
|
+
|
|
7235
|
+
| `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in,
|
|
7236
|
+
`.de` only on update | both |
|
|
7237
|
+
|
|
7238
|
+
| `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration)
|
|
7239
|
+
| input |
|
|
7240
|
+
|
|
7241
|
+
| `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration,
|
|
7242
|
+
transfer) | input |
|
|
7243
|
+
|
|
7244
|
+
| `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel
|
|
7245
|
+
(registration) | input |
|
|
7246
|
+
|
|
7247
|
+
| `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee
|
|
7248
|
+
(registration) | input |
|
|
7249
|
+
|
|
7250
|
+
| `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration,
|
|
7251
|
+
registrant change) | input |
|
|
7252
|
+
|
|
7253
|
+
| `de_general_request_contact` | id of a contact whose `.de` attribute
|
|
7254
|
+
set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7255
|
+
|
|
7256
|
+
| `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE`
|
|
7257
|
+
= `REQUEST` | .de | input |
|
|
7258
|
+
|
|
7259
|
+
| `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`
|
|
7260
|
+
| taken from the signed applicant declaration | .no | ignored |
|
|
7261
|
+
|
|
7262
|
+
| `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7263
|
+
|
|
7264
|
+
| `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7265
|
+
|
|
7266
|
+
| `verification_required` | | all | output |
|
|
7267
|
+
|
|
7268
|
+
| `promotion`, `promotion_eligibility` | | all | output |
|
|
7269
|
+
|
|
7270
|
+
|
|
7271
|
+
`auto_renew_period`: on transfer-in without `period` it also sets the
|
|
7272
|
+
period added by the transfer; on create and update it
|
|
7273
|
+
|
|
7274
|
+
selects the period of the next renewal only and the current expiry date
|
|
7275
|
+
does not move. `monthly` is rejected on transfer-in
|
|
7276
|
+
|
|
7277
|
+
and ignored at renewal when the TLD''s renewal periods have no month unit.
|
|
7278
|
+
|
|
7279
|
+
On update, only `.de` stores attributes and an empty value removes the
|
|
7280
|
+
stored attribute; `.dk` reads
|
|
7281
|
+
|
|
7282
|
+
`punktum_dk_terms_acceptance` to confirm a registrant change and other
|
|
7283
|
+
registries ignore attributes.
|
|
7284
|
+
|
|
7285
|
+
'
|
|
7286
|
+
examples:
|
|
7287
|
+
- auto_renew_period: monthly
|
|
6640
7288
|
title: Attributes
|
|
6641
7289
|
auth_code:
|
|
6642
7290
|
anyOf:
|
|
@@ -15950,7 +16598,7 @@ info:
|
|
|
15950
16598
|
\n\n"
|
|
15951
16599
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
15952
16600
|
title: OpusDNS API
|
|
15953
|
-
version: 2026-09-02-
|
|
16601
|
+
version: 2026-09-02-192218
|
|
15954
16602
|
x-logo:
|
|
15955
16603
|
altText: OpusDNS API Reference
|
|
15956
16604
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
package/src/schema.d.ts
CHANGED
|
@@ -5625,7 +5625,35 @@ export interface components {
|
|
|
5625
5625
|
DomainCreate: {
|
|
5626
5626
|
/**
|
|
5627
5627
|
* Attributes
|
|
5628
|
-
* @description Additional attributes of the domain
|
|
5628
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
5629
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
5630
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
5631
|
+
*
|
|
5632
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
5633
|
+
* |---|---|---|---|
|
|
5634
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
5635
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
5636
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
5637
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
5638
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
5639
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
5640
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5641
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5642
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
5643
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
5644
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
5645
|
+
* | `verification_required` | | all | output |
|
|
5646
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
5647
|
+
*
|
|
5648
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
5649
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
5650
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
5651
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
5652
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
5653
|
+
*
|
|
5654
|
+
* @example {
|
|
5655
|
+
* "auto_renew_period": "monthly"
|
|
5656
|
+
* }
|
|
5629
5657
|
*/
|
|
5630
5658
|
attributes?: {
|
|
5631
5659
|
[key: string]: string;
|
|
@@ -5696,7 +5724,34 @@ export interface components {
|
|
|
5696
5724
|
DomainCreateBulkInstance: {
|
|
5697
5725
|
/**
|
|
5698
5726
|
* Attributes
|
|
5699
|
-
* @description Override attributes for this domain.
|
|
5727
|
+
* @description Override attributes for this domain.
|
|
5728
|
+
*
|
|
5729
|
+
* Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
5730
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
5731
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
5732
|
+
*
|
|
5733
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
5734
|
+
* |---|---|---|---|
|
|
5735
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
5736
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
5737
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
5738
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
5739
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
5740
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
5741
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5742
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5743
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
5744
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
5745
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
5746
|
+
* | `verification_required` | | all | output |
|
|
5747
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
5748
|
+
*
|
|
5749
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
5750
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
5751
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
5752
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
5753
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
5754
|
+
*
|
|
5700
5755
|
*/
|
|
5701
5756
|
attributes?: {
|
|
5702
5757
|
[key: string]: string;
|
|
@@ -5744,7 +5799,32 @@ export interface components {
|
|
|
5744
5799
|
DomainCreateBulkTemplate: {
|
|
5745
5800
|
/**
|
|
5746
5801
|
* Attributes
|
|
5747
|
-
* @description Additional attributes of the domain
|
|
5802
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
5803
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
5804
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
5805
|
+
*
|
|
5806
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
5807
|
+
* |---|---|---|---|
|
|
5808
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
5809
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
5810
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
5811
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
5812
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
5813
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
5814
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5815
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5816
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
5817
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
5818
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
5819
|
+
* | `verification_required` | | all | output |
|
|
5820
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
5821
|
+
*
|
|
5822
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
5823
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
5824
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
5825
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
5826
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
5827
|
+
*
|
|
5748
5828
|
*/
|
|
5749
5829
|
attributes?: {
|
|
5750
5830
|
[key: string]: string;
|
|
@@ -5796,7 +5876,35 @@ export interface components {
|
|
|
5796
5876
|
DomainCreatePayloadData: {
|
|
5797
5877
|
/**
|
|
5798
5878
|
* Attributes
|
|
5799
|
-
* @description Additional attributes of the domain
|
|
5879
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
5880
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
5881
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
5882
|
+
*
|
|
5883
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
5884
|
+
* |---|---|---|---|
|
|
5885
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
5886
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
5887
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
5888
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
5889
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
5890
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
5891
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5892
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
5893
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
5894
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
5895
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
5896
|
+
* | `verification_required` | | all | output |
|
|
5897
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
5898
|
+
*
|
|
5899
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
5900
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
5901
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
5902
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
5903
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
5904
|
+
*
|
|
5905
|
+
* @example {
|
|
5906
|
+
* "auto_renew_period": "monthly"
|
|
5907
|
+
* }
|
|
5800
5908
|
*/
|
|
5801
5909
|
attributes?: {
|
|
5802
5910
|
[key: string]: string;
|
|
@@ -7010,7 +7118,34 @@ export interface components {
|
|
|
7010
7118
|
DomainTransferBulkInstance: {
|
|
7011
7119
|
/**
|
|
7012
7120
|
* Attributes
|
|
7013
|
-
* @description Override attributes for this domain.
|
|
7121
|
+
* @description Override attributes for this domain.
|
|
7122
|
+
*
|
|
7123
|
+
* Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
7124
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
7125
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
7126
|
+
*
|
|
7127
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
7128
|
+
* |---|---|---|---|
|
|
7129
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
7130
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
7131
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
7132
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
7133
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
7134
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
7135
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7136
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7137
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
7138
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7139
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7140
|
+
* | `verification_required` | | all | output |
|
|
7141
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
7142
|
+
*
|
|
7143
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
7144
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
7145
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
7146
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
7147
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
7148
|
+
*
|
|
7014
7149
|
*/
|
|
7015
7150
|
attributes?: {
|
|
7016
7151
|
[key: string]: string;
|
|
@@ -7058,7 +7193,32 @@ export interface components {
|
|
|
7058
7193
|
DomainTransferBulkTemplate: {
|
|
7059
7194
|
/**
|
|
7060
7195
|
* Attributes
|
|
7061
|
-
* @description Additional attributes of the domain
|
|
7196
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
7197
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
7198
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
7199
|
+
*
|
|
7200
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
7201
|
+
* |---|---|---|---|
|
|
7202
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
7203
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
7204
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
7205
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
7206
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
7207
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
7208
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7209
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7210
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
7211
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7212
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7213
|
+
* | `verification_required` | | all | output |
|
|
7214
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
7215
|
+
*
|
|
7216
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
7217
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
7218
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
7219
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
7220
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
7221
|
+
*
|
|
7062
7222
|
*/
|
|
7063
7223
|
attributes?: {
|
|
7064
7224
|
[key: string]: string;
|
|
@@ -7106,7 +7266,35 @@ export interface components {
|
|
|
7106
7266
|
DomainTransferIn: {
|
|
7107
7267
|
/**
|
|
7108
7268
|
* Attributes
|
|
7109
|
-
* @description Additional attributes of the domain
|
|
7269
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
7270
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
7271
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
7272
|
+
*
|
|
7273
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
7274
|
+
* |---|---|---|---|
|
|
7275
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
7276
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
7277
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
7278
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
7279
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
7280
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
7281
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7282
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7283
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
7284
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7285
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7286
|
+
* | `verification_required` | | all | output |
|
|
7287
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
7288
|
+
*
|
|
7289
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
7290
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
7291
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
7292
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
7293
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
7294
|
+
*
|
|
7295
|
+
* @example {
|
|
7296
|
+
* "auto_renew_period": "monthly"
|
|
7297
|
+
* }
|
|
7110
7298
|
*/
|
|
7111
7299
|
attributes?: {
|
|
7112
7300
|
[key: string]: string;
|
|
@@ -7151,7 +7339,35 @@ export interface components {
|
|
|
7151
7339
|
DomainTransferPayloadData: {
|
|
7152
7340
|
/**
|
|
7153
7341
|
* Attributes
|
|
7154
|
-
* @description Additional attributes of the domain
|
|
7342
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
7343
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
7344
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
7345
|
+
*
|
|
7346
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
7347
|
+
* |---|---|---|---|
|
|
7348
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
7349
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
7350
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
7351
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
7352
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
7353
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
7354
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7355
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7356
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
7357
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7358
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7359
|
+
* | `verification_required` | | all | output |
|
|
7360
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
7361
|
+
*
|
|
7362
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
7363
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
7364
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
7365
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
7366
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
7367
|
+
*
|
|
7368
|
+
* @example {
|
|
7369
|
+
* "auto_renew_period": "monthly"
|
|
7370
|
+
* }
|
|
7155
7371
|
*/
|
|
7156
7372
|
attributes?: {
|
|
7157
7373
|
[key: string]: string;
|
|
@@ -7228,7 +7444,35 @@ export interface components {
|
|
|
7228
7444
|
DomainUpdate: {
|
|
7229
7445
|
/**
|
|
7230
7446
|
* Attributes
|
|
7231
|
-
* @description Additional attributes of the domain
|
|
7447
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
7448
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
7449
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
7450
|
+
*
|
|
7451
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
7452
|
+
* |---|---|---|---|
|
|
7453
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
7454
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
7455
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
7456
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
7457
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
7458
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
7459
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7460
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7461
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
7462
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7463
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7464
|
+
* | `verification_required` | | all | output |
|
|
7465
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
7466
|
+
*
|
|
7467
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
7468
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
7469
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
7470
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
7471
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
7472
|
+
*
|
|
7473
|
+
* @example {
|
|
7474
|
+
* "auto_renew_period": "monthly"
|
|
7475
|
+
* }
|
|
7232
7476
|
*/
|
|
7233
7477
|
attributes?: {
|
|
7234
7478
|
[key: string]: string;
|
|
@@ -7373,7 +7617,35 @@ export interface components {
|
|
|
7373
7617
|
DomainUpdatePayloadData: {
|
|
7374
7618
|
/**
|
|
7375
7619
|
* Attributes
|
|
7376
|
-
* @description Additional attributes of the domain
|
|
7620
|
+
* @description Additional attributes of the domain, keyed by attribute name; request values are strings.
|
|
7621
|
+
* Direction: *input* keys are read from the request; *output* keys are written by the platform, rejected if supplied and
|
|
7622
|
+
* never returned under `attributes`; *ignored* keys are dropped from the request because the platform derives them itself.
|
|
7623
|
+
*
|
|
7624
|
+
* | Key | Accepted values | TLDs | Direction |
|
|
7625
|
+
* |---|---|---|---|
|
|
7626
|
+
* | `auto_renew_period` | `monthly`, `yearly` | all on create and transfer-in, `.de` only on update | both |
|
|
7627
|
+
* | `music_registrant_attestation` | `true` (also `1`, `yes`) | .music (registration) | input |
|
|
7628
|
+
* | `nic_it_compliance_confirmation` | `true` (also `1`, `yes`) | .it (registration, transfer) | input |
|
|
7629
|
+
* | `travel_industry_acknowledgement` | `true` (also `1`, `yes`) | .travel (registration) | input |
|
|
7630
|
+
* | `internet_ee_registrant_agreement` | `true` (also `1`, `yes`) | .ee (registration) | input |
|
|
7631
|
+
* | `punktum_dk_terms_acceptance` | `true` (also `1`, `yes`) | .dk (registration, registrant change) | input |
|
|
7632
|
+
* | `de_general_request_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7633
|
+
* | `de_abuse_contact` | id of a contact whose `.de` attribute set has `DE_CONTACT_TYPE` = `REQUEST` | .de | input |
|
|
7634
|
+
* | `nor_id_applicant_version`, `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date` | taken from the signed applicant declaration | .no | ignored |
|
|
7635
|
+
* | `nor_id_declaration`, `nor_id_declaration_token` | | .no | output |
|
|
7636
|
+
* | `punktum_dk_tracking_no` | registry-issued | .dk | output |
|
|
7637
|
+
* | `verification_required` | | all | output |
|
|
7638
|
+
* | `promotion`, `promotion_eligibility` | | all | output |
|
|
7639
|
+
*
|
|
7640
|
+
* `auto_renew_period`: on transfer-in without `period` it also sets the period added by the transfer; on create and update it
|
|
7641
|
+
* selects the period of the next renewal only and the current expiry date does not move. `monthly` is rejected on transfer-in
|
|
7642
|
+
* and ignored at renewal when the TLD's renewal periods have no month unit.
|
|
7643
|
+
* On update, only `.de` stores attributes and an empty value removes the stored attribute; `.dk` reads
|
|
7644
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change and other registries ignore attributes.
|
|
7645
|
+
*
|
|
7646
|
+
* @example {
|
|
7647
|
+
* "auto_renew_period": "monthly"
|
|
7648
|
+
* }
|
|
7377
7649
|
*/
|
|
7378
7650
|
attributes?: {
|
|
7379
7651
|
[key: string]: string;
|