Zookeeper setup
[lui-solr.git] / zookeeper / exampledocs / money.xml
1 <!--
2  Licensed to the Apache Software Foundation (ASF) under one or more
3  contributor license agreements.  See the NOTICE file distributed with
4  this work for additional information regarding copyright ownership.
5  The ASF licenses this file to You under the Apache License, Version 2.0
6  (the "License"); you may not use this file except in compliance with
7  the License.  You may obtain a copy of the License at
8
9      http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License.
16 -->
17
18 <!-- Example documents utilizing the CurrencyField type -->
19 <add>
20 <doc>
21   <field name="id">USD</field>
22   <field name="name">One Dollar</field>
23   <field name="manu">Bank of America</field>
24   <field name="manu_id_s">boa</field>
25   <field name="cat">currency</field>
26   <field name="features">Coins and notes</field>
27   <field name="price_c">1,USD</field>
28   <field name="inStock">true</field>
29 </doc>
30
31 <doc>
32   <field name="id">EUR</field>
33   <field name="name">One Euro</field>
34   <field name="manu">European Union</field>
35   <field name="manu_id_s">eu</field>
36   <field name="cat">currency</field>
37   <field name="features">Coins and notes</field>
38   <field name="price_c">1,EUR</field>
39   <field name="inStock">true</field>
40 </doc>
41
42 <doc>
43   <field name="id">GBP</field>
44   <field name="name">One British Pound</field>
45   <field name="manu">U.K.</field>
46   <field name="manu_id_s">uk</field>
47   <field name="cat">currency</field>
48   <field name="features">Coins and notes</field>
49   <field name="price_c">1,GBP</field>
50   <field name="inStock">true</field>
51 </doc>
52
53 <doc>
54   <field name="id">NOK</field>
55   <field name="name">One Krone</field>
56   <field name="manu">Bank of Norway</field>
57   <field name="manu_id_s">nor</field>
58   <field name="cat">currency</field>
59   <field name="features">Coins and notes</field>
60   <field name="price_c">1,NOK</field>
61   <field name="inStock">true</field>
62 </doc>
63
64 </add>
65