<schema name="simple.contact" store="yes">
<!-- The full name of the contact -->
<field name="name"
type="string"
analyzer="LCWhitespaceAnalyzer"
usage="user" />
<!-- The email addresses. A json array: email address -->
<field name="email"
type="string"
usage="user" />
<!-- The phone numbers. A json array: phone number -->
<field name="telephone"
type="string"
usage="user" />
<!-- The addresses. A json array: address -->
<field name="address"
type="string"
usage="user" />
<!-- The birthday of the contact-->
<field name="birthday"
type="date" />
<!-- A note for the contact-->
<field name="note"
type="text"
usage="user" />
</schema>