Internet-Draft | jscontact-vcard | July 2023 |
Loffredo & Stepanek | Expires 4 January 2024 | [Page] |
This document defines how to convert contact information between the JSContact and vCard data formats. To achieve this, it updates RFC I-D.ietf-calext-jscontact (JSContact) by registering new JSContact properties. Similarly, it updates RFC 6350 (vCard) by registering new vCard properties and parameters.¶
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 4 January 2024.¶
Copyright (c) 2023 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 may contain material from IETF Documents or IETF Contributions published or made publicly available before November 10, 2008. The person(s) controlling the copyright in some of this material may not have granted the IETF Trust the right to allow modifications of such material outside the IETF Standards Process. Without obtaining an adequate license from the person(s) controlling the copyright in such materials, this document may not be modified outside the IETF Standards Process, and derivative works of it may not be created outside the IETF Standards Process, except to format it for publication as an RFC or to translate it into languages other than English.¶
The JSContact data model and format [I-D.ietf-calext-jscontact] aims to be an alternative to the widely used vCard [RFC6350] standard and jCard [RFC7095].¶
While applications might prefer JSContact to exchange contact card data with other systems, they are likely to interoperate with services and clients that only support vCard or jCard. Similarly, existing contact data providers and consumers already using vCard or jCard might want to represent their contact data also in JSContact.¶
To achieve this, this document defines standard rules to convert contact data between JSContact and vCard (and consequently jCard).¶
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.¶
This section contains the conversion rules from vCard to JSContact Card. It follows the same structure as the vCard v4 [RFC6350]. Properties and parameters of vCard extension RFCs, including the vCard JSContact Extension [I-D.ietf-calext-vcard-jscontact-extensions] are added to appropriate subsections.¶
uid
property
The UID property in vCard is optional, but the uid
property in JSContact is mandatory. Implementations that convert a vCard without UID property MUST generate a unique identifier as a value for the uid
property. This value SHOULD be the same when converting the same vCard multiple times, but how to achieve this is implementation-specific.¶
Multivalued properties in JSContact typically are represented as a JSON object where the object keys are of the Id
type and the object values are the converted vCard property. In absence of the PROP-ID parameter (see Section 2.3.16), implementations are free to choose any identifier for such entries. Whatever identifier generation scheme implementations use, they MUST generate values that are valid according to the definition of the Id
type in [I-D.ietf-calext-jscontact]. For example, this could be an incrementing number across all Id
s or only unique within one JSON object.¶
This converts to the JSContact Boolean
type.¶
The TIMESTAMP type generally converts to the UTCDateTime
. It converts to the Timestamp
type for anniversaries.¶
The DATE type converts to the PartialDate
type, which only is relevant for anniversaries. This does not apply to DATE values that only define a month or a day.¶
The TIME, DATE-TIME, DATE-AND-OR-TIME types and DATE type values that only define a month or day do not convert to a JSContact datetime type. Instead, vCard properties or parameters having such values convert to the properties defined in Section 2.15.¶
This converts to the JSContact Int
and UnsignedInt
types.¶
This converts to the JSContact Number
type.¶
This converts to the JSContact String
type.¶
This converts to the JSContact String
type.¶
This converts to the JSContact String
type.¶
This either converts to a String
containing an IANA TimeZone Database entry name (see Section 2.8.2), or it does not convert to any JSContact type. For the latter, vCard properties or parameters having such values MAY convert to JSContact as defined in Section 2.15.¶
This section contains the conversion rules for vCard parameters. A rule typically only applies for specific vCard properties. To convert a vCard parameter on an arbitrary vCard property, see Section 2.15.2.¶
This does not convert to an IANA-registered property in JSContact, but several conversion rules make use of this parameter to combine multiple vCard properties into a single JSContact object instance. For an example of this see Section 2.6.1. To preserve the verbatim value of the ALTID parameter, set the JSContact properties defined in Section 2.15.¶
This parameter set on a BDAY, DEATHDATE or ANNIVERSARY property converts to the calendarScale
property of the PartialDate
object type.¶
The CREATED parameter value of a vCard NOTE property converts to the created
property of the Note object.¶
Note: This parameter is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
If this parameter is set to true
on a vCard property, then implementations MAY choose to not convert that property. Note: This parameter is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
This parameter set on an N or ADR property converts to the defaultSeparator
and components
properties of the Name and Address object types, respectively.¶
If the first FMT parameter value is a separator formatting instruction (possibly having the empty string as separator), then this separator value converts to the value defaultSeparator
property. Otherwise, the defaultSeparator
property is not set.¶
The remaining formatting instructions define the order and kind of the components
property entries. The kind of a NameComponent or AddressComponent is determined by the type of the name or address component at the position of the positional formatting instruction, the separator formatting instruction converts to a component of kind separator
.¶
In absence of the FMT parameter, implementations MUST convert all property component values of the N or ADR property in the Name or Address components, but their order is implementation-specific.¶
This parameter set on an ADR property converts to the JSContact coordinates
property of the Address
object that represents the vCard ADR.¶
This parameter exclusively is for use in jCard (see Section 7.1 of [RFC7095]). It MUST NOT be set in a vCard. Preserving the exact group name when converting from vCard to JSContact and back to vCard is not necessary. Any group identifiers will do, as long as the resulting vCard groups its properties equally to the original vCard. Implementations that still wish to preserve the exact property group name of a vCard property MAY set the group
parameter in the JSContact properties vCardProps
or vCardParams
defined in Section 2.15.¶
item1.TEL;VALUE=uri:tel:+1-555-555-5555 "phones": { "p1": { "number": "tel:+1-555-555-5555", "vCardParams" : { "group" : "item1" } } }
vCardParams
during conversion.
item2.X-FOO:bar "vCardProps": [ ["x-foo", { "group": "item2" }, "unknown", "bar"] ]
vCardProps
during conversion.
This parameter set on the EXPERTISE, HOBBY, INTEREST and ORG-DIRECTORY properties defined in [RFC6715] converts to the JSContact listAs
property of the PersonalInfo
and Directory
objects.¶
This converts to an entry in the localizations
property for the vCard property that this parameter is set on. The value of the LANGUAGE parameter defines the language tag key in the localizations
property.¶
This specification does not define a single standard conversion rule for how to convert the property values. Instead, building the localizations value is implementation-specific.¶
Two options to populate the localizations property are:¶
Generally, localizations only localize properties that are present in the non-localized version of this Card. Figure 3 illustrates this.¶
FN;LANGUAGE=EN:John Doe TITLE;LANGUAGE=EN:Boss TITLE;LANGUAGE=fr:Patron "language": "en", "name": { "full": "John Doe" }, "titles": { "t1": { "name": "Boss" } }, "localizations": { "fr": { "titles/t1/name": "Patron" } }
As a special case, if one or more vCard properties of the same type do not have the LANGUAGE parameter set, then choose them to the non-localized Card. Convert any with LANGUAGE parameters to the localizations property. Figure 4 illustrates this.¶
FN:John Doe TITLE:Boss TITLE;LANGUAGE=fr:Patron "name": { "full": "John Doe" }, "titles": { "t1": { "name": "Boss" } }, "localizations": { "fr": { "titles/t1/name": "Patron" } }
As the least preferred option, Figure 5 illustrates how all vCard properties of the same type have the LANGUAGE parameter set, but none of their language tags match the language of the main Card. In this case, implementations MAY choose to add the localized vCard properties only to the localizations object.¶
The following example uses non-ASCII characters to demonstrate multilingual content. The ASCII-formatted version of this specification might not show the correct characters. Please refer to the HTML or PDF versions instead.¶
DEFLANGUAGE:es FN:Gabriel García Márquez TITLE;LANGUAGE=en:Boss TITLE;LANGUAGE=fr:Patron "language": "es", "name" { "full": "Gabriel García Márquez" }, "localizations": { "en": { "titles": { "t1": { "name": "Novelist" } }, "fr": { "titles": { "t1": { "name": "Écrivain" } } }
The LEVEL parameter as defined in [RFC6715] is directly converted to the level
property of the PersonalInfo
type apart from when LEVEL is used in the EXPERTISE property; in this case, the values convert as in the following:¶
This converts to an entry in the vCardParams
property, see Section 2.15.2.¶
The PROP-ID parameter value of a vCard property converts to the Id
of the JSContact property to which the vCard property converts.¶
TEL;PROP-ID=PHONE-A;VALUE=uri;PREF=1;TYPE="voice,home" :tel:+1-555-555-5555;ext=5555 TEL;PROP-ID=PHONE-B;VALUE=uri;TYPE=home :tel:+33-01-23-45-67 "phones": { "PHONE-A": { "contexts": { "private": true }, "features": { "voice": true }, "number": "tel:+1-555-555-5555;ext=5555", "pref": 1 }, "PHONE-B": { "contexts": { "private": true }, "number": "tel:+33-01-23-45-67" } }
Note: This parameter is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
This converts to the service
property of the OnlineService
object type. Note: This parameter is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
This converts to the sortAs
properties defined for the Name
, Organization
and OrgUnit
object types.¶
This converts to the contexts
property as well as property-specific kind
property values defined in later sections. If not specified otherwise for a specific JSContact property, the vCard home
and work
parameter values convert to the JSContact private
and work
contexts, respectively.¶
This parameter set on an ADR property converts to the JSContact timeZone
property of the Address
object that represents the vCard ADR. Also see the conversion of the TZ property in Section 2.8.2.¶
This converts to the user
property of the OnlineService
object type. Note: This parameter is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
This does not convert to an IANA-registered property in JSContact. To preserve properties with experimental values, see Section 2.15.2 and Section 2.15.1.¶
These do not convert to IANA-registered properties in JSContact.¶
The KIND property converts to the kind
property (Figure 7). Allowed values are those described in Section 6.1.4 of [RFC6350] and extended with the values declared in [RFC6473] and [RFC6869].¶
KIND:individual "kind": "individual"
A SOURCE property converts to an entry in the directories
property (Figure 8). The entry value is a Directory
object whose kind
property is set to entry
and uri
property is set to the SOURCE value.¶
The PREF and MEDIATYPE parameters convert according to the rules as defined in Section 2.3.¶
SOURCE:https://dir.example.com/addrbook/jdoe/Jean%20Dupont.vcf "directories": { "ENTRY-1": { "kind": "entry", "uri": "https://dir.example.com/addrbook/jdoe/Jean%20Dupont.vcf" } }
This converts to an entry in the vCardProps
property, see Section 2.15.1.¶
The BDAY and ANNIVERSARY properties and the extensions BIRTHPLACE, DEATHDATE, DEATHPLACE described in [RFC6474] are represented as Anniversary
objects included in the anniversaries
property (Figure 9):¶
BDAY and BIRTHPLACE convert to date
and place
where kind
is set to "birth";¶
DEATHDATE and DEATHPLACE convert to date
and place
where kind
is set to "death";¶
date
where kind
is "wedding".¶
Both birth and death places are represented as instances of the Address
object.¶
The BIRTHPLACE and DEATHPLACE properties that are represented as geo URIs convert to Address
instances including only the coordinates
property. If the URI value is not a geo URI, the place is ignored.¶
The ALTID and LANGUAGE parameters of both BIRTHPLACE and DEATHPLACE properties convert according to the rules as defined in Section 2.3.¶
BDAY:19531015T231000Z BIRTHPLACE: 123 Main Street\nAny Town, CA 91921-1234\nU.S.A. DEATHDATE:19960415 DEATHPLACE: 5 Court Street\nNew England, ND 58647\nU.S.A. ANNIVERSARY:19860201 "anniversaries": { "ANNIVERSARY-1" : { "kind": "birth", "date": { "@type": "Timestamp", "utc": "1953-10-15T23:10:00Z" }, "place": { "full": "123 Main Street\nAny Town, CA 91921-1234\nU.S.A." } }, "ANNIVERSARY-2" : { "kind": "death", "date": { "year": 1996, "month": 4, "year": 15 }, "place": { "full": "5 Court Street\nNew England, ND 58647\nU.S.A." } }, "ANNIVERSARY-3" : { "kind": "wedding", "date": { "year": 1986, "month": 2, "day": 1 } } }
This does not map to an IANA-registered property in JSContact. To convert this property, see Section 2.15.1. Note the alternative JSContact speakToAs
property which defines how to address and refer to an individual represented by the card, as do the newly defined vCard GRAMGENDER and PRONOUNS properties of [I-D.ietf-calext-vcard-jscontact-extensions].¶
The GRAMGENDER property converts to the grammaticalGender
property of the SpeakToAs
object (Figure 10).¶
The PRONOUNS property converts to an entry in the pronouns
property of the SpeakToAs
object (Figure 10).¶
GRAMGENDER:NEUTER PRONOUNS;PREF=2:they/them PRONOUNS;PREF=1:xe/xir "speakToAs": { "grammaticalGender": "neuter", "pronouns": { "PRONOUNS-1": { "pronouns": "they/them", "pref": 2 }, "PRONOUNS-2": { "pronouns": "xe/xir", "pref": 1 } } }
All the FN instances are represented through the Name object full
property (Figure 11). The presence of multiple instances is implicitly associated with the full name translation in various languages regardless of the presence of the ALTID parameter. Each translation converts according to the rules as defined in Section 2.3.¶
The N instances convert to equivalent items of the components
array of the name
property (Figure 11): the N components convert into related NameComponent
objects as presented in Table 1.¶
The order of entries in the components
property is defined by the FMT (Section 2.3.7) parameter.¶
Each comma-separated item of the SORT-AS parameter value converts to an entry of the sortAs
property where the key is the "kind" value related to the sorted N component and the value is the corresponding item. Absence of a key in the sortAs
indicates that its related part in the SORT-AS parameter value MUST either the empty string followed by COMMA, or no further SORT-AS parts are defined.¶
N component | "kind" value | Remarks |
---|---|---|
Honorific Prefixes | title | |
Given Names | given | |
Family Names | surname, surname2 | The first Family Names item converts to the "surname" NameComponent kind, any additional items to the "surname2" kind. |
Additional Names | middle | |
Honorific Suffixes | credential, generation | vCard does not distinguish between generation qualifiers (such as "Jr.") and credentials (such as "Esq."). Distinguishing these is language-specific and left to implementations. For example, United States names uses generational qualifiers such as "Jr.", "Sr.", French uses "père" (father) and "fils" (son). Roman numerals such as "III" and "XIV" typically also are generational qualifiers. |
A NICKNAME property converts to an entry in the nickNames
property (Figure 11). The entry value is a NickName
object. The name
property is set to the NICKNAME value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
FN:John Q. Public, Esq. N;SORT-AS="Public,John":Public;John;Quinlan;Mr.;Esq. NICKNAME:Johnny "name": { "full": "Mr. John Q. Public, Esq.", "components":[ { "kind": "title", "value": "Mr." }, { "kind": "given", "value": "John Q." }, { "kind": "surname", "value": "Public" }, { "kind": "middle", "value": "Quinlan" }, { "kind": "credential", "value": "Esq." } ], "sortAs": { "surname": "Public", "given": "John" } }, "nickNames": { "NICK-1": { "name": "Johnny" } }
A PHOTO property converts to an entry in the media
property (Figure 12). The entry value is a Media
object whose kind
property is set to photo
and uri
property is set to the PHOTO value.¶
The PREF and MEDIATYPE parameters convert according to the rules as defined in Section 2.3.¶
PHOTO:https://www.example.com/pub/photos/jqpublic.gif "media": { "PHOTO-1": { "kind": "photo", "uri": "https://www.example.com/pub/photos/jqpublic.gif" } }
An ADR property converts to an entry in the addresses
property (Figure 13). The entry value is an Address
object. The components of the structured ADR value type convert to AddressComponent objects.¶
The order of entries in the components
property is defined by the FMT (Section 2.3.7) parameter.¶
[I-D.ietf-calext-vcard-jscontact-extensions] defines additional components of the ADR property value, originally defined in Section 6.3.1 of [RFC6350]. Applications SHOULD prefer converting these new address components over any entries in the ADR "street address" and "extended address" components. If only the original address components defined in [RFC6350] are available, then implementations SHOULD attempt to split the values of the "street address" and "extended address" components into their constituent parts. Otherwise, they MUST convert all of "street address" to AddressComponent kind name
, and "extended address" to AddressComponent kind "apartment".¶
ADR component | Single AddressComponent | Combination of AddressComponent | Remarks |
---|---|---|---|
post office box | postOfficeBox | Section 6.3.1 of [RFC6350] recommends this ADR component to be empty. | |
extended address | apartment | apartment, building, floor, room | Section 6.3.1 of [RFC6350] recommends this ADR component to be empty. |
street address | name | name, district, subdistrict, block, name, number, landmark, direction, apartment, building, floor, room | |
locality | locality | ||
region | region | ||
postal code | postalCode | ||
apartment | apartment | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. Prefer this over the extended address ADR component. | |
block | block | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. | |
building | building | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. | |
direction | direction | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. | |
district | district | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. | |
floor | floor | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. Prefer this over the extended address ADR component. | |
landmark | landmark | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. | |
room | room | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. Prefer this over the extended address ADR component. | |
street number | number | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. | |
subdistrict | subdistrict | Defined in [I-D.ietf-calext-vcard-jscontact-extensions]. |
The LABEL parameter converts to the full
property.¶
The GEO parameter converts to the coordinates
property.¶
The TZ parameter converts to the timeZone
property.¶
The CC parameter as defined in [RFC8605] converts to the countryCode
property.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3. The ADR-specific values of the TYPE parameter defined in Sections 5.1 and 5.2 of [I-D.ietf-calext-vcard-jscontact-extensions] convert to the corresponding entries of the contexts
property as defined in Section 2.5.1 of [I-D.ietf-calext-jscontact].¶
The ALTID and LANGUAGE parameters convert according to the rules as defined in Section 2.3. Each possible language-dependent alternative is represented as an entry of the PatchObject map where the key references the full
property.¶
ADR;TYPE=work;CC=US:;;54321 Oak St;Reston;VA;20190;USA ADR;TYPE=home;CC=US:;;12345 Elm St;Reston;VA;20190;USA "addresses": { "ADDR-1" : { "contexts": { "work": true }, "full": "54321 Oak St\nReston\nVA\n20190\nUSA", "components": [ { "kind": "number", "value": "54321" }, { "kind": "separator", "value": " " }, { "kind": "name", "value": "Oak St" }, { "kind": "locality", "value": "Reston" }, { "kind": "region", "value": "VA" }, { "kind": "postcode", "value": "20190" }, { "kind": "country", "value": "USA" } ], "countryCode": "US", "defaultSeparator": "\n" }, "ADDR-2": { "contexts": { "private": true }, "full": "12345 Elm St Reston VA 20190 USA", "components": [ { "kind": "number", "value": "12345" }, { "kind": "name", "value": "Elm St" }, { "kind": "locality", "value": "Reston" }, { "kind": "region", "value": "VA" }, { "kind": "postcode", "value": "20190" }, { "kind": "country", "value": "USA" } ], "countryCode": "US", "defaultSeparator": " " } }
An EMAIL property converts to an entry in the emails
property (Figure 14). The entry value is an EmailAddress
object. The address
property is set to the EMAIL value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
EMAIL;TYPE=work:jqpublic@xyz.example.com EMAIL;PREF=1:jane_doe@example.com "emails": { "EMAIL-1": { "contexts": { "work": true }, "address": "jqpublic@xyz.example.com" }, "EMAIL-2": { "address": "jane_doe@example.com", "pref": 1 } }
An IMPP property converts to an entry in the onlineServices
property (Figure 15). The entry value is an OnlineService
object. The vCardName
property is set to "impp" and the uri
property is set to the IMPP value.¶
The SERVICE-TYPE, USERNAME, PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
IMPP;PREF=1:xmpp:alice@example.com "onlineServices": { "OS-1": { "uri": "xmpp:alice@example.com", "pref": 1, "vCardName": "impp" } }
A LANG property converts to an entry in the preferredLanguages
property (Figure 16). The entry keys correspond to the language tags, the related entry values are arrays of LanguagePref
objects.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
If both PREF and TYPE parameters are missing, the array of LanguagePref
objects MUST be empty.¶
LANG;TYPE=work;PREF=1:en LANG;TYPE=work;PREF=2:fr LANG;TYPE=home:fr "preferredLanguages": { "en":[ { "contexts": { "work": true }, "pref": 1 } ], "fr":[ { "contexts": { "work": true }, "pref": 2 }, { "contexts": { "private": true } } ] }
The DEFLANGUAGE property converts to the language
property (Figure 17).¶
DEFLANGUAGE:de-AT "language": "de-AT"
Note: This property is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
A TEL property converts to an entry in the phones
property (Figure 19). The entry value is a Phone
object. The TEL-specific values of the TYPE parameter convert to the features
property keys: the vCard cell
parameter value converts to the JSContact mobile
phone feature, the other parameter values convert to analogous phone features. The number
property is set to the TEL value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
TEL;VALUE=uri;PREF=1;TYPE="voice,home":tel:+1-555-555-5555;ext=5555 TEL;VALUE=uri;TYPE=home:tel:+33-01-23-45-67 "phones": { "PHONE-1": { "contexts": { "private": true }, "features": { "voice": true }, "number": "tel:+1-555-555-5555;ext=5555", "pref": 1 }, "PHONE-2": { "contexts": { "private": true }, "number": "tel:+33-01-23-45-67" } }
This converts to the coordinates
property of the Address
object. Also see Section 2.8.3 to determine which Address
object instance to convert to.¶
A value of type TEXT converts to the timeZone
property in the Address
object.¶
A value of type UTC-OFFSET converts to the timeZone
property in the Address
object if the offset has zero minutes and the hour offset is in the range -12 <= 14:¶
Etc/UTC
.¶
Etc/GMT
suffixed with the string representation of the reversed sign hour offset, including the sign but excluding leading zeros and minutes. For example, the UTC offset value -0500
converts to Etc/GMT+5
.¶
For such property values, also see Section 2.8.3 to determine which Address
object instance to convert to.¶
Any other value of type UTC-OFFSET or URI does not convert to an IANA-registered property in JSContact. To convert such property, see Section 2.15.1.¶
In vCard the properties ADR, GEO and TZ occur independently of each other. In JSContact, they all convert to properties of an Address
object. It is implementation-specific if these vCard properties convert to separate address instances in JSContact, or if some or all of them convert to the same address. That being said, implementations MUST convert the properties to the same address for the following cases:¶
A CONTACT-URI property as defined in [RFC8605] is represented as an entry of the links
property (Figure 20). The entry value is a Link
object whose kind
property is set to contact
and uri
property is set to the CONTACT-URI value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
CONTACT-URI;PREF=1:mailto:contact@example.com "links": { "CONTACT-1": { "kind": "contact", "uri": "mailto:contact@example.com", "pref": 1 } }
A LOGO property converts to an entry in the media
property (Figure 21). The entry value is a Media
object whose kind
property is set to logo
and uri
property is set to the LOGO value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
LOGO:https://www.example.com/pub/logos/abccorp.jpg "media": { "LOGO-1": { "kind": "logo", "uri": "https://www.example.com/pub/logos/abccorp.jpg" } }
The uids of the contact cards composing the group are included in the members
property (Figure 22).¶
In this case, the PREF parameter does not have a JSContact counterpart; however, the implementors MAY insert the map entries by order of preference.¶
KIND:group FN:The Doe family MEMBER:urn:uuid:03a0e51f-d1aa-4385-8a53-e29025acd8af MEMBER:urn:uuid:b8767877-b4a1-4c70-9acc-505d3819e519 "kind": "group", "name": { "full": "The Doe family" }, "uid": "urn:uuid:ab4310aa-fa43-11e9-8f0b-362b9e155667", "members": { "urn:uuid:03a0e51f-d1aa-4385-8a53-e29025acd8af": true, "urn:uuid:b8767877-b4a1-4c70-9acc-505d3819e519": true }
An ORG property converts to an entry in the organizations
property (Figure 23). The entry value is an Organization
object whose name
property contains the organizational name, and the units
property is an array of OrgUnit
objects each containing the organizational unit name in the name
property.¶
Implementations MAY allow representation of organizational units without the organizational name. In this case, the first component of the ORG value MUST be an empty string (e.g., ORG:;DepartmentA).¶
The ALTID, LANGUAGE parameters convert according to the rules as defined in Section 2.3.¶
The first item of the comma-separated SORT-AS parameter value converts to the sortAs
property of the Organization
object. The subsequent items convert to the sortAs
property of the corresponding OrgUnit
object.¶
The TYPE parameter converts according to the rules as defined in Section 2.3.¶
ORG;SORT-AS="ABC":ABC\, Inc.;North American Division;Marketing "organizations": { "ORG-1": { "name": "ABC, Inc.", "units":[ { "name": "North American Division" }, { "name": "Marketing" } ], "sortAs": "ABC" } }
Both TITLE and ROLE properties are represented as entries of the titles
property (Figure 25). The entry value is a Title
object whose kind
property is set to title
or role
for TITLE and ROLE vCard properties, respectively. The name
property is set to the vCard property value.¶
The value of the organization
property can be derived if the TITLE or ROLE property is member of a vCard property group and exactly one other ORG property also is part of that group.¶
The ALTID and LANGUAGE parameters convert according to the rules as defined in Section 2.3.¶
TITLE:Research Scientist group1.ROLE:Project Leader group1.ORG:ABC, Inc. "titles": { "TITLE-1": { "kind": "title", "name": "Project Leader" }, "TITLE-2": { "kind": "role", "name": "Research Scientist", "organization": "ORG-1" } }, "organizations": { "ORG-1": { "name": "ABC, Inc." } }
An EXPERTISE property as defined in [RFC6715] is represented as a PersonalInfo
object in the personalInfo
property (Figure 26). The kind
property is set to "expertise".¶
The INDEX parameter converts according to the rules as defined in Section 2.3.¶
EXPERTISE;LEVEL=beginner;INDEX=2:Chinese literature EXPERTISE;INDEX=1;LEVEL=expert:chemistry "personalInfo": { "PERSINFO-1" : { "kind": "expertise", "value": "Chinese literature", "level": "low", "listAs": 2 }, "PERSINFO-2" : { "kind": "expertise", "value": "chemistry", "level": "high", "listAs": 1 } }
A HOBBY property as defined in [RFC6715] is represented as a PersonalInfo
object in the personalInfo
property (Figure 27). The kind
property is set to "hobby".¶
The INDEX parameter converts according to the rules as defined in Section 2.3.¶
HOBBY;INDEX=1;LEVEL=high:reading HOBBY;INDEX=2;LEVEL=high:sewing "personalInfo": { "PERSINFO-1" : { "kind": "hobby", "value": "reading", "level": "high", "listAs": 1 }, "PERSINFO-2" : { "kind": "hobby", "value": "sewing", "level": "high", "listAs": 2 } }
An INTEREST property as defined in [RFC6715] is represented as a PersonalInfo
object in the personalInfo
property (Figure 28). The kind
property is set to "interest".¶
The INDEX parameter converts according to the rules as defined in Section 2.3.¶
INTEREST;INDEX=1;LEVEL=medium:r&b music INTEREST;INDEX=2;LEVEL=high:rock&roll music "personalInfo": { "PERSINFO-1" : { "kind": "interest", "value": "r&b music", "level": "medium", "listAs": 1 }, "PERSINFO-2" : { "kind": "interest", "value": "rock&roll music", "level": "high", "listAs": 2 } }
An ORG-DIRECTORY property as defined in [RFC6715] is represented as an entry of the directories
property (Figure 29). The entry value is a Directory
object whose kind
property is set to directory
and uri
property is set to the ORG-DIRECTORY value.¶
The INDEX, PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
ORG-DIRECTORY;INDEX=1:https://directory.mycompany.example.com ORG-DIRECTORY;PREF=1:ldap://ldap.tech.example/o=Tech,ou=Engineering "directories": { "DIRECTORY-1": { "kind": "directory", "uri": "https://directory.mycompany.example.com", "listAs": 1 }, "DIRECTORY-2": { "kind": "directory", "uri": "ldap://ldap.tech.example/o=Tech,ou=Engineering", "pref": 1 } }
A CATEGORIES property converts to a set of entries of the keywords
property (Figure 30). The keys are the comma-separated text values of the CATEGORIES property.¶
In this case, the PREF parameter does not have a JSContact counterpart; however, the implementors MAY insert the map entries by order of preference.¶
CATEGORIES:internet,IETF,Industry,Information Technology "keywords": { "internet": true, "IETF": true, "Industry": true, "Information Technology": true }
These convert to the vCardProps
(Section 2.15.1) and vCardParams
(Section 2.15.2) properties.¶
The CREATED property converts to the created
property (Figure 31).¶
CREATED:19940930T143510Z "created": "1994-09-30T14:35:10Z"
Note: This property is defined in [I-D.ietf-calext-vcard-jscontact-extensions].¶
A NOTE property converts to a Note
object in the notes
map (Figure 32).¶
The ALTID and LANGUAGE parameters convert according to the rules as defined in Section 2.3.¶
NOTE;CREATED=20221123T150132Z;AUTHOR-NAME="John": Office hours are from 0800 to 1715 EST\, Mon-Fri. "notes": { "NOTE-1" : { "note": "Office hours are from 0800 to 1715 EST, Mon-Fri.", "created": "2022-11-23T15:01:32Z", "author": { "name": "John" } } }
The PRODID property converts to the prodId
property (Figure 33).¶
PRODID:ACME Contacts App version 1.23.5 "prodId": "ACME Contacts App version 1.23.5"
The REV property converts to the updated
property (Figure 34).¶
REV:19951031T222710Z "updated": "1995-10-31T22:27:10Z"
A SOUND property converts to an entry in the media
property (Figure 35). The entry value is a Media
object whose kind
property is set to sound
and uri
property is set to the SOUND value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
SOUND:CID:JOHNQPUBLIC.19960229T080000.xyzMail@example.com "media": { ... "SOUND-1": { "kind": "sound", "uri": "CID:JOHNQPUBLIC.19960229T080000.xyzMail@example.com" } }
The UID property corresponds to the uid
property (Figure 36).¶
UID:urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6 "uid": "urn:uuid:f81d4fae-7dec-11d0-a765-00a0c91e6bf6"
A URL property converts to an entry in the links
property (Figure 37). The entry value is a Link
object whose uri
property is set to the URL value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
URL:https://example.org/restaurant.french/~chezchic.html "links": { "LINK-1": { "uri": "https://example.org/restaurant.french/~chezchic.html" } }
This converts to an entry in the vCardProps
(Section 2.15.1) property.¶
This property is experimental but widely in use in existing vCard data. It converts to the label
property of a JSContact object type. The X-ABLabel property is preceded by a vCard property group name, and the label converts to the JSContact object which got converted from a vCard property having the same group.¶
The group name is not preserved, implementations are free to choose any unique group name when converting back to vCard. For an example how to preserve the group name see Section 2.3.9.¶
item1.TEL;VALUE=uri:tel:+1-555-555-5555 item1.X-ABLabel:foo "phones": { "p1": { "number": "tel:+1-555-555-5555", "label": "foo" } }
A KEY property converts to an entry in the cryptoKeys
property (Figure 39). The entry value is a CryptoKey
object whose uri
property is set to the KEY value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
KEY:https://www.example.com/keys/jdoe.cer "cryptoKeys": { "KEY-1": { "uri": "https://www.example.com/keys/jdoe.cer" } }
A CALADRURI property converts to an entry in the schedulingAddresses
property (Figure 40). The entry value is a SchedulingAddress
object whose uri
property is set to the CALADRURI value.¶
The PREF parameter converts according to the rules as defined in Section 2.3.¶
CALADRURI;PREF=1:mailto:janedoe@example.com CALADRURI:https://example.com/calendar/jdoe "schedulingAddresses": { "SCHEDULING-1": { "uri": "mailto:janedoe@example.com", "pref": 1 }, "SCHEDULING-2": { "uri": "https://example.com/calendar/jdoe" } }
A CALURI property converts to an entry in the calendars
property (Figure 41). The entry value is a Calendar
object whose kind
property is set to calendar
and uri
property is set to the CALURI value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
CALURI;PREF=1:https://cal.example.com/calA CALURI;MEDIATYPE=text/calendar:https://ftp.example.com/calA.ics "calendars": { "CAL-1": { "kind": "calendar", "uri": "https://cal.example.com/calA", "pref": 1 }, "CAL-2": { "kind": "calendar", "uri": "https://ftp.example.com/calA.ics", "mediaType": "text/calendar" } }
An FBURL property converts to an entry in the calendars
property (Figure 42). The entry value is a Calendar
object whose kind
property is set to freeBusy
and uri
property is set to the FBURL value.¶
The PREF and TYPE parameters convert according to the rules as defined in Section 2.3.¶
FBURL;PREF=1:https://www.example.com/busy/janedoe FBURL;MEDIATYPE=text/calendar:https://example.com/busy/project-a.ifb "calendars": { "FBURL-1": { "kind": "freeBusy", "uri": "https://www.example.com/busy/janedoe", "pref": 1 }, "FBURL-2": { "kind": "freeBusy", "uri": "https://example.com/busy/project-a.ifb", "mediaType": "text/calendar" } }
These convert as specified in Section 2.15.¶
vCards may contain properties or parameters for which no IANA-registered JSContact property is defined. For example, a vCard may contain properties and parameters of which the semantics or purposes are unknown to the implementation; see Section 6.10 of [RFC6350].¶
This section defines JSContact properties by which such vCard properties and parameters MAY be represented in JSContact. Implementations MAY choose to convert differently if they deem that more appropriate.¶
vCardProps
vCardProps
¶
JCardProp[]
, where JCardProp
denotes a jCard-encoded vCard property as defined in Section 3.3 of [RFC7095].¶
This illustrates how to convert a vCard extension property:¶
item1.X-FOO;X-BAR=Hello:World! "vCardProps": [ ["x-foo", { "x-bar": "Hello", "group": "item1" }, "unknown", "World!"] ]
vCardProps
example
vCardParams
vCardParams
¶
String[String|String[]]
¶
This illustrates how to convert a vCard extension parameter:¶
EMAIL;X-FOO=Bar:jane_doe@example.com "emails": { "email1": { "address": "jane_doe@example.com", "vCardParams": { "x-foo": "Bar" } } }
vCardParams
example
vCardName
vCardName
¶
String
¶
name
ABNF defined in Section 3.3 of [RFC6350].¶
Both vCard IMPP and SOCIALPROFILE convert to OnlineService in JSContact. The vCardName
property value indicates that the vCard source element was IMPP:¶
IMPP:xmpp:alice@example.com "onlineServices": { "os1": { "uri": "xmpp:alice@example.com", "vCardName": "impp" }, }
vCardName
example
A Card
converts to vCard by applying the reverse rules of converting vCard to JSContact. In addition to those listed in Appendix A, the following rules apply:¶
Id
of the converted value (see Section 2.3.16).¶
The full
property in JSContact is optional, but it is mandatory in vCard. The following rules apply:¶
full
property is set, then implementations MUST use its value for the vCard FN property.¶
full
property is not set, but the name
property is, then implementations MUST derive the full name of it by concatenating the name component values. They MUST use the resulting string as the value of the vCard FN property. In addition, they MUST set the DERIVED parameter on the FN property.¶
Pronounce
object
The Pronounce type has no standard vCard element to convert to. An initial RFC draft [I-D.calconnect-vobject-i18n] for adding phonetics to vCard exists but has not been further developed. In lack of standard vCard support, any JSContact property of type Pronounce converts to a vCard JSCONTACT-PROP as outlined in Section 3.2.¶
JSContact object types may contain properties for which no IANA-registered vCard property is defined. For example, a JSContact object may contain vendor-specific properties of which the semantics or purpose are unknown.¶
This section defines new vCard properties and parameters by which such JSContact properties MAY be represented in vCard. Implementations MAY choose to convert differently if they deem that more appropriate.¶
JSCONTACT-PROP
This property converts a JSContact property to vCard. The vCard property value is the JSON-encoded value of the JSContact property, represented as a TEXT value. The format of the JSON value MUST be compact, e.g., without insignificant whitespace.¶
The value of the JSPTR parameter defines the path to that JSContact value within the Card. The last segment of the JSON pointer either defines the property name or array position of the JSContact value. The root of the JSON pointer is always the Card object that this vCard converts to, irrespective if the JSON pointer starts with the SOLIDUS (U+002F) character. If any but the last segment of the JSON pointer points to a non-existent JSContact property or array entry in the Card, then the JSCONTACT-PROP property MUST be ignored and discarded from the vCard.¶
This property is defined by the following notation:¶
jscontact-prop = "JSCONTACT-PROP" jscontact-prop-param ":" TEXT jscontact-prop-param = *( ; The following are MANDATORY and MUST NOT ; occur more than once ( ";" jspath-param ) / ; see next section ( ";" "VALUE" "=" "TEXT") ; ; The following is OPTIONAL, ; and MAY occur more than once. ; (";" other-param) ; )¶
This illustrates how to convert a property at the top-level in a Card object that is unknown to the implementation.¶
"someUnknownProperty": true JSCONTACT-PROP;JSPTR="someUnknownProperty":true
This illustrates how to convert a vendor-specific property at the top-level of a Card object. Note the required use of quoted string for the JSPTR value which allows the path to include the COLON (U+003A) character.¶
"example.com:foo": { "bar": 1234 } JSCONTACT-PROP;JSPTR="example.com:foo":{"bar":1234}
This illustrates how to convert a vendor-specific property at a nested level in a Card object using a path relative to the Card object. Although not recommended, the property name includes the SOLIDUS (U+002F) character which requires escaping in the JSON pointer.¶
"phones": { "phone1": { "number": "tel:+33-01-23-45-67" "example.com:foo/bar": "tux hux" } } TEL:tel:+33-01-23-45-67 JSCONTACT-PROP;JSPTR="phones/phone1/example.com:foo~1bar": "tux hux"
JSPTR
This parameter has a single value that MUST be a valid JSON pointer as defined in [RFC6901]. Currently, its semantics only are defined for the JSCONTACT-PROP property (see Section 3.2.1), but it may also be used for other use cases in the future.¶
jspath-param = "JSPTR" "=" DQUOTE *QSAFE-CHAR DQUOTE ; also see param-value in RFC 6350, section 3.3¶
This illustrates a simple example. For further examples see Section 3.2.1.¶
JSCONTACT-PROP;JSPTR="example.com:foo":"bar"¶
This specification defines how to convert between the JSContact and vCard formats. The security considerations for parsing and formatting such data apply and are outlined in Section 5 of [I-D.ietf-calext-jscontact] and Section 9 of [RFC6350].¶
IANA is requested to add the following entries to the "vCard Properties" registry, defined in Section 10.3.1. of [RFC6350].¶
Namespace | Property | Reference |
---|---|---|
JSCONTACT-PROP | This document, Section 3.2.1 |
IANA is requested to add the following entries to the "vCard Parameters" registry, defined in Section 10.3.2. of [RFC6350].¶
Namespace | Parameter | Reference |
---|---|---|
JSPTR | This document, Section 3.2.2 |
IANA is requested to add the following entries to the "JSContact Properties" registry. The Since Version for all properties is 1.0. The Until Version for all properties is not set. All RFC section references are for this document. The change controller for all these properties is IETF.¶
Property Name | Property Type | Property Context | Reference or Description | Intended Usage |
---|---|---|---|---|
vCardName | String | Any JSContact object | Section 2.15.3 | common |
vCardParams | String[String] | Any JSContact object | Section 2.15.2 | common |
vCardProps | JCardProp[] | Card | Section 2.15.1 | common |
IANA is requested to add the following entries to the "JSContact Types" registry. The Since Version for all properties is 1.0. The Until Version for all properties is not set. All RFC section references are for this document. The change controller for all these properties is IETF.¶
Type Name | Reference or Description | Intended Usage |
---|---|---|
JCardProp | Section 2.15.1 | common |
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 as defined in this specification at the time of posting of this Internet-Draft, and is based on a proposal described in [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".¶
Table 7 lists the relevant document sections for each JSContact object type and property.¶
JSContact Type | Property Name | Relevant Section(s) |
---|---|---|
Address | @type | not applicable |
Address | components | Section 2.6.1, Section 2.3.7 |
Address | contexts | Section 2.3.19 |
Address | coordinates | Section 2.3.8, Section 2.8.1 |
Address | country | Section 2.6.1 |
Address | countryCode | Section 2.6.1 |
Address | full | Section 2.6.1 |
Address | locality | Section 2.6.1 |
Address | postcode | Section 2.6.1 |
Address | pref | Section 2.3.15 |
Address | pronounce | Section 3.1.1 |
Address | region | Section 2.6.1 |
Address | timeZone | Section 2.3.20, Section 2.8.2 |
AddressComponent | pronounce | Section 3.1.1 |
Anniversary | @type | not applicable |
Anniversary | date | Section 2.5.1 |
Anniversary | kind | Section 2.5.1 |
Anniversary | place | Section 2.5.1 |
Author | @type | not applicable |
Author | name | Section 2.3.3 |
Author | uri | Section 2.3.2 |
Calendar | @type | not applicable |
Calendar | contexts | Section 2.3.19 |
Calendar | kind | Section 2.13.1, Section 2.13.3 |
Calendar | label | Section 2.11.11 |
Calendar | mediaType | Section 2.3.13 |
Calendar | pref | Section 2.3.15 |
Calendar | uri | Section 2.13.1, Section 2.13.3 |
Card | @type | not applicable |
Card | @version | not applicable |
Card | addresses | Section 2.6.1 |
Card | anniversaries | Section 2.5.1 |
Card | calendars | Section 2.13.1, Section 2.13.3 |
Card | created | Section 2.11.3 |
Card | directories | Section 2.4.3, Section 2.10.4 |
Card | emails | Section 2.7.1 |
Card | keywords | Section 2.11.1 |
Card | kind | Section 2.4.2 |
Card | links | Section 2.9.1, Section 2.11.9 |
Card | language | Section 2.7.4 |
Card | localizations | Section 2.3.11 |
Card | media | Section 2.5.6, Section 2.9.2, Section 2.11.7 |
Card | members | Section 2.9.3 |
Card | name | Section 2.5.5 |
Card | nickNames | Section 2.5.5 |
Card | notes | Section 2.11.4 |
Card | onlineServices | Section 2.7.2 |
Card | organizations | Section 2.9.4 |
Card | personalInfo | Section 2.10.1, Section 2.10.2, Section 2.10.3 |
Card | phones | Section 2.7.6 |
Card | preferredLanguages | Section 2.7.3 |
Card | prodId | Section 2.11.5 |
Card | relatedTo | Section 2.9.5 |
Card | schedulingAddresses | Section 2.13.1 |
Card | speakToAs | Section 2.5.3 |
Card | titles | Section 2.9.6 |
Card | uid | Section 2.11.8 |
Card | updated | Section 2.11.6 |
CryptoKey | @type | not applicable |
CryptoKey | contexts | Section 2.3.19 |
CryptoKey | kind | not applicable |
CryptoKey | label | Section 2.11.11 |
CryptoKey | mediaType | Section 2.3.13 |
CryptoKey | pref | Section 2.3.15 |
CryptoKey | uri | Section 2.12.1 |
Directory | @type | not applicable |
Directory | contexts | Section 2.3.19 |
Directory | kind | Section 2.4.3, Section 2.10.4 |
Directory | label | Section 2.11.11 |
Directory | listAs | Section 2.3.10 |
Directory | mediaType | Section 2.3.13 |
Directory | pref | Section 2.3.15 |
Directory | uri | Section 2.4.3, Section 2.10.4 |
EmailAddress | @type | not applicable |
EmailAddress | address | Section 2.7.1 |
EmailAddress | contexts | Section 2.3.19 |
EmailAddress | label | Section 2.11.11 |
EmailAddress | pref | Section 2.3.15 |
LanguagePref | @type | not applicable |
LanguagePref | contexts | Section 2.3.19 |
LanguagePref | pref | Section 2.3.15 |
Link | @type | not applicable |
Link | contexts | Section 2.3.19 |
Link | kind | Section 2.9.1, Section 2.11.9 |
Link | label | Section 2.11.11 |
Link | mediaType | Section 2.3.13 |
Link | pref | Section 2.3.15 |
Link | uri | Section 2.9.1, Section 2.11.9> |
Media | @type | not applicable |
Media | contexts | Section 2.3.19 |
Media | kind | Section 2.5.6, Section 2.9.2, Section 2.11.7 |
Media | label | Section 2.11.11 |
Media | mediaType | Section 2.3.13 |
Media | pref | Section 2.3.15 |
Media | uri | Section 2.5.6, Section 2.9.2, Section 2.11.7 |
Name | @type | not applicable |
Name | components | Section 2.5.5, Section 2.3.7 |
Name | full | Section 2.5.4 |
Name | pronounce | Section 3.1.1 |
Name | sortAs | Section 2.3.18 |
NameComponent | @type | not applicable |
NameComponent | kind | Section 2.5.5 |
NameComponent | pronounce | Section 3.1.1 |
NameComponent | value | Section 2.5.5 |
NickName | @type | not applicable |
NickName | contexts | Section 2.3.19 |
NickName | name | Section 2.5.5 |
NickName | pref | Section 2.3.15 |
Note | @type | not applicable |
Note | author | Section 2.3.2, Section 2.3.3 |
Note | created | Section 2.3.5 |
Note | note | Section 2.11.4 |
OnlineService | @type | not applicable |
OnlineService | contexts | Section 2.3.19 |
OnlineService | kind | Section 2.7.2, Section 2.7.5 |
OnlineService | label | Section 2.11.11 |
OnlineService | pref | Section 2.3.15 |
OnlineService | service | Section 2.3.17 |
OnlineService | uri | Section 2.7.2, Section 2.7.5 |
OnlineService | user | Section 2.3.21 |
OrgUnit | @type | not applicable |
OrgUnit | name | Section 2.9.4 |
OrgUnit | sortAs | Section 2.3.18 |
Organization | @type | not applicable |
Organization | contexts | Section 2.3.19 |
Organization | name | Section 2.9.4 |
Organization | sortAs | Section 2.3.18 |
Organization | units | Section 2.9.4 |
PartialDate | @type | not applicable |
PartialDate | calendarScale | Section 2.3.4 |
PartialDate | day | Section 2.2.2 |
PartialDate | month | Section 2.2.2 |
PartialDate | year | Section 2.2.2 |
PatchObject | @type | not applicable |
PersonalInfo | @type | not applicable |
PersonalInfo | kind | Section 2.10.1, Section 2.10.2, Section 2.10.3 |
PersonalInfo | listAs | Section 2.3.10 |
PersonalInfo | level | Section 2.3.12 |
PersonalInfo | value | Section 2.10.1, Section 2.10.2, Section 2.10.3 |
Phone | @type | not applicable |
Phone | contexts | Section 2.3.19 |
Phone | features | Section 2.7.6 |
Phone | label | Section 2.11.11 |
Phone | number | Section 2.7.6 |
Phone | pref | Section 2.3.15 |
Pronouns | @type | not applicable |
Pronouns | contexts | Section 2.3.19 |
Pronouns | pref | Section 2.3.15 |
Pronouns | pronouns | Section 2.5.3 |
Relation | @type | not applicable |
Relation | relation | Section 2.9.5 |
Resource | @type | not applicable |
SchedulingAddress | @type | not applicable |
SchedulingAddress | contexts | Section 2.3.19 |
SchedulingAddress | label | Section 2.11.11 |
SchedulingAddress | pref | Section 2.3.15 |
SchedulingAddress | uri | Section 2.13.1 |
SpeakToAs | @type | not applicable |
SpeakToAs | grammaticalGender | Section 2.5.3 |
SpeakToAs | pronouns | Section 2.5.3 |
AddressComponent | @type | not applicable |
AddressComponent | kind | Section 2.6.1 |
AddressComponent | value | Section 2.6.1 |
Timestamp | @type | not applicable |
Timestamp | utc | Section 2.2.2 |
Title | @type | not applicable |
Title | kind | Section 2.9.6 |
Title | name | Section 2.9.6 |
Title | organization | Section 2.9.6 |