Internet-Draft rdap-simple-contact August 2023
Newton & Harrison Expires 3 March 2024 [Page]
Workgroup:
Registration Protocols Extensions (regext)
Internet-Draft:
draft-newton-regext-rdap-simple-contact-01
Published:
Intended Status:
Standards Track
Expires:
Authors:
A. Newton
ICANN
T. Harrison
APNIC

RDAP Simple Contact

Abstract

This document describes an extension to the Registry Data Access Protocol for entity contact data using basic JSON values, objects, and arrays. The data model defined by this document is purposefully limited to the data in-use by Internet Number Registries and Domain Name Registries and does not attempt to model the full data-set that can be expressed with other contact models such as jCard or JSContact.

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."

This Internet-Draft will expire on 3 March 2024.

Table of Contents

1. Background

[RFC9083] defines the contact data of an entity using jCard ([RFC7095]), which is a JSON format for vCard ([RFC6350]). Experience has shown that jCard is unsuitable for RDAP because its "jagged" array style is unlike any other JSON in RDAP; it is more difficutl to deserialize into objects that are easy to work with, it is error prone and difficult to debug, and it can express far more information than is necessary for RDAP.

This document defines the SimpleContact extension for RDAP. This extension intends to model JSON in the same style and manner as other RDAP structures and is purposefully limited to the data in-use by Internet Number Registries and Domain Name Registries.

The purposeful limitation of the contact data model defined in this document is informed by [RFC5733], the ICANN gTLD RDAP Response Profile, the NRO RDAP Profile, and [RFC7495].

2. Simple Contact Extension And Identifier

The RDAP extension identifier for this extension is "sc". This extension defines one JSON member named "sc_data" to be found in RDAP responses. "sc_data" is a JSON object, and it has child members described in the following sections. Each child member of "sc_data" is optional.

There are is one common, optional JSON member of these child members: "lang". The JSON member "lang" is the same as that defined by RDAP in Section 4.4.

Most of the child members are arrays allowing the expression of multiple variants of the same information. The order in which items appear in these arrays denotes preference order for the variants.

2.1. Kind

The "kind" JSON value is a string, that is either "individual", "role" or "organization". An example:

"kind" : "role"

There is no equivalent to the "role" value in either jCard or JSContact, though role entities are common in RDAP registries.

2.2. Names

Names can be expressed for each kind of the entity, as described in the "kind" string. When describing an "individual", the name of the individual's role and organization may also be expressed. When describing a "role", the name of the role's organization may also be expressed. It is NOT RECOMMENDED to express the name of a role or individual when the kind is "organization".

Names are expressed using the "individualNames", "roleNames", and "organizationNames" JSON members for individuals, roles, and organizations respectively. The value of each is an array in which each item is an object with the following members:

  • "name" - unstructured textual name as a string
  • "lang" - optional, see above

The following is an example:

"individualNames" : [
  {
    "name" : "Dr. Bob Lee Aloysius Smurd, Ph.d.",
    "lang" : "en-AU"
  }
],
"roleNames" : [
  {
    "name" : "Abuse Prevention, Trust and Safety",
    "lang" : "en-AU"
  }
],
"organizationNames" : [
  {
    "name" : "ACME Pty",
    "lang" : "en-AU"
  }
]

RDAP allows the expression of nested entities as the entity object class has its own entities array. Some servers express the relationship of individuals to roles and/or organizations by nesting entities inside other entities. SimpleContact does not remove this capability nor prohibit it. However, nesting of entities is NOT RECOMMENDED if the expression of a relationship between an individual and a role or an organization can be accomplished using names alone due to the complexity in representation of those relationships by a client. If a server is to express an individual with a relationship to a role and/or organization and each have differences other than names (e.g. separate postal addresses), then nesting is RECOMMENDED.

2.3. Postal Addresses

Postal addresses can be expressed as a series of strings, each representing a separate line of text as it would appear on an item for delievery in a postal system. Additionally, postal addresses may be augmented with some of the common fields found in postal systems for the purposes of processing these addresses in non-postal systems.

Postal addresses are expressed with the "postalAddresses" JSON member, which is an array of objects each with the following optional members:

  • "address" - holds the unstructured postal address as an array of strings in which each string represents a line of a postal address.
  • "cc" - a string containing the ISO-3166-2 code.
  • "pc" - a string containing the postal code, sometimes referred to as a zip code or post code.
  • "lang" - see above

The following is an example of a postal address:

"postalAddresses" : [
  {
    "address" : [
      "Suite 300",
      "123 Random Tree Name Street",
      "Kalamazoo, MI 90125 US"
    ]
    "cc" : "US-MI",
    "pc" : "90215",
    "lang" : "en-US"
  }
]

2.4. Email Addresses

Email addresses can be expressed in a JSON array of objects named "emails". Each object contains the following members:

  • "email" - a string containing the email address.
  • "lang" - optional, see above

If the string in "email" begins with "mailto:", the string MUST be conformant to the mailto URI specified in [RFC6068]. Otherwise, the string MUST be conformant to the address specification of Section 3.3. This JSON value is optional.

"emails" : [
  {
    "email": "山田太郎@example.net",
    "lang" : "ja"
  },
  {
    "email" : "yamada.taro@example.net",
    "lang" : "ja-Latn"
  }
]

2.5. Telephones

Telephones to be used for voice communication can be expressed in a JSON array of strings named "voicePhones". Telephones to be used for facsimile machine communications can be expressed in a JSON array of strings named "faxPhones".

If the string in the array begins with "tel:", the string MUST be conformant to the tel URI specified in [RFC3966]. Otherwise the string is considered unstructured text. If possible, the unstructurued text SHOULD be conformant to the [ITU.E161.2001] format and the [ITU.E164.1991] numbering plan.

The following are examples:

"voicePhones" : [
  "tel:+1-201-555-0123",
  "+447040202"
],
"faxPhones" : [
  "tel:+1-201-555-9999;ext=123"
]

2.6. Web Contacts

Communications with the entity using a web browser, often by submitting data via a web form, can be expressed using a JSON array of strings called "webContacts". Each string in the array is an HTTPS URI as specified by Section 4.2.2.

An example:

"webContacts" : [
  "https://example.com/contact-me"
]

2.7. Geographic Locations

Geographic locations can be expressed using the "geo" JSON value, which is an array of strings. Each string MUST be conformant to the geo URI scheme as defined in [RFC5870].

"geo" : [
  "geo:37.786971,-122.399677"
]

"geo" values SHOULD NOT be used with contact data when "kind" is "individual".

2.8. An Entity Example

The following is an example of an RDAP entity using SimpleContact:

{
  "objectClassName" : "entity",
  "handle":"XXXX",
  "sc_data": {
    "kind" : "individual",
    "individualNames" : [
      {
        "name" : "山田太郎",
        "lang" : "ja"
      },
      {
        "name" : "Yomada Taro",
        "lang" : "ja-Latn"
      }
    ],
    "roleNames" : [
      {
        "name" : "登録サービス ヘルプデスク",
        "lang" : "ja"
      },
      {
        "name" : "Registration Services Help Desk",
        "lang" : "en"
      }
    ],
    "organizationNames" : [
      {
        "name" : "アクメ",
        "lang" : "ja"
      },
      {
        "name" : "ACME",
        "lang" : "en"
      }
    ],
    "postalAddresses" : [
      {
        "address" : [
          "〒150-2345 東京都渋谷区本町2丁目4-7サニーマンション203",
        ]
        "cc" : "JP-13",
        "pc" : "150-2345",
        "lang" : "ja"
      },
      {
        "address" : [
          "Sunny Mansion #203",
          "4-7 Hommachi 2-choume",
          "Shibuya-ku, TOKYO 150-2345"
        ]
        "cc" : "JP-13",
        "pc" : "150-2345",
        "lang" : "ja-Latn"
      }
    ],
    "emails" : [
      {
        "email": "山田太郎@example.net",
        "lang" : "ja"
      },
      {
        "email" : "yamada.taro@example.net",
        "lang" : "ja-Latn"
      }
    ],
    "voicePhones" : [
      "+81(03) 1234-5678"
    ],
    "faxPhones" : [
      "tel:+810312345679"
    ],
    "webContacts" : [
      "https://example.net/contact-me"
    ]
  },
  "roles":[ "registrar" ],
  "publicIds":[
    {
      "type":"IANA Registrar ID",
      "identifier":"1"
    }
  ],
  "remarks":[
    {
      "description":[
        "She sells sea shells down by the sea shore.",
        "Originally written by Terry Sullivan."
      ]
    }
  ],
  "links":[
    {
      "value":"https://example.com/entity/XXXX",
      "rel":"self",
      "href":"https://example.com/entity/XXXX",
      "type" : "application/rdap+json"
    },
    {
      "value":"https://example.com/entity/XXXX",
      "rel":"about",
      "href":"https://example.com/entity/XXXX.vcard",
      "type" : "text/vcard"
    }
  ],
  "events":[
    {
      "eventAction":"registration",
      "eventDate":"1990-12-31T23:59:59Z"
    }
  ],
  "asEventActor":[
    {
      "eventAction":"last changed",
      "eventDate":"1991-12-31T23:59:59Z"
    }
  ]
}

3. EPP Int/Loc Data

[RFC5733] defines mechanisms to indicate data is "localized" or "internationalized" using "int" and "loc" types. The "int" designates data as being 7-bit ASCII. To express contact data with the "int" designation in SimpleContact, it is RECOMMENDED that a language tag with the "Latn" script subtag (see [RFC5646]) be used.

5. The No jCard Extension and Identifier

This document also defines a second RDAP extension to signal the non-use of jCard in RDAP responses. The identifier for this extension is "noJCard". When used with the RDAP-X media type [I-D.newton-regext-rdap-x-media-type] and the SimpleContact identifier, a client can signal to a server that entities should substitute SimpleContact data for jCard data. When used with queries containing large amounts of entity data, such as RDAP searches, this can reduce the payload significantly (instead of sending both jCard and SimpleContact).

Use of the "noJCard" extension is independent of the SimpleContact extension, and may be used for other purposes as is appropriate to server policy.

6. Normative References

[I-D.newton-regext-rdap-x-media-type]
Newton, A. and J. Singh, "An RDAP With Extensions Media Type", Work in Progress, Internet-Draft, draft-newton-regext-rdap-x-media-type-01, , <https://datatracker.ietf.org/doc/html/draft-newton-regext-rdap-x-media-type-01>.
[ITU.E161.2001]
International Telecommunications Union, "Arrangement of digits, letters and symbols on telephones and other devices that can be used for gaining access to a telephone network", ITU-T Recommendation E.161, .
[ITU.E164.1991]
International Telecommunications Union, "The International Public Telecommunication Numbering Plan", ITU-T Recommendation E.164, .
[RFC3966]
Schulzrinne, H., "The tel URI for Telephone Numbers", RFC 3966, DOI 10.17487/RFC3966, , <https://www.rfc-editor.org/info/rfc3966>.
[RFC5646]
Phillips, A., Ed. and M. Davis, Ed., "Tags for Identifying Languages", BCP 47, RFC 5646, DOI 10.17487/RFC5646, , <https://www.rfc-editor.org/info/rfc5646>.
[RFC5733]
Hollenbeck, S., "Extensible Provisioning Protocol (EPP) Contact Mapping", STD 69, RFC 5733, DOI 10.17487/RFC5733, , <https://www.rfc-editor.org/info/rfc5733>.
[RFC5870]
Mayrhofer, A. and C. Spanring, "A Uniform Resource Identifier for Geographic Locations ('geo' URI)", RFC 5870, DOI 10.17487/RFC5870, , <https://www.rfc-editor.org/info/rfc5870>.
[RFC6068]
Duerst, M., Masinter, L., and J. Zawinski, "The 'mailto' URI Scheme", RFC 6068, DOI 10.17487/RFC6068, , <https://www.rfc-editor.org/info/rfc6068>.
[RFC6531]
Yao, J. and W. Mao, "SMTP Extension for Internationalized Email", RFC 6531, DOI 10.17487/RFC6531, , <https://www.rfc-editor.org/info/rfc6531>.
[RFC7495]
Montville, A. and D. Black, "Enumeration Reference Format for the Incident Object Description Exchange Format (IODEF)", RFC 7495, DOI 10.17487/RFC7495, , <https://www.rfc-editor.org/info/rfc7495>.
[RFC9083]
Hollenbeck, S. and A. Newton, "JSON Responses for the Registration Data Access Protocol (RDAP)", STD 95, RFC 9083, DOI 10.17487/RFC9083, , <https://www.rfc-editor.org/info/rfc9083>.
[RFC9110]
Fielding, R., Ed., Nottingham, M., Ed., and J. Reschke, Ed., "HTTP Semantics", STD 97, RFC 9110, DOI 10.17487/RFC9110, , <https://www.rfc-editor.org/info/rfc9110>.

7. Informative References

[RFC6350]
Perreault, S., "vCard Format Specification", RFC 6350, DOI 10.17487/RFC6350, , <https://www.rfc-editor.org/info/rfc6350>.
[RFC7095]
Kewisch, P., "jCard: The JSON Format for vCard", RFC 7095, DOI 10.17487/RFC7095, , <https://www.rfc-editor.org/info/rfc7095>.

Authors' Addresses

Andy Newton
ICANN
Tom Harrison
APNIC