JCard
From MicroJSON
ourolbasor
[edit] jCard
[edit] hCard Microformat
The hCard microformat generated by the hCard Creator looks like this:
<div id="hcard-given-middle-family" class="vcard">
<span class="fn n">
<span class="given-name">given</span>
<span class="additional-name">middle</span>
<span class="family-name">family</span>
</span>
<div class="org">org</div>
<a class="email" href="mailto:email">email</a>
<div class="adr">
<div class="street-address">street</div>
<span class="locality">city</span>,<span class="region">state/province</span>,<span class="postal-code">postal</span>
<span class="country-name">country</span>
</div>
<div class="tel">phone</div>
<a class="url" href="aim:goim?screenname=AIM">AIM</a>
<a class="url" href="ymsgr:sendIM?YIM">YIM</a>
</div>
This could conceivably be converted into a JSON format such as...
{
"vcard":{
"name":{
"given":"John",
"additional":"Paul",
"family":"Smith"
},
"org":"Company Corp",
"email":"john@companycorp.com",
"address":{
"street":"50 Main Street",
"locality":"Cityville",
"region":"Stateshire",
"postalCode":"1234abc",
"country":"Someplace"
},
"tel":"111-222-333",
"aim":"johnsmith",
"yim":"smithjohn"
}
The main element that has remained consistent is the nesting of related elements, and the naming conventions.

