@opusdns/api 1.160.0 → 1.162.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/helpers/constants.ts +2 -0
- package/src/openapi.yaml +282 -192
- package/src/schema.d.ts +111 -61
package/package.json
CHANGED
package/src/helpers/constants.ts
CHANGED
|
@@ -437,6 +437,7 @@ export const CONTACT_VERIFICATION_PROOF = {
|
|
|
437
437
|
DIGITAL_ATTESTATION: "DIGITAL_ATTESTATION",
|
|
438
438
|
POSTAL_VER_TRANSACTION_LOG: "POSTAL_VER_TRANSACTION_LOG",
|
|
439
439
|
EMAIL_VER_TRANSACTION_LOG: "EMAIL_VER_TRANSACTION_LOG",
|
|
440
|
+
PHONE_VER_TRANSACTION_LOG: "PHONE_VER_TRANSACTION_LOG",
|
|
440
441
|
ADDRESS_DATABASE: "ADDRESS_DATABASE",
|
|
441
442
|
} as const satisfies Record<string, ContactVerificationProof>;
|
|
442
443
|
|
|
@@ -458,6 +459,7 @@ export const CONTACT_VERIFICATION_PROOF_VALUES = [
|
|
|
458
459
|
'DIGITAL_ATTESTATION',
|
|
459
460
|
'POSTAL_VER_TRANSACTION_LOG',
|
|
460
461
|
'EMAIL_VER_TRANSACTION_LOG',
|
|
462
|
+
'PHONE_VER_TRANSACTION_LOG',
|
|
461
463
|
'ADDRESS_DATABASE',
|
|
462
464
|
] as const satisfies ReadonlyArray<ContactVerificationProof>;
|
|
463
465
|
|
package/src/openapi.yaml
CHANGED
|
@@ -1955,6 +1955,7 @@ components:
|
|
|
1955
1955
|
- DIGITAL_ATTESTATION
|
|
1956
1956
|
- POSTAL_VER_TRANSACTION_LOG
|
|
1957
1957
|
- EMAIL_VER_TRANSACTION_LOG
|
|
1958
|
+
- PHONE_VER_TRANSACTION_LOG
|
|
1958
1959
|
- ADDRESS_DATABASE
|
|
1959
1960
|
title: ContactVerificationProof
|
|
1960
1961
|
type: string
|
|
@@ -4045,28 +4046,37 @@ components:
|
|
|
4045
4046
|
- type: 'null'
|
|
4046
4047
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
4047
4048
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
4048
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
4049
|
-
\
|
|
4050
|
-
\
|
|
4051
|
-
\
|
|
4052
|
-
\
|
|
4053
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
4054
|
-
\ `true`. `.it` registration
|
|
4055
|
-
\ `true`. `.travel
|
|
4056
|
-
\ `true`. `.ee` registration.\n
|
|
4057
|
-
|
|
4058
|
-
\ `de_abuse_contact`: id of a
|
|
4059
|
-
\
|
|
4060
|
-
\
|
|
4061
|
-
\
|
|
4049
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
4050
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
4051
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
4052
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
4053
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
4054
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
4055
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
4056
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
4057
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
4058
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
4059
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
4060
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
4061
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
4062
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
4063
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4062
4064
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4063
4065
|
returned under `attributes`; inline contact attributes surface on the\
|
|
4064
4066
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4065
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4067
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
4066
4068
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4067
|
-
\ update,
|
|
4068
|
-
\
|
|
4069
|
-
\
|
|
4069
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
4070
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
4071
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
4072
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
4073
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4074
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
4075
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
4076
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
4077
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
4078
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
4079
|
+
\ change but cannot be removed with an empty value.\n"
|
|
4070
4080
|
examples:
|
|
4071
4081
|
- auto_renew_period: monthly
|
|
4072
4082
|
title: Attributes
|
|
@@ -4165,14 +4175,14 @@ components:
|
|
|
4165
4175
|
- type: 'null'
|
|
4166
4176
|
description: "Override attributes for this domain.\n\nAdditional attributes\
|
|
4167
4177
|
\ of the domain, keyed by attribute name. Values are strings.\n\nCustomer-settable\
|
|
4168
|
-
\ keys:\n\n- `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
4169
|
-
\
|
|
4170
|
-
\
|
|
4171
|
-
\
|
|
4172
|
-
\ is rejected on
|
|
4173
|
-
\
|
|
4174
|
-
\ `.music` registration.\n- `nic_it_compliance_confirmation
|
|
4175
|
-
\ `.it` registration and transfer.\n- `travel_industry_acknowledgement`:\
|
|
4178
|
+
\ keys:\n\n- `auto_renew_period`: `monthly` or `yearly`. All TLDs on create,\
|
|
4179
|
+
\ transfer-in and update. Selects the\n period of the next renewal; the\
|
|
4180
|
+
\ current expiry date does not move. On transfer-in without `period` it\
|
|
4181
|
+
\ also sets the\n period added by the transfer. When the TLD has no month-unit\
|
|
4182
|
+
\ renewal period, `monthly` is rejected on update and on\n a transfer-in\
|
|
4183
|
+
\ that omits `period`, and ignored at renewal.\n- `music_registrant_attestation`:\
|
|
4184
|
+
\ `true`. `.music` registration.\n- `nic_it_compliance_confirmation`:\
|
|
4185
|
+
\ `true`. `.it` registration and transfer.\n- `travel_industry_acknowledgement`:\
|
|
4176
4186
|
\ `true`. `.travel` registration.\n- `internet_ee_registrant_agreement`:\
|
|
4177
4187
|
\ `true`. `.ee` registration.\n- `punktum_dk_terms_acceptance`: `true`.\
|
|
4178
4188
|
\ `.dk` registration and registrant change.\n- `de_general_request_contact`,\
|
|
@@ -4183,11 +4193,19 @@ components:
|
|
|
4183
4193
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4184
4194
|
returned under `attributes`; inline contact attributes surface on the\
|
|
4185
4195
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4186
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4196
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
4187
4197
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4188
|
-
\ update,
|
|
4189
|
-
\
|
|
4190
|
-
\
|
|
4198
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
4199
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
4200
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
4201
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
4202
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4203
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
4204
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
4205
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
4206
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
4207
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
4208
|
+
\ change but cannot be removed with an empty value.\n"
|
|
4191
4209
|
title: Attributes
|
|
4192
4210
|
auth_code:
|
|
4193
4211
|
anyOf:
|
|
@@ -4271,28 +4289,37 @@ components:
|
|
|
4271
4289
|
- type: 'null'
|
|
4272
4290
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
4273
4291
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
4274
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
4275
|
-
\
|
|
4276
|
-
\
|
|
4277
|
-
\
|
|
4278
|
-
\
|
|
4279
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
4280
|
-
\ `true`. `.it` registration
|
|
4281
|
-
\ `true`. `.travel
|
|
4282
|
-
\ `true`. `.ee` registration.\n
|
|
4283
|
-
|
|
4284
|
-
\ `de_abuse_contact`: id of a
|
|
4285
|
-
\
|
|
4286
|
-
\
|
|
4287
|
-
\
|
|
4292
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
4293
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
4294
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
4295
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
4296
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
4297
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
4298
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
4299
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
4300
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
4301
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
4302
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
4303
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
4304
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
4305
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
4306
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4288
4307
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4289
4308
|
returned under `attributes`; inline contact attributes surface on the\
|
|
4290
4309
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4291
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4310
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
4292
4311
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4293
|
-
\ update,
|
|
4294
|
-
\
|
|
4295
|
-
\
|
|
4312
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
4313
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
4314
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
4315
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
4316
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4317
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
4318
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
4319
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
4320
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
4321
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
4322
|
+
\ change but cannot be removed with an empty value.\n"
|
|
4296
4323
|
title: Attributes
|
|
4297
4324
|
auth_code:
|
|
4298
4325
|
anyOf:
|
|
@@ -4366,28 +4393,37 @@ components:
|
|
|
4366
4393
|
- type: 'null'
|
|
4367
4394
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
4368
4395
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
4369
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
4370
|
-
\
|
|
4371
|
-
\
|
|
4372
|
-
\
|
|
4373
|
-
\
|
|
4374
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
4375
|
-
\ `true`. `.it` registration
|
|
4376
|
-
\ `true`. `.travel
|
|
4377
|
-
\ `true`. `.ee` registration.\n
|
|
4378
|
-
|
|
4379
|
-
\ `de_abuse_contact`: id of a
|
|
4380
|
-
\
|
|
4381
|
-
\
|
|
4382
|
-
\
|
|
4396
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
4397
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
4398
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
4399
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
4400
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
4401
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
4402
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
4403
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
4404
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
4405
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
4406
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
4407
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
4408
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
4409
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
4410
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
4383
4411
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
4384
4412
|
returned under `attributes`; inline contact attributes surface on the\
|
|
4385
4413
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
4386
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
4414
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
4387
4415
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
4388
|
-
\ update,
|
|
4389
|
-
\
|
|
4390
|
-
\
|
|
4416
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
4417
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
4418
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
4419
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
4420
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
4421
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
4422
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
4423
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
4424
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
4425
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
4426
|
+
\ change but cannot be removed with an empty value.\n"
|
|
4391
4427
|
examples:
|
|
4392
4428
|
- auto_renew_period: monthly
|
|
4393
4429
|
title: Attributes
|
|
@@ -6248,14 +6284,14 @@ components:
|
|
|
6248
6284
|
- type: 'null'
|
|
6249
6285
|
description: "Override attributes for this domain.\n\nAdditional attributes\
|
|
6250
6286
|
\ of the domain, keyed by attribute name. Values are strings.\n\nCustomer-settable\
|
|
6251
|
-
\ keys:\n\n- `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
6252
|
-
\
|
|
6253
|
-
\
|
|
6254
|
-
\
|
|
6255
|
-
\ is rejected on
|
|
6256
|
-
\
|
|
6257
|
-
\ `.music` registration.\n- `nic_it_compliance_confirmation
|
|
6258
|
-
\ `.it` registration and transfer.\n- `travel_industry_acknowledgement`:\
|
|
6287
|
+
\ keys:\n\n- `auto_renew_period`: `monthly` or `yearly`. All TLDs on create,\
|
|
6288
|
+
\ transfer-in and update. Selects the\n period of the next renewal; the\
|
|
6289
|
+
\ current expiry date does not move. On transfer-in without `period` it\
|
|
6290
|
+
\ also sets the\n period added by the transfer. When the TLD has no month-unit\
|
|
6291
|
+
\ renewal period, `monthly` is rejected on update and on\n a transfer-in\
|
|
6292
|
+
\ that omits `period`, and ignored at renewal.\n- `music_registrant_attestation`:\
|
|
6293
|
+
\ `true`. `.music` registration.\n- `nic_it_compliance_confirmation`:\
|
|
6294
|
+
\ `true`. `.it` registration and transfer.\n- `travel_industry_acknowledgement`:\
|
|
6259
6295
|
\ `true`. `.travel` registration.\n- `internet_ee_registrant_agreement`:\
|
|
6260
6296
|
\ `true`. `.ee` registration.\n- `punktum_dk_terms_acceptance`: `true`.\
|
|
6261
6297
|
\ `.dk` registration and registrant change.\n- `de_general_request_contact`,\
|
|
@@ -6266,11 +6302,19 @@ components:
|
|
|
6266
6302
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6267
6303
|
returned under `attributes`; inline contact attributes surface on the\
|
|
6268
6304
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6269
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6305
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6270
6306
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6271
|
-
\ update,
|
|
6272
|
-
\
|
|
6273
|
-
\
|
|
6307
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
6308
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
6309
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
6310
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
6311
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6312
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
6313
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
6314
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
6315
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
6316
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
6317
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6274
6318
|
title: Attributes
|
|
6275
6319
|
auth_code:
|
|
6276
6320
|
anyOf:
|
|
@@ -6354,28 +6398,37 @@ components:
|
|
|
6354
6398
|
- type: 'null'
|
|
6355
6399
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
6356
6400
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
6357
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
6358
|
-
\
|
|
6359
|
-
\
|
|
6360
|
-
\
|
|
6361
|
-
\
|
|
6362
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
6363
|
-
\ `true`. `.it` registration
|
|
6364
|
-
\ `true`. `.travel
|
|
6365
|
-
\ `true`. `.ee` registration.\n
|
|
6366
|
-
|
|
6367
|
-
\ `de_abuse_contact`: id of a
|
|
6368
|
-
\
|
|
6369
|
-
\
|
|
6370
|
-
\
|
|
6401
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
6402
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
6403
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
6404
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
6405
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
6406
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
6407
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
6408
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
6409
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
6410
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
6411
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
6412
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
6413
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
6414
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
6415
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6371
6416
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6372
6417
|
returned under `attributes`; inline contact attributes surface on the\
|
|
6373
6418
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6374
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6419
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6375
6420
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6376
|
-
\ update,
|
|
6377
|
-
\
|
|
6378
|
-
\
|
|
6421
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
6422
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
6423
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
6424
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
6425
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6426
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
6427
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
6428
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
6429
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
6430
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
6431
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6379
6432
|
title: Attributes
|
|
6380
6433
|
contacts:
|
|
6381
6434
|
$ref: '#/components/schemas/DomainContactHandles'
|
|
@@ -6443,28 +6496,37 @@ components:
|
|
|
6443
6496
|
- type: 'null'
|
|
6444
6497
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
6445
6498
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
6446
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
6447
|
-
\
|
|
6448
|
-
\
|
|
6449
|
-
\
|
|
6450
|
-
\
|
|
6451
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
6452
|
-
\ `true`. `.it` registration
|
|
6453
|
-
\ `true`. `.travel
|
|
6454
|
-
\ `true`. `.ee` registration.\n
|
|
6455
|
-
|
|
6456
|
-
\ `de_abuse_contact`: id of a
|
|
6457
|
-
\
|
|
6458
|
-
\
|
|
6459
|
-
\
|
|
6499
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
6500
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
6501
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
6502
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
6503
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
6504
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
6505
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
6506
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
6507
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
6508
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
6509
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
6510
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
6511
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
6512
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
6513
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6460
6514
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6461
6515
|
returned under `attributes`; inline contact attributes surface on the\
|
|
6462
6516
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6463
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6517
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6464
6518
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6465
|
-
\ update,
|
|
6466
|
-
\
|
|
6467
|
-
\
|
|
6519
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
6520
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
6521
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
6522
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
6523
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6524
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
6525
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
6526
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
6527
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
6528
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
6529
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6468
6530
|
examples:
|
|
6469
6531
|
- auto_renew_period: monthly
|
|
6470
6532
|
title: Attributes
|
|
@@ -6532,28 +6594,37 @@ components:
|
|
|
6532
6594
|
- type: 'null'
|
|
6533
6595
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
6534
6596
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
6535
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
6536
|
-
\
|
|
6537
|
-
\
|
|
6538
|
-
\
|
|
6539
|
-
\
|
|
6540
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
6541
|
-
\ `true`. `.it` registration
|
|
6542
|
-
\ `true`. `.travel
|
|
6543
|
-
\ `true`. `.ee` registration.\n
|
|
6544
|
-
|
|
6545
|
-
\ `de_abuse_contact`: id of a
|
|
6546
|
-
\
|
|
6547
|
-
\
|
|
6548
|
-
\
|
|
6597
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
6598
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
6599
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
6600
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
6601
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
6602
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
6603
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
6604
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
6605
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
6606
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
6607
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
6608
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
6609
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
6610
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
6611
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6549
6612
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6550
6613
|
returned under `attributes`; inline contact attributes surface on the\
|
|
6551
6614
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6552
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6615
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6553
6616
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6554
|
-
\ update,
|
|
6555
|
-
\
|
|
6556
|
-
\
|
|
6617
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
6618
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
6619
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
6620
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
6621
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6622
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
6623
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
6624
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
6625
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
6626
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
6627
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6557
6628
|
examples:
|
|
6558
6629
|
- auto_renew_period: monthly
|
|
6559
6630
|
title: Attributes
|
|
@@ -6666,28 +6737,37 @@ components:
|
|
|
6666
6737
|
- type: 'null'
|
|
6667
6738
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
6668
6739
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
6669
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
6670
|
-
\
|
|
6671
|
-
\
|
|
6672
|
-
\
|
|
6673
|
-
\
|
|
6674
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
6675
|
-
\ `true`. `.it` registration
|
|
6676
|
-
\ `true`. `.travel
|
|
6677
|
-
\ `true`. `.ee` registration.\n
|
|
6678
|
-
|
|
6679
|
-
\ `de_abuse_contact`: id of a
|
|
6680
|
-
\
|
|
6681
|
-
\
|
|
6682
|
-
\
|
|
6740
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
6741
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
6742
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
6743
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
6744
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
6745
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
6746
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
6747
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
6748
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
6749
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
6750
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
6751
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
6752
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
6753
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
6754
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6683
6755
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6684
6756
|
returned under `attributes`; inline contact attributes surface on the\
|
|
6685
6757
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6686
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
6758
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6687
6759
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6688
|
-
\ update,
|
|
6689
|
-
\
|
|
6690
|
-
\
|
|
6760
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
6761
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
6762
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
6763
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
6764
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
6765
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
6766
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
6767
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
6768
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
6769
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
6770
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6691
6771
|
examples:
|
|
6692
6772
|
- auto_renew_period: monthly
|
|
6693
6773
|
title: Attributes
|
|
@@ -6909,28 +6989,37 @@ components:
|
|
|
6909
6989
|
- type: 'null'
|
|
6910
6990
|
description: "Additional attributes of the domain, keyed by attribute name.\
|
|
6911
6991
|
\ Values are strings.\n\nCustomer-settable keys:\n\n- `auto_renew_period`:\
|
|
6912
|
-
\ `monthly` or `yearly`. All TLDs on create
|
|
6913
|
-
\
|
|
6914
|
-
\
|
|
6915
|
-
\
|
|
6916
|
-
\
|
|
6917
|
-
- `music_registrant_attestation`: `true`. `.music
|
|
6918
|
-
\ `true`. `.it` registration
|
|
6919
|
-
\ `true`. `.travel
|
|
6920
|
-
\ `true`. `.ee` registration.\n
|
|
6921
|
-
|
|
6922
|
-
\ `de_abuse_contact`: id of a
|
|
6923
|
-
\
|
|
6924
|
-
\
|
|
6925
|
-
\
|
|
6992
|
+
\ `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects\
|
|
6993
|
+
\ the\n period of the next renewal; the current expiry date does not\
|
|
6994
|
+
\ move. On transfer-in without `period` it also sets the\n period added\
|
|
6995
|
+
\ by the transfer. When the TLD has no month-unit renewal period, `monthly`\
|
|
6996
|
+
\ is rejected on update and on\n a transfer-in that omits `period`, and\
|
|
6997
|
+
\ ignored at renewal.\n- `music_registrant_attestation`: `true`. `.music`\
|
|
6998
|
+
\ registration.\n- `nic_it_compliance_confirmation`: `true`. `.it` registration\
|
|
6999
|
+
\ and transfer.\n- `travel_industry_acknowledgement`: `true`. `.travel`\
|
|
7000
|
+
\ registration.\n- `internet_ee_registrant_agreement`: `true`. `.ee` registration.\n\
|
|
7001
|
+
- `punktum_dk_terms_acceptance`: `true`. `.dk` registration and registrant\
|
|
7002
|
+
\ change.\n- `de_general_request_contact`, `de_abuse_contact`: id of a\
|
|
7003
|
+
\ contact whose `.de` attribute set has `DE_CONTACT_TYPE` =\n `REQUEST`.\
|
|
7004
|
+
\ `.de` only.\n\nBoolean keys also accept `1` and `yes`.\n\nWritten by\
|
|
7005
|
+
\ the platform and rejected if supplied: `verification_required`, `promotion`,\
|
|
7006
|
+
\ `promotion_eligibility`,\n`nor_id_declaration`, `nor_id_declaration_token`,\
|
|
6926
7007
|
\ `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never\n\
|
|
6927
7008
|
returned under `attributes`; inline contact attributes surface on the\
|
|
6928
7009
|
\ matching `contacts` entry instead.\n\nDerived from the signed `.no`\
|
|
6929
|
-
\ applicant declaration and ignored if supplied: `nor_id_applicant_version`,\n\
|
|
7010
|
+
\ applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,\n\
|
|
6930
7011
|
`nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.\n\nOn\
|
|
6931
|
-
\ update,
|
|
6932
|
-
\
|
|
6933
|
-
\
|
|
7012
|
+
\ update, every registry stores the supplied attributes, and the update\
|
|
7013
|
+
\ is not sent to the registry unless they\nstore; a registry that rejects\
|
|
7014
|
+
\ the change stores nothing. An empty value removes the stored attribute,\
|
|
7015
|
+
\ except for\n`auto_renew_period`, whose only accepted values are `monthly`\
|
|
7016
|
+
\ and `yearly`. `.dk` also reads\n`punktum_dk_terms_acceptance` to confirm\
|
|
7017
|
+
\ a registrant change. An update cannot change what the registrant accepted\
|
|
7018
|
+
\ at\nregistration, so these are rejected on update: `music_registrant_attestation`,\
|
|
7019
|
+
\ `nic_it_compliance_confirmation`,\n`travel_industry_acknowledgement`,\
|
|
7020
|
+
\ `internet_ee_registrant_agreement` and the three `nor_id_applicant_*`\
|
|
7021
|
+
\ keys.\n`punktum_dk_terms_acceptance` stays settable for a registrant\
|
|
7022
|
+
\ change but cannot be removed with an empty value.\n"
|
|
6934
7023
|
examples:
|
|
6935
7024
|
- auto_renew_period: monthly
|
|
6936
7025
|
title: Attributes
|
|
@@ -16296,7 +16385,7 @@ info:
|
|
|
16296
16385
|
\n\n"
|
|
16297
16386
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
16298
16387
|
title: OpusDNS API
|
|
16299
|
-
version: 2026-09-08-
|
|
16388
|
+
version: 2026-09-08-214430
|
|
16300
16389
|
x-logo:
|
|
16301
16390
|
altText: OpusDNS API Reference
|
|
16302
16391
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -34638,29 +34727,30 @@ tags:
|
|
|
34638
34727
|
\ `PROOF_OF_ARRIVAL`, `DRIVERS_LICENCE`, `COMPANY_REGISTER`, `COMPANY_STATEMENT`,\
|
|
34639
34728
|
\ `BANK_ACCOUNT`, `ONLINE_PAYMENT_ACCOUNT`, `UTILITY_ACCOUNT`, `BANK_STATEMENT`,\
|
|
34640
34729
|
\ `TAX_STATEMENT`, `WRITTEN_ATTESTATION`, `DIGITAL_ATTESTATION`, `POSTAL_VER_TRANSACTION_LOG`,\
|
|
34641
|
-
\ `EMAIL_VER_TRANSACTION_LOG`, `
|
|
34642
|
-
\ | string | Caller-supplied reference (e.g. internal
|
|
34643
|
-
\ Up to 255 chars. |\n\n**DENIC-only constraint
|
|
34644
|
-
\ verification pending, all items in a single request
|
|
34645
|
-
\ `proof`, and `attestation_reference`. DENIC's
|
|
34646
|
-
\ block per call; the API enforces this
|
|
34647
|
-
\ see a synchronous 400 instead of a partial-success
|
|
34648
|
-
\ verification accept heterogeneous batches.\n\n
|
|
34649
|
-
\ returns **HTTP 200 OK** with an object containing the
|
|
34650
|
-
\ state from the contact-verification service:\n\n```json\n
|
|
34651
|
-
: [\n {\n \"claim\": \"NAME\",\n \"state\"
|
|
34652
|
-
|
|
34653
|
-
: \"ticket-12345\",\n \"verified_on\": \"
|
|
34654
|
-
expires_on\": null\n }\n ]\n}\n```\n\n| Field
|
|
34655
|
-
|
|
34656
|
-
\
|
|
34657
|
-
\
|
|
34658
|
-
\
|
|
34659
|
-
\
|
|
34660
|
-
\
|
|
34661
|
-
\
|
|
34662
|
-
\
|
|
34663
|
-
\ the
|
|
34730
|
+
\ `EMAIL_VER_TRANSACTION_LOG`, `PHONE_VER_TRANSACTION_LOG`, `ADDRESS_DATABASE`\
|
|
34731
|
+
\ |\n| `attestation_reference` | string | Caller-supplied reference (e.g. internal\
|
|
34732
|
+
\ ticket ID, document hash). Up to 255 chars. |\n\n**DENIC-only constraint:**\
|
|
34733
|
+
\ when the contact has DENIC verification pending, all items in a single request\
|
|
34734
|
+
\ must share the same `method`, `proof`, and `attestation_reference`. DENIC's\
|
|
34735
|
+
\ `contactUPDATE` carries one verification block per call; the API enforces this\
|
|
34736
|
+
\ only when DENIC is in scope so callers see a synchronous 400 instead of a partial-success.\
|
|
34737
|
+
\ Contacts not pending DENIC verification accept heterogeneous batches.\n\n####\
|
|
34738
|
+
\ Response\n\nThe endpoint returns **HTTP 200 OK** with an object containing the\
|
|
34739
|
+
\ per-claim verification state from the contact-verification service:\n\n```json\n\
|
|
34740
|
+
{\n \"verifications\": [\n {\n \"claim\": \"NAME\",\n \"state\"\
|
|
34741
|
+
: \"VERIFIED\",\n \"method\": \"AUTH\",\n \"proof\": \"IDCARD\",\n \
|
|
34742
|
+
\ \"attestation_reference\": \"ticket-12345\",\n \"verified_on\": \"\
|
|
34743
|
+
2026-05-15T12:00:00Z\",\n \"expires_on\": null\n }\n ]\n}\n```\n\n| Field\
|
|
34744
|
+
\ | Type | Notes |\n|-------|------|-------|\n| `claim` | enum | The claim this\
|
|
34745
|
+
\ entry describes. |\n| `state` | enum | `UNVERIFIED`, `VERIFIED`, `IN_PROGRESS`,\
|
|
34746
|
+
\ `EXPIRED`. |\n| `method` | enum or null | The method that produced the current\
|
|
34747
|
+
\ state. |\n| `proof` | enum or null | The proof that produced the current state.\
|
|
34748
|
+
\ |\n| `attestation_reference` | string or null | Reference recorded with the\
|
|
34749
|
+
\ current state. |\n| `verified_on` | RFC3339 datetime or null | When the claim\
|
|
34750
|
+
\ entered the `VERIFIED` state. |\n| `expires_on` | RFC3339 datetime or null |\
|
|
34751
|
+
\ When the current verification expires. |\n\nWhen DENIC verification was pending\
|
|
34752
|
+
\ for the contact, the registry-side `contactUPDATE` is queued behind the scenes\
|
|
34753
|
+
\ and emits a `CONTACT/VERIFICATION/SUCCESS` or `CONTACT/VERIFICATION/FAILURE`\
|
|
34664
34754
|
\ poll-message event keyed on `contact_id`. The `VERIFICATION_REQUIRED` status\
|
|
34665
34755
|
\ tag on the affected domains is cleared on success.\n\n#### Error codes\n\n|\
|
|
34666
34756
|
\ Code | Status | Meaning |\n|------|--------|---------|\n| `ERROR_DOMAIN_VERIFICATION_INCONSISTENT_METHOD_PROOF`\
|
package/src/schema.d.ts
CHANGED
|
@@ -4499,7 +4499,7 @@ export interface components {
|
|
|
4499
4499
|
* ContactVerificationProof
|
|
4500
4500
|
* @enum {string}
|
|
4501
4501
|
*/
|
|
4502
|
-
ContactVerificationProof: "IDCARD" | "PASSPORT" | "POPULATION_REGISTER" | "RESIDENCE_PERMIT" | "PROOF_OF_ARRIVAL" | "DRIVERS_LICENCE" | "COMPANY_REGISTER" | "COMPANY_STATEMENT" | "BANK_ACCOUNT" | "ONLINE_PAYMENT_ACCOUNT" | "UTILITY_ACCOUNT" | "BANK_STATEMENT" | "TAX_STATEMENT" | "WRITTEN_ATTESTATION" | "DIGITAL_ATTESTATION" | "POSTAL_VER_TRANSACTION_LOG" | "EMAIL_VER_TRANSACTION_LOG" | "ADDRESS_DATABASE";
|
|
4502
|
+
ContactVerificationProof: "IDCARD" | "PASSPORT" | "POPULATION_REGISTER" | "RESIDENCE_PERMIT" | "PROOF_OF_ARRIVAL" | "DRIVERS_LICENCE" | "COMPANY_REGISTER" | "COMPANY_STATEMENT" | "BANK_ACCOUNT" | "ONLINE_PAYMENT_ACCOUNT" | "UTILITY_ACCOUNT" | "BANK_STATEMENT" | "TAX_STATEMENT" | "WRITTEN_ATTESTATION" | "DIGITAL_ATTESTATION" | "POSTAL_VER_TRANSACTION_LOG" | "EMAIL_VER_TRANSACTION_LOG" | "PHONE_VER_TRANSACTION_LOG" | "ADDRESS_DATABASE";
|
|
4503
4503
|
/** ContactVerificationResponse */
|
|
4504
4504
|
ContactVerificationResponse: {
|
|
4505
4505
|
/**
|
|
@@ -5733,10 +5733,10 @@ export interface components {
|
|
|
5733
5733
|
*
|
|
5734
5734
|
* Customer-settable keys:
|
|
5735
5735
|
*
|
|
5736
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
5736
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
5737
5737
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
5738
|
-
* period added by the transfer.
|
|
5739
|
-
*
|
|
5738
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
5739
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
5740
5740
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
5741
5741
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
5742
5742
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -5751,11 +5751,16 @@ export interface components {
|
|
|
5751
5751
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5752
5752
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5753
5753
|
*
|
|
5754
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5754
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
5755
5755
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
5756
5756
|
*
|
|
5757
|
-
* On update,
|
|
5758
|
-
*
|
|
5757
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
5758
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
5759
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
5760
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
5761
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
5762
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
5763
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
5759
5764
|
*
|
|
5760
5765
|
* @example {
|
|
5761
5766
|
* "auto_renew_period": "monthly"
|
|
@@ -5836,10 +5841,10 @@ export interface components {
|
|
|
5836
5841
|
*
|
|
5837
5842
|
* Customer-settable keys:
|
|
5838
5843
|
*
|
|
5839
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
5844
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
5840
5845
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
5841
|
-
* period added by the transfer.
|
|
5842
|
-
*
|
|
5846
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
5847
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
5843
5848
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
5844
5849
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
5845
5850
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -5854,11 +5859,16 @@ export interface components {
|
|
|
5854
5859
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5855
5860
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5856
5861
|
*
|
|
5857
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5862
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
5858
5863
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
5859
5864
|
*
|
|
5860
|
-
* On update,
|
|
5861
|
-
*
|
|
5865
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
5866
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
5867
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
5868
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
5869
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
5870
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
5871
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
5862
5872
|
*
|
|
5863
5873
|
*/
|
|
5864
5874
|
attributes?: {
|
|
@@ -5911,10 +5921,10 @@ export interface components {
|
|
|
5911
5921
|
*
|
|
5912
5922
|
* Customer-settable keys:
|
|
5913
5923
|
*
|
|
5914
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
5924
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
5915
5925
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
5916
|
-
* period added by the transfer.
|
|
5917
|
-
*
|
|
5926
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
5927
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
5918
5928
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
5919
5929
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
5920
5930
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -5929,11 +5939,16 @@ export interface components {
|
|
|
5929
5939
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
5930
5940
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
5931
5941
|
*
|
|
5932
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
5942
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
5933
5943
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
5934
5944
|
*
|
|
5935
|
-
* On update,
|
|
5936
|
-
*
|
|
5945
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
5946
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
5947
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
5948
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
5949
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
5950
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
5951
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
5937
5952
|
*
|
|
5938
5953
|
*/
|
|
5939
5954
|
attributes?: {
|
|
@@ -5990,10 +6005,10 @@ export interface components {
|
|
|
5990
6005
|
*
|
|
5991
6006
|
* Customer-settable keys:
|
|
5992
6007
|
*
|
|
5993
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
6008
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
5994
6009
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
5995
|
-
* period added by the transfer.
|
|
5996
|
-
*
|
|
6010
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
6011
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
5997
6012
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
5998
6013
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
5999
6014
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -6008,11 +6023,16 @@ export interface components {
|
|
|
6008
6023
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
6009
6024
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
6010
6025
|
*
|
|
6011
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
6026
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
6012
6027
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
6013
6028
|
*
|
|
6014
|
-
* On update,
|
|
6015
|
-
*
|
|
6029
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
6030
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
6031
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
6032
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
6033
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
6034
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
6035
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
6016
6036
|
*
|
|
6017
6037
|
* @example {
|
|
6018
6038
|
* "auto_renew_period": "monthly"
|
|
@@ -7236,10 +7256,10 @@ export interface components {
|
|
|
7236
7256
|
*
|
|
7237
7257
|
* Customer-settable keys:
|
|
7238
7258
|
*
|
|
7239
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
7259
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7240
7260
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7241
|
-
* period added by the transfer.
|
|
7242
|
-
*
|
|
7261
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
7262
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
7243
7263
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7244
7264
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7245
7265
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -7254,11 +7274,16 @@ export interface components {
|
|
|
7254
7274
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7255
7275
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7256
7276
|
*
|
|
7257
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7277
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7258
7278
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7259
7279
|
*
|
|
7260
|
-
* On update,
|
|
7261
|
-
*
|
|
7280
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7281
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7282
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7283
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7284
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7285
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7286
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7262
7287
|
*
|
|
7263
7288
|
*/
|
|
7264
7289
|
attributes?: {
|
|
@@ -7311,10 +7336,10 @@ export interface components {
|
|
|
7311
7336
|
*
|
|
7312
7337
|
* Customer-settable keys:
|
|
7313
7338
|
*
|
|
7314
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
7339
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7315
7340
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7316
|
-
* period added by the transfer.
|
|
7317
|
-
*
|
|
7341
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
7342
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
7318
7343
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7319
7344
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7320
7345
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -7329,11 +7354,16 @@ export interface components {
|
|
|
7329
7354
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7330
7355
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7331
7356
|
*
|
|
7332
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7357
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7333
7358
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7334
7359
|
*
|
|
7335
|
-
* On update,
|
|
7336
|
-
*
|
|
7360
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7361
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7362
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7363
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7364
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7365
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7366
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7337
7367
|
*
|
|
7338
7368
|
*/
|
|
7339
7369
|
attributes?: {
|
|
@@ -7386,10 +7416,10 @@ export interface components {
|
|
|
7386
7416
|
*
|
|
7387
7417
|
* Customer-settable keys:
|
|
7388
7418
|
*
|
|
7389
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
7419
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7390
7420
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7391
|
-
* period added by the transfer.
|
|
7392
|
-
*
|
|
7421
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
7422
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
7393
7423
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7394
7424
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7395
7425
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -7404,11 +7434,16 @@ export interface components {
|
|
|
7404
7434
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7405
7435
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7406
7436
|
*
|
|
7407
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7437
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7408
7438
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7409
7439
|
*
|
|
7410
|
-
* On update,
|
|
7411
|
-
*
|
|
7440
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7441
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7442
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7443
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7444
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7445
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7446
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7412
7447
|
*
|
|
7413
7448
|
* @example {
|
|
7414
7449
|
* "auto_renew_period": "monthly"
|
|
@@ -7461,10 +7496,10 @@ export interface components {
|
|
|
7461
7496
|
*
|
|
7462
7497
|
* Customer-settable keys:
|
|
7463
7498
|
*
|
|
7464
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
7499
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7465
7500
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7466
|
-
* period added by the transfer.
|
|
7467
|
-
*
|
|
7501
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
7502
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
7468
7503
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7469
7504
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7470
7505
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -7479,11 +7514,16 @@ export interface components {
|
|
|
7479
7514
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7480
7515
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7481
7516
|
*
|
|
7482
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7517
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7483
7518
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7484
7519
|
*
|
|
7485
|
-
* On update,
|
|
7486
|
-
*
|
|
7520
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7521
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7522
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7523
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7524
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7525
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7526
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7487
7527
|
*
|
|
7488
7528
|
* @example {
|
|
7489
7529
|
* "auto_renew_period": "monthly"
|
|
@@ -7568,10 +7608,10 @@ export interface components {
|
|
|
7568
7608
|
*
|
|
7569
7609
|
* Customer-settable keys:
|
|
7570
7610
|
*
|
|
7571
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
7611
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7572
7612
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7573
|
-
* period added by the transfer.
|
|
7574
|
-
*
|
|
7613
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
7614
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
7575
7615
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7576
7616
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7577
7617
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -7586,11 +7626,16 @@ export interface components {
|
|
|
7586
7626
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7587
7627
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7588
7628
|
*
|
|
7589
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7629
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7590
7630
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7591
7631
|
*
|
|
7592
|
-
* On update,
|
|
7593
|
-
*
|
|
7632
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7633
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7634
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7635
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7636
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7637
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7638
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7594
7639
|
*
|
|
7595
7640
|
* @example {
|
|
7596
7641
|
* "auto_renew_period": "monthly"
|
|
@@ -7743,10 +7788,10 @@ export interface components {
|
|
|
7743
7788
|
*
|
|
7744
7789
|
* Customer-settable keys:
|
|
7745
7790
|
*
|
|
7746
|
-
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create
|
|
7791
|
+
* - `auto_renew_period`: `monthly` or `yearly`. All TLDs on create, transfer-in and update. Selects the
|
|
7747
7792
|
* period of the next renewal; the current expiry date does not move. On transfer-in without `period` it also sets the
|
|
7748
|
-
* period added by the transfer.
|
|
7749
|
-
*
|
|
7793
|
+
* period added by the transfer. When the TLD has no month-unit renewal period, `monthly` is rejected on update and on
|
|
7794
|
+
* a transfer-in that omits `period`, and ignored at renewal.
|
|
7750
7795
|
* - `music_registrant_attestation`: `true`. `.music` registration.
|
|
7751
7796
|
* - `nic_it_compliance_confirmation`: `true`. `.it` registration and transfer.
|
|
7752
7797
|
* - `travel_industry_acknowledgement`: `true`. `.travel` registration.
|
|
@@ -7761,11 +7806,16 @@ export interface components {
|
|
|
7761
7806
|
* `nor_id_declaration`, `nor_id_declaration_token`, `punktum_dk_tracking_no`, `domain_contact_attributes`. They are never
|
|
7762
7807
|
* returned under `attributes`; inline contact attributes surface on the matching `contacts` entry instead.
|
|
7763
7808
|
*
|
|
7764
|
-
* Derived from the signed `.no` applicant declaration and ignored if supplied: `nor_id_applicant_version`,
|
|
7809
|
+
* Derived from the signed `.no` applicant declaration and ignored if supplied on create: `nor_id_applicant_version`,
|
|
7765
7810
|
* `nor_id_applicant_accept_name`, `nor_id_applicant_accept_date`.
|
|
7766
7811
|
*
|
|
7767
|
-
* On update,
|
|
7768
|
-
*
|
|
7812
|
+
* On update, every registry stores the supplied attributes, and the update is not sent to the registry unless they
|
|
7813
|
+
* store; a registry that rejects the change stores nothing. An empty value removes the stored attribute, except for
|
|
7814
|
+
* `auto_renew_period`, whose only accepted values are `monthly` and `yearly`. `.dk` also reads
|
|
7815
|
+
* `punktum_dk_terms_acceptance` to confirm a registrant change. An update cannot change what the registrant accepted at
|
|
7816
|
+
* registration, so these are rejected on update: `music_registrant_attestation`, `nic_it_compliance_confirmation`,
|
|
7817
|
+
* `travel_industry_acknowledgement`, `internet_ee_registrant_agreement` and the three `nor_id_applicant_*` keys.
|
|
7818
|
+
* `punktum_dk_terms_acceptance` stays settable for a registrant change but cannot be removed with an empty value.
|
|
7769
7819
|
*
|
|
7770
7820
|
* @example {
|
|
7771
7821
|
* "auto_renew_period": "monthly"
|