nbio / cloudquery

Ruby client for the Xoopit search API

This URL has Read+Write access

cloudquery / simple.contact.xml
100644 27 lines (26 sloc) 0.819 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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>