In many cases user might only want to share part of the information about some specific contact. We can see it taken into account in the Contact Picker API (demonstrated in this video)
As I understand vCard ontology provides an n-ary mechanism, given Solid resource level access control, we may require that each detail of contact information should be stored in a separate resource.
Taking an example from https://www.w3.org/TR/vcard-rdf/#Examples
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix rdfa: <http://www.w3.org/ns/rdfa#> .
<http://example.com/me/corky> a vcard:Individual;
vcard:hasEmail <mailto:corky@example.com>;
vcard:fn "Corky Crystal";
vcard:hasAddress [ a vcard:Home;
vcard:country-name "Australia";
vcard:locality "WonderCity";
vcard:postal-code "5555";
vcard:street-address "111 Lake Drive" ];
vcard:hasTelephone [ a vcard:Home,
vcard:Voice;
vcard:hasValue <tel:+61755555555> ];
vcard:nickname "Corks" .
it could be stored as discrete resources (omitting prefixes for simplicity)
<http://example.com/me/corky>
a vcard:Individual;
vcard:hasEmail <http://example.com/me/corky/home-email>;
vcard:hasAddress <http://example.com/me/corky/home-address>;
vcard:hasTelephone <http://example.com/me/corky/home-address>.
<http://example.com/me/corky/home-email>
a vcard:Email, vcard:Home;
vcard:hasValue<mailto:corky@example.com>.
<http://example.com/me/corky/home-address>
a card:Address, vcard:Home;
vcard:country-name "Australia";
vcard:locality "WonderCity";
vcard:postal-code "5555";
vcard:street-address "111 Lake Drive".
<http://example.com/me/corky/home-email>
a vcard:Email, vcard:Home, vcard:Voice;
vcard:hasValue <tel:+61755555555> ].
etc.
In many cases user might only want to share part of the information about some specific contact. We can see it taken into account in the Contact Picker API (demonstrated in this video)
As I understand vCard ontology provides an n-ary mechanism, given Solid resource level access control, we may require that each detail of contact information should be stored in a separate resource.
Taking an example from https://www.w3.org/TR/vcard-rdf/#Examples
it could be stored as discrete resources (omitting prefixes for simplicity)
etc.