| Internet-Draft | Using JSContact in RDAP | August 2026 |
| Loffredo & Brown | Expires 28 February 2027 | [Page] |
This document describes an RDAP extension which represents entity contact information in JSON responses using JSContact.¶
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 28 February 2027.¶
Copyright (c) 2026 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
This document specifies an extension to the Registration Data Access Protocol (RDAP) that allows RDAP servers to use JSContact [RFC9553] to represent the contact information associated with entities in RDAP responses, instead of jCard [RFC7095]. It also describes the process by which an RDAP server can transition from jCard to JSContact. RDAP query and response extensions are defined to facilitate the transition process.¶
According to the feedback from RDAP Pilot Working Group [RDAP-PILOT-WG], a group of RDAP server implementers representing registries and registrars of generic TLDs, the most commonly raised implementation concern for both servers and client implementers, was related to the use of jCard [RFC7095] to represent the contact information associated with entities. Working Group members reported jCard to be unintuitive, complicated to implement for both clients and servers, and incompatible with best practices for RESTful APIs.¶
JSContact [RFC9553] provides a simpler and more efficient representation for contact information with regard to time and effort saved in processing it. In addition, similarly to jCard, it provides a means to represent internationalized and unstructured contact information. Support for internationalized contact information has been recognized as necessary to facilitate the future internationalisation of registration data directory services.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
The JSContact specification defines a data model and JSON representation of contact information that can be used for data storage and exchange in address book or directory applications. It aims to be an alternative to the vCard data format [RFC6350] and to be unambiguous, extendable and simple to process. In contrast with jCard, it is not a direct mapping from the vCard data model and expands semantics where appropriate.¶
JSContact differs from jCard in that it:¶
follows an object-oriented rather than array-oriented approach;¶
is simple to process;¶
requires no extra work in serialization/deserialization from/to a data model;¶
includes no "jagged" arrays;¶
prefers maps rather than arrays to implement collections.¶
[RFC9555] provides guidance on the conversion of jCard into JSContact, and vice versa. Appendix A shows JSContact counterparts for the most commonly used jCard properties in an RDAP response.¶
Since JSContact is a generalized representation of contact data, many of its capabilities are not optimized for use in RDAP responses. This document defines a usage profile for JSContact that simplifies the implementation for both clients and servers. The JSContact profile for RDAP is compliant with the rules described in [I-D.ietf-calext-jscontact-profiles]. The profile properties are formally listed in Section 3.1.14. The information required to register the profile is described in Section 6.4.¶
All types mentioned in this section refer to the JSContact specification [RFC9553] (e.g., Card is the JSContact Card type).¶
An entity object in an RDAP response MAY contain a "jscontact_card" member whose value is a Card object. The "jscontact_card" member provides the contact information that would otherwise be represented by the "vcardArray" member defined in [RFC9083].¶
An entity object MUST NOT contain both the "jscontact_card" and "vcardArray" members. If contact information is included in an entity object, it MUST be represented using no more than one of these members.¶
Within a single RDAP response, the server MUST use the same contact representation for all entity objects that contain contact information. Consequently, a response MUST NOT contain a "jscontact_card" member in one entity object and a "vcardArray" member in another entity object. Entity objects for which no contact information is available MAY omit both members.¶
An RDAP response containing one or more "jscontact_card" members MUST include the "jscontact" extension identifier in the "rdapConformance" array. Additional requirements concerning the inclusion of this identifier in help responses and during the transition from jCard to JSContact are specified in Section 4.2.2.¶
Note to RFC Editor: Please replace "jscontact-0.4" with "jscontact-1.0" before publication.¶
This extension uses the Point Versioning defined in [I-D.ietf-regext-rdap-versioning] with a Point Extension Version Identifier of "jscontact-0.4". Clients and servers implementing this extension MUST also support and implement [I-D.ietf-regext-rdap-versioning]. When there are interface changes to the extension, the Point Extension Version Identifier will be incremented, which may not match the draft version number. The initial Standards Track version of this extension will use the Point Extension Version Identifier "jscontact-1.0".¶
The Card "version" member MUST have the value "2.0".¶
The information required to register the Card "version" member value in the "RDAP JSON Values" registry [RFC9083] is provided in Section 6.2.¶
The Card "kind" member value MUST be "individual" (default) or "org" to represent an individual or an organization, respectively.¶
The Card "language" member SHOULD be set when localizations are specified (i.e. the "localizations" member is present and non-empty).¶
The Card "name" member MUST include the "full" member and MAY include the "components" member to specify the name components of an individual.¶
Other than the optional "@type" member, the NameComponent type MUST include only the "kind" and "value" members. The "kind" member value MUST be "given" or "surname".¶
Other than the optional "@type" member, the Organization type MUST include only the "name" member.¶
The Address type MUST include at least one of the "full", "components" and "countryCode" members.¶
Other than the optional "@type" member, the AddressComponent type MUST include only the "kind" and "value" members. The "kind" member value MUST be "name", "locality", "region", "postcode" or "country".¶
Other than the optional "@type" member, the EmailAddress type MUST include only the "address" member.¶
The Phone type MUST include the "number" member and MAY include the "features" member.¶
The PhoneFeature type value MUST be "voice" or "fax". When the "features" member is missing, the phone number is assumed to be a voice number.¶
The Link type MUST include the "uri" member and MAY include the "kind" member. The "kind" member value MUST be "contact".¶
Since most of the JSContact collections are represented as maps, map keys must be defined. A JSContact map key MUST comply with the definition of the Id type (see Section 1.4.1 of [RFC9553]). To aid interoperability, RDAP providers MUST use the following keys related to string values and labels defined in [RFC5733]:¶
"org" in the "organizations" map when there is a single <contact:org> element;¶
"addr" in the "addresses" map when there is a single <contact:addr> element;¶
"email" in the "emails" map for the <contact:email> element;¶
"voice" in the "phones" map for the <contact:voice> element;¶
"fax" in the "phones" map for the <contact:fax> element.¶
In cases where both internationalized and localized versions of organization, postal address, and email exist, the related map MUST include the internationalized version, while the localized version MUST be included in the localizations map, as described in Section 3.1.13.¶
Additional keys of the "links" map that MUST be used to represent contact links which result from converting jCard "uri" and "contact-uri" properties are:¶
"url" used for the unique or preferred contact URL (e.g. a web site). The "kind" member of the Link object MUST NOT be set;¶
"contact-uri" used for the contact URI as defined in [RFC8605]. The "kind" member of the Link object MUST be set to "contact".¶
The information required to register the JSContact Id values in the "RDAP JSON Values" registry [RFC9083] is described in Section 6.2.¶
Any additional key used for the above maps SHOULD conform with the following scheme: "<registered key>-<sequential number>". For example, a phones map containing three voice numbers would contain the following keys: "voice", "voice-1", "voice-2".¶
The keys SHOULD remain stable until the associated contact information is changed. Gaps in the numbering MAY occur when an associated map entry is removed, including as a result of redaction.¶
If present, the localized versions of name, organization, postal address and email MUST be added to the "localizations" map. With reference to the definition of localization in [RFC9553], an RDAP response with JSContact content MUST expand all localizations (i.e. a nested PatchObject key like "{key1}/{key2}/.../{keyN}" is not allowed). The following is an elided example of an RDAP entity lookup response including a Card that includes localized version for name, organization and postal address (See PDF for non-ASCII character string).¶
...
"jscontact_card": {
"@type": "Card",
"version": "2.0",
"language": "en",
"name": {
"full": "Vasya Pupkin"
},
"organizations": {
"org": {
"name": "My Company"
}
},
"addresses": {
"addr": {
"components": [
{ "kind": "name", "value": "1 Street" },
{ "kind": "locality", "value": "Kyiv" }
],
"countryCode": "UA"
}
},
"localizations": {
"uk": {
"addresses": {
"addr": {
"components": [
{ "kind": "name", "value": "1, Улица" },
{ "kind": "locality", "value": "Київ" }
],
"countryCode": "UA"
}
},
"name": {
"full": "Вася Пупкін"
},
"organizations": {
"org": {
"name": "Моя Компанія"
}
}
}
}
}
...
The following entries define properties of the JSContact profile registered in the JSContact Profile registry as described in Section 6.4. Entry elements with empty values are omitted:¶
To be consistent with what is stated in Section 2.1 of [RFC9083], clients SHOULD ignore JSContact properties other than these.¶
The following is an example of an RDAP entity including a Card. For convenience, this example assumes that the initial Standards Track versions of the "versioning" and "jscontact" extensions use the Point Extension Version Identifiers "versioning-1.0" and "jscontact-1.0", respectively.¶
{
"rdapConformance": [
"rdap_level_0",
"jscontact",
"versioning"
],
"objectClassName": "entity",
"handle":"XXXX",
"jscontact_card":{
"@type": "Card",
"version": "2.0",
"name": {
"full": "Joe User",
"components": [
{ "kind": "given", "value": "Joe" },
{ "kind": "surname", "value": "User" }
]
},
"organizations": {
"org": {
"name": "Org Example"
}
},
"addresses": {
"addr": {
"components": [
{ "kind": "name", "value": "Main Street 1" },
{ "kind": "locality",
"value": "Ludwigshafen am Rhein" },
{ "kind": "region", "value": "Rhineland-Palatinate" },
{ "kind": "postcode", "value": "67067" },
{ "kind": "country", "value": "Germany" }
],
"countryCode": "DE"
},
"addr-1": {
"full": "Somewhere Street 1 Mutterstadt 67112 Germany"
}
},
"phones": {
"voice": {
"number": "tel:+49-1522-3433333"
},
"fax": {
"features": { "fax": true },
"number": "tel:+49-30-901820"
}
},
"emails": {
"email": {
"address": "joe.user@example.com"
}
},
"links": {
"url": {
"uri": "https://www.example.com"
},
"contact-uri": {
"kind": "contact",
"uri": "mailto:contact@example.com"
}
}
},
"roles":[ "registrar" ],
"publicIds":[
{
"type":"IANA Registrar ID",
"identifier":"1"
}
],
"links":[
{
"value":"https://example.com/entity/XXXX",
"rel":"self",
"href":"https://example.com/entity/XXXX",
"type" : "application/rdap+json"
}
],
"events":[
{
"eventAction":"registration",
"eventDate":"1990-12-31T23:59:59Z"
}
],
"asEventActor":[
{
"eventAction":"last changed",
"eventDate":"1991-12-31T23:59:59Z"
}
],
"versioning_data": [
{
"extension": "rdap_level_0",
"type": "opaque",
"version": "rdap_level_0"
},
{
"extension": "versioning",
"type": "point",
"version": "versioning-1.0"
},
{
"extension": "jscontact",
"type": "point",
"version": "jscontact-1.0"
}
]
}
The client MAY request the server to include the "jscontact_card" member in the RDAP response by using only one of the following HTTP elements:¶
the RDAP media type "versioning_list" parameter as defined in [I-D.ietf-regext-rdap-versioning];¶
the RDAP media type "exts_list" parameter as defined in [I-D.ietf-regext-rdap-x-media-type].¶
A client MUST NOT request JSContact using both mechanisms in the same request. If a server receives a request that uses both mechanisms, it MUST process the "versioning_list" parameter and MUST ignore the "exts_list" parameter for the purpose of selecting the contact representation.¶
Their usage in the transition from jCard to JSContact is further explained in Section 4.2.2.2.¶
The use of JSContact updates the mappings of two reverse search properties, namely "fn" and "email", defined in [RFC9536]. Such new mappings are registered in the Reverse Search Mapping registry as described in Section 6.3.¶
RDAP allows servers to communicate service information to clients through notices. According to Section 4.3 of [RFC9083], an RDAP response may contain one or more notice objects. Each notice may include a set of link objects, which can be used to provide clients with references. These link objects may have a "rel" member which defines the relationship between resources, as described in Section 4 of [RFC8288]. The transition process outlined in this document uses the "alternate" link relation type.¶
The information about the specifications used in the construction of the response is also described by the strings that appear in the "rdapConformance" array of the RDAP response.¶
The transition procedure consists of three contiguous stages. During the procedure, the presence of the string "jscontact" in the "rdapConformance" array indicates that JSContact is returned instead of jCard. The date and time format used to notify clients about the stages of this procedure is defined in [RFC3339].¶
The procedure described in this document aims to achieve the following goals:¶
This stage corresponds to providing jCard as the default contact card [RFC9083]. The RDAP server is not able to provide an alternate format for contacts. The "rdapConformance" array MUST NOT contain the string "jscontact".¶
During this stage, the server returns jCard by default, but the RDAP server will return JSContact if the client requests it through one of the methods described in Section 3.2. The "rdapConformance" array MUST contain the string "jscontact" if JSContact is returned.¶
From this stage onward, the RDAP server MUST include the string "jscontact" in the "rdapConformance" array of the help response to signal clients that JSContact can be returned instead of jCard.¶
If JSContact is not requested, the RDAP server SHOULD include a notice whose type member is set to "jCard sunset end". This notice contains a description that reports the jCard sunset end date and time, and an OPTIONAL link to the corresponding JSContact-based response requested via the method used by the client to negotiate extensions (Section 3.2). If neither method was used, the RDAP server includes links for both methods (Figure 3).¶
"notices": [
{
"type": "jCard sunset end",
"description": ["2030-12-31T23:59:59Z"],
"links": [
{
"value": "https://example.net/entity/XXXX",
"rel": "alternate",
"type":
"application/rdap+json;versioning_list=\"jscontact-0.4\"",
"href": "https://example.net/entity/XXXX"
},
{
"value": "https://example.net/entity/XXXX",
"rel": "alternate",
"type":
"application/rdap+json;exts_list=\"rdap_level_0 jscontact\"",
"href": "https://example.net/entity/XXXX"
}
]
}
]
This stage corresponds to providing JSContact as the default format for contact data. The "rdapConformance" array always contains the string "jscontact". Any request for JSContact made through a mechanism described in Section 3.2 MUST NOT affect representation selection; the server MUST return JSContact.¶
The RDAP server MUST include the string "noJcard" in the "rdapConformance" array of the help response to signal clients that jCard is no longer returned.¶
The RDAP server SHOULD also include a notice whose type member is set to "jCard deprecation" whose description reports the verbatim string "jCard has been deprecated" (Figure 4).¶
"notices": [
{
"type": "jCard deprecation",
"description": ["jCard has been deprecated"]
}
]
NOTE: Please remove this section and the reference to RFC 7942 prior to publication as an RFC.¶
This section records the status of known implementations of the protocol defined by this specification at the time of posting of this Internet-Draft, and is based on a proposal described in RFC 7942 [RFC7942]. The description of implementations in this section is intended to assist the IETF in its decision processes in progressing drafts to RFCs. Please note that the listing of any individual implementation here does not imply endorsement by the IETF. Furthermore, no effort has been spent to verify the information presented here that was supplied by IETF contributors. This is not intended as, and must not be construed to be, a catalog of available implementations or their features. Readers are advised to note that other implementations may exist.¶
According to RFC 7942, "this will allow reviewers and working groups to assign due consideration to documents that have the benefit of running code, which may serve as evidence of valuable experimentation and feedback that have made the implemented protocols more mature. It is up to the individual working groups to use this information as they see fit".¶
Responsible Organization: Institute of Informatics and Telematics of National Research Council (IIT-CNR)/Registro.it¶
Location: https://rdap.pubtest.nic.it/¶
Description: This implementation includes support for RDAP queries using data from the public test environment of .it ccTLD.¶
Level of Maturity: This is an "alpha" test implementation.¶
Coverage: This implementation includes all of the features described in this specification.¶
Contact Information: Mario Loffredo, mario.loffredo@iit.cnr.it¶
Responsible Organization: Institute of Informatics and Telematics of National Research Council (IIT-CNR)/Registro.it¶
Location: https://web-rdap.pubtest.nic.it/¶
Description: This is a JavaScript web-based RDAP client. RDAP responses are retrieved from RDAP servers by the browser, parsed into an HTML representation, and displayed in a format improving the user experience. RDAP responses containing JSContact objects are handled identically to those containing jCard objects. Raw versions of RDAP responses including either jCard or JSContact objects are provided.¶
Level of Maturity: This is an "alpha" test implementation.¶
Coverage: This implementation includes all of the features described in this specification.¶
Contact Information: Francesco Donini, francesco.donini@iit.cnr.it¶
Location: https://client.rdap.org/¶
Description: This is a web-based "single page" RDAP client. RDAP responses are retrieved from RDAP servers by the browser, and parsed into an HTML representation. RDAP responses containing JSContact objects are handled identically to those containing jCard objects.¶
Level of Maturity: This is an "alpha" test implementation.¶
Coverage: This implementation implements client support for parsing JSContact objects in RDAP responses.¶
Contact Information: Gavin Brown, feedback@rdap.org¶
Responsible Organization: CentralNic Group PLC¶
Location: https://rdap.centralnic.com/{tld}¶
Description: This server is the product RDAP service for all top-level domains on the CentralNic registry platform.¶
Level of Maturity: Production quality.¶
Coverage: This implementation includes all of the features described in this specification.¶
Contact Information: support@centralnic.com¶
Responsible Organization: ICANN¶
Location: https://github.com/icann/icann-rdap¶
Description: ICANN RDAP contains an RDAP client, server, and common libraries.¶
Level of Maturity: Mature.¶
Coverage: This implementation includes all the features described in this specification, except support for Point Versioning and the provision of reverse search mapping.¶
Contact Information: globalsupport@icann.org¶
IANA is requested to register the following values in the RDAP Extensions Registry [IANA.rdap-extensions]:¶
IANA is requested to add the following entries to the RDAP JSON Values Registry [IANA.rdap-json-values]. The registrations introduce the new Type values "JSContact version value" and "JSContact Id value".¶
IANA is requested to register the following entries in the RDAP Reverse Search Mapping Registry [IANA.rdap-reverse-search-mapping]:¶
IANA is requested to register the following entry in the "JSContact Profile" registry [I-D.ietf-calext-jscontact-profiles]:¶
This section describes operational considerations for deploying JSContact in RDAP, taking into account the request mechanisms defined in Section 3.2 and the transition approach described in Section 4.¶
As described in Section 3.2, clients can request the "jscontact_card" member using either the RDAP media type "versioning_list" or "exts_list" parameters.¶
Servers are expected to return a representation that is consistent with both the client request and the applicable transition stage defined in Section 4.2.2.¶
In particular, jCard is returned in Stage 1, jCard is the default in Stage 2 with JSContact available upon request, and JSContact is the only representation returned in Stage 3.¶
If a request for JSContact cannot be satisfied (e.g., due to unsupported or unknown extension parameters), the request is processed according to general RDAP behavior, and the default representation is returned.¶
The "rdapConformance" array provides an indication of the representation used, as described in Section 3.1.1 and Section 4.2.¶
Servers are expected to ensure that the presence or absence of the "jscontact" identifier accurately reflects the response content and is consistent across all endpoints, including help responses as required in Section 4.2.2.2 and Section 4.2.2.3.¶
JSContact and jCard represent the same information in different ways. As described in Appendix A, mapping between the two formats is not always structurally equivalent.¶
Operators should ensure that both representations are derived from a consistent data source and that the semantic meaning of the data is preserved, even when structural differences exist.¶
Particular attention may be needed for localized data (Section 3.1.13) and for the use of map keys (Section 3.1.12), to avoid inconsistencies.¶
As stated in Section 4.2.2.4, the duration of the transition is not fixed.¶
Operators are encouraged to monitor service usage (e.g., server logs) to assess client adoption of JSContact and to determine whether adjustments to the transition timeline are appropriate.¶
During Stage 2, different representations of the same RDAP resource can be returned depending on the RDAP media type parameters included in the Accept header field. Servers MUST therefore include "Accept" in the Vary response header field as defined in [RFC9110] when representation selection depends on that field.¶
Servers SHOULD ensure that the freshness lifetime of a cached response does not extend beyond the announced jCard sunset end date. If the caching infrastructure cannot reliably distinguish responses based on the Accept header field, servers SHOULD prevent their storage by using an appropriate Cache-Control directive, such as "no-store".¶
Error handling follows the general RDAP principles defined in [RFC9083] and the extension versioning behavior described in Section 3.2 of [I-D.ietf-regext-rdap-versioning] and Section 3 of [I-D.ietf-regext-rdap-x-media-type].¶
In particular, requests for unsupported or unknown extensions or extension versions do not result in an error response and are instead ignored.¶
If a request for JSContact cannot be satisfied, the server behavior is determined by the applicable transition stage defined in Section 4.2.2. In Stage 2, the server returns the default representation (jCard), while in Stage 3 JSContact is always returned.¶
More generally, when extension negotiation does not succeed, servers may return the default representation in accordance with RDAP specifications.¶
Interoperability issues may arise during the transition due to differences in client support for request mechanisms (Section 3.2) or interpretation of rdapConformance signaling and notices (Section 4.1).¶
Testing with multiple client implementations can help identify and mitigate such issues.¶
The transition procedure described in Section 4.2 allows servers and clients to evolve independently.¶
Operators may adjust deployment strategies, including the duration of transition stages, based on operational experience and client behavior.¶
In vCard, and consequently in jCard, the FN property is mandatory. In contrast, JSContact does not require a Card to contain the "name" property or other properties containing personally identifiable information. In addition, JSContact version 2.0 [RFC9982] makes the "uid" property optional. Consequently, the Removal Method defined in [RFC9537] can be used to redact such properties from an RDAP JSContact Card.¶
The security considerations of [RFC9083], [RFC9553], and the extension negotiation mechanisms referenced in Section 3.2 apply.¶
During Stage 2, servers can produce different representations of the same contact information. Servers MUST apply equivalent access control, redaction, and data-release policies to the jCard and JSContact representations. Failure to do so could disclose information that is protected in the other representation.¶
Servers and intermediaries MUST follow the caching requirements in Section 7.5 to prevent a representation selected for one request from being returned in response to a request with different negotiation parameters. Implementations should also impose appropriate limits on the size and complexity of JSContact objects and expanded localizations.¶
The authors would like to acknowledge the following individuals for their contributions to this document: Jasdip Singh, Andrew Newton, Marc Blanchet, Rick Wilhelm, Pawel Kowalik and Francesco Donini.¶
Provided that the keys defined in Section 3.1.12 are used for the JSContact maps, the mapping between the most commonly used jCard properties in an RDAP response and their JSContact counterparts is shown in the following. The mapping is done through the use of JSONPath expressions [RFC9535].¶
For simplicity, the JSONPath expressions for the jCard "tel" property assume that its "type" parameter has a single value, which is expected to be the most common case in RDAP responses. A jCard "tel" property with a multi-valued "type" parameter is valid but is not covered by these expressions.¶
Some JSONPath expressions are folded to satisfy the line-length limitations of this document. The single backslash convention defined in [RFC8792] is used.¶
NOTE: '\' line wrapping per RFC 8792.¶
$..jscontact_card.name.components[?(@.kind=='surname')]\¶
.value¶
$..jscontact_card.localizations.*.name.components\¶
[?(@.kind=='surname')].value¶
$..jscontact_card.name.components[?(@.kind=='given')]\¶
.value¶
$..jscontact_card.localizations.*.name.components\¶
[?(@.kind=='given')].value¶
$..jscontact_card.localizations.*.organizations\¶
.org.name¶
$..jscontact_card.localizations.*.emails.email\¶
.address¶
$..jscontact_card.localizations.*.addresses.addr\¶
.full¶
$..jscontact_card.addresses.addr.components\¶
[?(@.kind=='name')].value¶
$..jscontact_card.localizations.*.addresses.addr\¶
.components[?(@.kind=='name')].value¶
$..jscontact_card.addresses.addr.components\¶
[?(@.kind=='locality')].value¶
$..jscontact_card.localizations.*.addresses.addr\¶
.components[?(@.kind=='locality')].value¶
$..jscontact_card.addresses.addr.components\¶
[?(@.kind=='region')].value¶
$..jscontact_card.localizations.*.addresses.addr\¶
.components[?(@.kind=='region')].value¶
$..jscontact_card.addresses.addr.components\¶
[?(@.kind=='postcode')].value¶
$..jscontact_card.localizations.*.addresses.addr\¶
.components[?(@.kind=='postcode')].value¶
$..jscontact_card.addresses.addr.components\¶
[?(@.kind=='country')].value¶
$..jscontact_card.localizations.*.addresses.addr\¶
.components[?(@.kind=='country')].value¶
$..jscontact_card.localizations.*.addresses.addr\¶
.countryCode¶
Changed category from "Best Current Practice" to "Standards Track"¶
Changed the title of the "Migration from JCard to JSCard" section to "Transition Considerations"¶
Added "Query Parameters" section.¶
Rearranged the description of stage 1 in Section 4.2.2¶
Changed the names of the transition stages 1 and 2¶
Corrected examples¶
Changed the rdapConformance tag "jscard_level_0" to "jscard"¶
Removed the "Best Practices for deprecating a REST API features" section, but added a useful reference.¶
Removed the sentence "which cannot be represented using jCard" in Section 1.1.¶
Updated the reference draft-dalal-deprecation-header to draft-ietf-httpapi-deprecation-header.¶
Ported from draft-loffredo-regext-rdap-jcard-deprecation-04 renamed to draft-ietf-regext-rdap-jscontact-00.¶
Changed the references to Internet Drafts.¶
Added an example showing how localizations are treated in JSContact.¶
Changed the position of section "Goals" in Section 4.2.¶
Changed the rdapConformance tag "jscard" to "jscard_0"¶
Added clarifications addressing the feedback provided by Jasdip Singh about version -03.¶
Added Section 10.¶
Other minor edits.¶
Reviewed the notices presented in stages.¶
Updated the references to JSContact drafts due to the transfer from JMAP to CalExt.¶
Added Appendix "jCard-JSContact Mapping".¶
Renamed the "jscard" property to "jscard_0".¶
Corrected JSONPath expressions in Appendix A.¶
Corrected Figure 1, Figure 2 and Appendix A to make them compliant with draft-ietf-calext-jscontact-06.¶
Removed mention of JSContact CardGroup object.¶
Added Section 6.2.¶
Fixed Figure 1, Figure 2, Section 6.3 and Appendix A to make them compliant with draft-ietf-calext-jscontact-16 and purge them of the JSContact properties which are hardly used in RDAP.¶
Added other mapping correspondences to Appendix A.¶
Updated references.¶
Updated Gavin Brown's contact info.¶
Removed from the notices field the optional link documenting the transition procedure.¶
Added a reference to RFC9553 section defining the Id type.¶
Tagged all BCP14 keywords.¶
Changed the example in Figure 2.¶
Added Section 3.1.6.¶
Changed Section 4.2.2.4 by removing the sentence about the duration of the transition process.¶
Turned the draft status into "Experimental".¶
Changed "@version" to "version" in the examples.¶
Rearranged the content of the "Query Parameters" section and renamed it into "Request for JSContact".¶
Added Section 3.1.2.¶
Added Section 3.2.¶
Rearranged Section 4.1.¶
Removed from Section 4.2.2.3 the "FOR DISCUSSION" item.¶
Added to Section 4.2.2.3 a notice signaling the jCard deprecation.¶
Removed an informative reference and the first paragraph of Section 4.2 including it.¶
Renamed the "jscard" extension identifier into "jscontact".¶
Renamed the "jscard" property into "jscontact_card".¶
Replaced any instance of the verbatim string "JSCard" with "JSContact".¶
Rephrased Section 3.1.3 by removing "1.0" as a mandatory value for the JSContact version property in RDAP and adding the value to the "RDAP JSON Values" registry.¶
Minor editorial changes.¶
Changed JSContact version "1.0" to "2.0".¶
Removed any reference to the JSContact uid property.¶
Removed JSContact properties from examples that are not included in the RDAP profile for JSContact.¶
Added a section about the registration of the JSContact profile for RDAP.¶
Added ips and autnums to the searchable resource types of Section 6.3.¶
Minor editorial changes.¶
Revised the "Experimental Status" section.¶
Revised the registration of the JSContact profile for RDAP. Added a section that formally lists the profile properties.¶
Added the handling and registration of noJcard extension identifier.¶
Changed the notice used in the transition process by changing the "title" property into "type" and registered the values in the "RDAP JSON Values" registry.¶
Changed the naming scheme for map keys other than those predefined and clarified that those keys should be stable.¶
Revised the "Security Considerations" section and renamed it into "Privacy Considerations". Added a "Security Considerations" section presenting no substantial implication on security.¶
Updated the "Acknowledgements" section.¶
Minor editorial changes.¶
Added "country" to the allowable values listed in Section 3.1.8 for the "kind" property of the AddressComponent object.¶
Aligned content of Section 3.1.2 to version -06 of [I-D.ietf-regext-rdap-versioning].¶
Added Section 7 for compliance with [I-D.ietf-opsawg-rfc5706bis]¶
Corrected nits.¶
Updated the JSContact 2.0 reference from [I-D.ietf-calext-jscontact-uid] to [RFC9982].¶
Moved [I-D.ietf-opsawg-rfc5706bis] from the Normative References to the Informative References.¶
Revised Section 3.1.1 to prohibit the simultaneous use of "jscontact_card" and "vcardArray" and to require a consistent contact representation within an RDAP response.¶
Revised Section 3.1.2 to define Point Versioning for the extension, including the "jscontact-0.4" Point Extension Version Identifier and its replacement with "jscontact-1.0" upon publication.¶
Updated Section 3.1.3 to require the Card "version" member to have the value "2.0".¶
Revised Section 3.1.5 to clarify the condition for setting the Card "language" member.¶
Corrected the text of Section 3.1.7.¶
Revised Section 3.1.12 to allow gaps in map-key numbering when an associated map entry is removed, including as a result of redaction.¶
Replaced the table in Section 3.1.14 with a list of the properties of the JSContact profile for RDAP.¶
Updated Figure 2 to include "versioning_data" and the Point Versioning information for the "versioning" and "jscontact" extensions.¶
Revised Section 3.2 to prohibit clients from requesting JSContact using both negotiation mechanisms in the same request and to define server behavior when both mechanisms are used.¶
Clarified in Section 4.2.2.3 that a JSContact request received during Stage 3 does not affect representation selection and that the server always returns JSContact.¶
Rearranged the IANA registrations in Section 6.3 by separating the reverse-search mappings for non-localized and localized "fn" and "email" properties.¶
Corrected the field names and reference of the JSContact profile registration in Section 6.4.¶
Revised the JSONPath expressions in Appendix A, including the paths for localized JSContact properties and the filters for jCard "tel" properties.¶
Removed from Appendix A the mapping of the jCard "post office box" address component, which is not included in the JSContact profile for RDAP.¶
Revised Section 7.5 to define caching requirements for representation selection based on the Accept header field, including the use of the Vary response header field and Cache-Control directives.¶
Revised Section 8 to clarify how the optionality of JSContact properties allows personally identifiable information to be redacted using the Removal Method.¶
Revised Section 9 to add security considerations concerning access control, redaction, data release, caching, and resource limits for JSContact representations.¶
Removed a duplicated change-log entry and corrected the numbering of the subsequent entries.¶
Made minor editorial corrections.¶