Skip to content

Commit

Permalink
add eppSafeCodePoints
Browse files Browse the repository at this point in the history
  • Loading branch information
gbicann committed Nov 13, 2024
1 parent aa5b86d commit b6984a1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
20 changes: 17 additions & 3 deletions inc/idn-table-request-base-properties.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,28 @@ version:
type: string
example: "1.0"

eppSafeCodePoints:
description: |
A list of code points that are "safe" for the purposes of pseudo-random
generate of domain names in TLDs that use this table.
Some test cases require the generation and creation of domain names with
pseudo-randomly generated names. In TLDs whose value of the `idnOnly`
property is `false`, ASCII letters and digits will be used. However, for
TLDs for which this value is `true`, this list provides a set of characters
that can be used to generate domain names.
type: array
minItems: 4
items:
type: string
pattern: ^U+[0-9a-f]{4}$
example: U+0047

isReferenceLGR:
description: |
Whether the RSP's implementation of the IDN table uses a Second-
Level Reference Label Generation Rules (LGRs) developed by ICANN.
In OT&E, this value **MUST** be `true`, as custom LGRs cannot be
tested in OT&E.
For more information on ICANN's Second-Level LGRS, please see:
* <https://www.icann.org/resources/pages/second-level-lgr-2015-06-21-en>
Expand Down
7 changes: 7 additions & 0 deletions rst-api-spec.yaml.in
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ info:

### Change Log

* 2024-11-13:
* The `eppSafeCodePoints` property has been added to the `idnTable` and
`idnTableRequest` object types, to faciliate EPP testing in TLDs which
have an `idnOnly` property of `true`.
* The requirement that the `isReferenceLGR` property of IDN table objects
**MUST** be `true` has been removed.

* 2024-09-17: The following endpoints responded with a `201` HTTP status,
when `204` should have been used:
* `GET /v1/heartbeat`
Expand Down

0 comments on commit b6984a1

Please sign in to comment.