Pfingstmontag - Supportzeiten

Die DENIC eG ist am Pfingstmontag, den 20. Mai 2024, geschlossen.

Ab Dienstag, den 21. Mai 2024, stehen wir Ihnen wieder wie gewohnt zur Verfügung.

Zur Kenntnis genommen

DENIC Extension of RDAP JSON Responses

Version 0

This document is extending RFC7483.

Conformance to this specification is declared with the value "denic_version_0" within the rdapConformance data structure at the topmost object.
The dnsData Member Object

The dnsData member object can appear in Domain class defined in RFC7483 section 5.3.

The dnsData member object represents authoritative DNS data for a given domain stored by the registry that can have the following optional members:

    mxEntries - An array of objects, each one representing an MX Resource Record (RR) as defined in RFC1035 with the following mandatory members:
        owner - an LDH owner name, i.e., the name of the node to which this resource record pertains. Trailing periods are optional.
        preference - an integer reprensenting the preference given to this RR among others at the same owner.
        exchange - an LDH domain name representing the mail exchange for the owner name. Trailing periods are optional.
    aEntries - An array of objects, each one representing an A Resource Record (RR) as defined in RFC1035 with the following mandatory members:
        owner - an LDH owner name, i.e., the name of the node to which this resource record pertains. Trailing periods are optional.
        v4 - a string representing the IPv4 address of the owner name in the dotted-decimal notation.

    aaaaEntries - An array of objects, each one representing an AAAA Resource Record (RR) as defined in RFC3596 with the following mandatory members:
        owner - an LDH owner name, i.e., the name of the node to which this resource record pertains. Trailing periods are optional.
        v6 - a string representing the IPv6 address of the owner name in the textual notation outlined in RFC5952.
dnsData
{"denic_dnsData":
    {
    "denic_mxEntries": [
    {
        "denic_owner": "denic.de",
        "denic_preference": 0,
        "denic_exchange": "mx1.denic.de"
    }],
    "denic_aEntries": [
    {
        "denic_owner": "denic.de",
        "denic_v4": "192.0.2.0"
    },
    {
        "denic_owner": "www.denic.de",
        "denic_v4": "192.0.2.1"
    }],
    "denic_aaaaEntries": [
    {
        "denic_owner": "www.denic.de",
        "denic_v6": "2001:db8::1:0:0:1"
    }]
    }
}