-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.xml
437 lines (348 loc) · 24.9 KB
/
schema.xml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--
This is the Solr schema file. This file should be named "schema.xml" and
should be in the conf directory under the solr home
(i.e. ./solr/conf/schema.xml by default)
or located where the classloader for the Solr webapp can find it.
This example schema is the recommended starting point for users.
It should be kept correct and concise, usable out-of-the-box.
For more information, on how to customize this file, please see
http://wiki.apache.org/solr/SchemaXml
PERFORMANCE NOTE: this schema includes many optional features and should not
be used for benchmarking. To improve performance one could
- set stored="false" for all fields possible (esp large fields) when you
only need to search on the field but don't need to return the original
value.
- set indexed="false" if you don't need to search on the field, but only
return the field as a result of searching on other indexed fields.
- remove all unneeded copyField statements
- for best index size and searching performance, set "index" to false
for all general text fields, use copyField to copy them to the
catchall "text" field, and use that for searching.
- For maximum indexing performance, use the StreamingUpdateSolrServer
java client.
- Remember to run the JVM in server mode, and use a higher logging level
that avoids logging every request
-->
<schema name="example" version="1.5">
<types>
<fieldType name="string" class="solr.StrField" sortMissingLast="false" />
<!-- boolean type: "true" or "false" -->
<fieldType name="boolean" class="solr.BoolField" sortMissingLast="true"/>
<!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
<fieldtype name="binary" class="solr.BinaryField"/>
<!-- The optional sortMissingLast and sortMissingFirst attributes are
currently supported on types that are sorted internally as strings
and on numeric types.
This includes "string","boolean", and, as of 3.5 (and 4.x),
int, float, long, date, double, including the "Trie" variants.
- If sortMissingLast="true", then a sort on this field will cause documents
without the field to come after documents with the field,
regardless of the requested sort order (asc or desc).
- If sortMissingFirst="true", then a sort on this field will cause documents
without the field to come before documents with the field,
regardless of the requested sort order.
- If sortMissingLast="false" and sortMissingFirst="false" (the default),
then default lucene sorting will be used which places docs without the
field first in an ascending sort and last in a descending sort.
-->
<!--
Default numeric field types. For faster range queries, consider the tint/tfloat/tlong/tdouble types.
-->
<fieldType name="int" class="solr.TrieIntField" precisionStep="0" positionIncrementGap="0"/>
<fieldType name="float" class="solr.TrieFloatField" precisionStep="0" positionIncrementGap="0"/>
<fieldType name="long" class="solr.TrieLongField" precisionStep="0" positionIncrementGap="0"/>
<fieldType name="double" class="solr.TrieDoubleField" precisionStep="0" positionIncrementGap="0"/>
<!--
Numeric field types that index each value at various levels of precision
to accelerate range queries when the number of values between the range
endpoints is large. See the javadoc for NumericRangeQuery for internal
implementation details.
Smaller precisionStep values (specified in bits) will lead to more tokens
indexed per value, slightly larger index size, and faster range queries.
A precisionStep of 0 disables indexing at different precision levels.
-->
<fieldType name="tint" class="solr.TrieIntField" precisionStep="8" positionIncrementGap="0"/>
<fieldType name="tfloat" class="solr.TrieFloatField" precisionStep="8" positionIncrementGap="0"/>
<fieldType name="tlong" class="solr.TrieLongField" precisionStep="8" positionIncrementGap="0"/>
<fieldType name="tdouble" class="solr.TrieDoubleField" precisionStep="8" positionIncrementGap="0"/>
<fieldType name="date" class="solr.TrieDateField" sortMissingLast="true" precisionStep="8" positionIncrementGap="0"/>
<!-- A Trie based date field for faster date range queries and date faceting. -->
<fieldType name="tdate" class="solr.TrieDateField" precisionStep="6" positionIncrementGap="0"/>
<fieldType name="pint" class="solr.IntField"/>
<fieldType name="plong" class="solr.LongField"/>
<fieldType name="pfloat" class="solr.FloatField"/>
<fieldType name="pdouble" class="solr.DoubleField"/>
<fieldType name="pdate" class="solr.DateField" sortMissingLast="true"/>
<fieldType name="sint" class="solr.SortableIntField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="slong" class="solr.SortableLongField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="sfloat" class="solr.SortableFloatField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="sdouble" class="solr.SortableDoubleField" sortMissingLast="true" omitNorms="true"/>
<fieldType name="random" class="solr.RandomSortField" indexed="true" />
<fieldType name="text_german" class="solr.TextField" positionIncrementGap="100" sortMissingLast="true">
<analyzer type="index">
<charFilter class="solr.MappingCharFilterFactory" mapping="mapping-FoldToASCII.txt"/>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
<!-- in this example, we will only use synonyms at query time
<filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="false"/>
-->
<filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="1"/>
<filter class="solr.LowerCaseFilterFactory"/>
<filter class="solr.SnowballPorterFilterFactory" language="German" />
<filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
<filter class="solr.ReversedWildcardFilterFactory" withOriginal="true" maxPosAsterisk="2" maxPosQuestion="1" minTrailing="2" maxFractionAsterisk="0"/>
</analyzer>
<analyzer type="query">
<charFilter class="solr.MappingCharFilterFactory" mapping="mapping-FoldToASCII.txt"/>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
<filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="false"/>
<filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="1"/>
<filter class="solr.LowerCaseFilterFactory"/>
<filter class="solr.SnowballPorterFilterFactory" language="German" />
<filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
</analyzer>
</fieldType>
<fieldType name="alphaOnlySort" class="solr.TextField" sortMissingLast="true" omitNorms="true">
<analyzer>
<!-- KeywordTokenizer does no actual tokenizing, so the entire
input string is preserved as a single token
-->
<tokenizer class="solr.KeywordTokenizerFactory"/>
<!-- The LowerCase TokenFilter does what you expect, which can be
when you want your sorting to be case insensitive
-->
<filter class="solr.LowerCaseFilterFactory" />
<!-- The TrimFilter removes any leading or trailing whitespace -->
<filter class="solr.TrimFilterFactory" />
<!-- The PatternReplaceFilter gives you the flexibility to use
Java Regular expression to replace any sequence of characters
matching a pattern with an arbitrary replacement string,
which may include back references to portions of the original
string matched by the pattern.
See the Java Regular Expression documentation for more
information on pattern and replacement string syntax.
http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/package-summary.html
-->
<filter class="solr.PatternReplaceFilterFactory"
pattern="([^a-z])" replacement="" replace="all"
/>
</analyzer>
</fieldType>
<fieldtype name="phonetic" stored="false" indexed="true" class="solr.TextField" >
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.DoubleMetaphoneFilterFactory" inject="false"/>
</analyzer>
</fieldtype>
<fieldtype name="payloads" stored="false" indexed="true" class="solr.TextField" >
<analyzer>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<!--
The DelimitedPayloadTokenFilter can put payloads on tokens... for example,
a token of "foo|1.4" would be indexed as "foo" with a payload of 1.4f
Attributes of the DelimitedPayloadTokenFilterFactory :
"delimiter" - a one character delimiter. Default is | (pipe)
"encoder" - how to encode the following value into a playload
float -> org.apache.lucene.analysis.payloads.FloatEncoder,
integer -> o.a.l.a.p.IntegerEncoder
identity -> o.a.l.a.p.IdentityEncoder
Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor.
-->
<filter class="solr.DelimitedPayloadTokenFilterFactory" encoder="float"/>
</analyzer>
</fieldtype>
<!-- lowercases the entire field value, keeping it as a single token. -->
<fieldType name="lowercase" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.KeywordTokenizerFactory"/>
<filter class="solr.LowerCaseFilterFactory" />
</analyzer>
</fieldType>
<fieldType name="text_path" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.PathHierarchyTokenizerFactory"/>
</analyzer>
</fieldType>
<!-- since fields of this type are by default not stored or indexed,
any data added to them will be ignored outright. -->
<fieldtype name="ignored" stored="false" indexed="false" multiValued="true" class="solr.StrField" />
<!-- This point type indexes the coordinates as separate fields (subFields)
If subFieldType is defined, it references a type, and a dynamic field
definition is created matching *___<typename>. Alternately, if
subFieldSuffix is defined, that is used to create the subFields.
Example: if subFieldType="double", then the coordinates would be
indexed in fields myloc_0___double,myloc_1___double.
Example: if subFieldSuffix="_d" then the coordinates would be indexed
in fields myloc_0_d,myloc_1_d
The subFields are an implementation detail of the fieldType, and end
users normally should not need to know about them.
-->
<fieldType name="point" class="solr.PointType" dimension="2" subFieldSuffix="_d"/>
<!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->
<fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
<!--
A Geohash is a compact representation of a latitude longitude pair in a single field.
See http://wiki.apache.org/solr/SpatialSearch
-->
<fieldtype name="geohash" class="solr.GeoHashField"/>
<!-- German -->
<fieldType name="text_de" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
<filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_de.txt" format="snowball" enablePositionIncrements="true"/>
<filter class="solr.GermanNormalizationFilterFactory"/>
<filter class="solr.GermanLightStemFilterFactory"/>
<!-- less aggressive: <filter class="solr.GermanMinimalStemFilterFactory"/> -->
<!-- more aggressive: <filter class="solr.SnowballPorterFilterFactory" language="German2"/> -->
</analyzer>
</fieldType>
</types>
<fields>
<field name="id" type="string" indexed="true" stored="true" required="true" />
<field name="collection" type="string" indexed="true" stored="true" required="false" />
<field name="rdf:type" type="string" indexed="true" stored="true" multiValued="true" />
<field name="istg:icon" type="string" indexed="true" stored="true" multiValued="false" />
<field name="istg:maintitle" type="text_german" indexed="true" stored="true" multiValued="false" />
<field name="dct:contributor" type="text_german" indexed="true" stored="true" multiValued="true" />
<field name="dct:contributor_facet" type="string" indexed="true" stored="true" multiValued="true" />
<copyField source="dct:contributor" dest="dct:contributor_facet"/>
<field name="dc:subject" type="text_german" indexed="true" stored="true" multiValued="true" />
<field name="dc:subject_facet" type="string" indexed="true" stored="true" multiValued="true" />
<copyField source="dct:subject" dest="dc:subject_facet"/>
<field name="istg:publishingLocation" type="text_german" indexed="true" stored="true" multiValued="false" />
<field name="istg:publishingLocation_facet" type="string" indexed="true" stored="true" multiValued="true" />
<copyField source="istg:publishingLocation" dest="istg:publishingLocation_facet"/>
<field name="bibo:pages" type="string" stored="true" indexed="false" multiValued="false" />
<field name="dct:issued" type="date" stored="true" indexed="true" multiValued="true" />
<field name="istg:subtitle" type="text_german" stored="true" indexed="true" multiValued="false" />
<field name="dct:publisher" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="dct:isPartOf" type="string" stored="true" indexed="true" multiValued="true" />
<field name="istg:volume_part" type="string" stored="true" indexed="true" multiValued="true" />
<field name="istg:rezension" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:inhaltsverzeichnis_text" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:type" type="string" stored="true" indexed="false" multiValued="false" />
<field name="bibo:edition" type="string" stored="true" indexed="true" multiValued="true" />
<field name="dct:modified" type="date" stored="true" indexed="false" multiValued="false" />
<field name="dc:creator" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="bibo:editor" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:signatur" type="string" indexed="true" stored="true" multiValued="false" />
<field name="bibo:volume" type="string" indexed="false" stored="true" multiValued="false" />
<field name="istg:reihe" type="string" stored="true" indexed="false" multiValued="true" />
<field name="rdfs:comment" type="text_german" stored="true" indexed="true" multiValued="false" />
<field name="istg:relief" type="string" stored="true" indexed="false" multiValued="false" />
<field name="dct:title" type="text_german" indexed="true" stored="true" multiValued="false" />
<field name="istg:inventory" type="string" indexed="false" stored="true" multiValued="false" />
<field name="lido:originaltitel" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:recordingTime" type="string" indexed="false" stored="true" multiValued="true" />
<field name="istg:displayedTime" type="string" indexed="false" stored="true" multiValued="true" />
<field name="dc:contributor" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="dc:contributor_facet" type="string" stored="true" indexed="true" multiValued="true" />
<copyField source="dc:contributor" dest="dc:contributor_facet"/>
<field name="istg:printedFront" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:handwritingFront" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:printedBack" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:handwritingBack" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:country" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:federalstate" type="text_german" stored="true" indexed="true" multiValued="false" />
<field name="istg:landkreis" type="text_german" indexed="true" stored="true" multiValued="true" />
<field name="istg:city" type="text_german" indexed="true" stored="true" multiValued="true" />
<field name="istg:cityDistrict" type="text_german" indexed="true" stored="true" multiValued="false" />
<field name="istg:historicPlacename" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:historicRegion" type="text_german" stored="true" indexed="true" multiValued="false" />
<field name="dct:medium" type="string" stored="true" indexed="false" multiValued="false" />
<field name="istg:color" type="string" stored="true" indexed="false" multiValued="false" />
<field name="dct:format" type="string" stored="true" indexed="false" multiValued="false" />
<field name="istg:condition" type="string" stored="true" indexed="false" multiValued="false" />
<field name="bibo:content" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:themeLocation" type="text_german" indexed="true" stored="true" multiValued="false" />
<field name="istg:historicPlaceName" type="text_german" indexed="true" stored="true" multiValued="false" />
<field name="wgs84_pos:lat" type="string" stored="true" indexed="false" multiValued="false" />
<field name="wgs84_pos:long" type="string" stored="true" indexed="false" multiValued="false" />
<field name="dct:description" type="text_german" stored="true" indexed="true" multiValued="false" />
<field name="rdf:ID" type="int" stored="true" indexed="false" multiValued="false" />
<field name="foaf:firstName" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="foaf:lastName" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="foaf:name" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="rdfs:label" type="string" stored="true" indexed="true" multiValued="true" />
<field name="bibo:pageStart" type="int" indexed="true" stored="true" multiValued="false" />
<field name="bibo:pageEnd" type="int" indexed="true" stored="true" multiValued="false" />
<field name="istg:signature" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="isbd:p1016" type="string" stored="true" indexed="false" multiValued="true" />
<field name="isbd:p1018" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:HistoricPlace" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:historicPlacenameType" type="string" indexed="false" stored="true" multiValued="false" />
<field name="vocab:HistorischeLageTyp_Bezeichnung" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:paralleltitel" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:mapScale" type="text_german" stored="true" indexed="false" multiValued="true" />
<field name="istg:colored" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:badCondition" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:yearEstimated" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:webDisplay" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:politicalBoundaries" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:churchBoundaries" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:streetDirectory" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:cityBlockRepresentation" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:parcelRepresentation" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:houseNumbers" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="istg:streetNames" type="boolean" indexed="false" stored="true" multiValued="false" />
<field name="dct:subject" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:publishingOrganization" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:technique" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:page" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:historicPlace" type="text_german" stored="true" indexed="false" multiValued="true" />
<field name="foaf:thumbnail" type="string" stored="true" indexed="false" multiValued="true" />
<field name="istg:cartographer" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:mapType" type="string" stored="true" indexed="true" multiValued="true" />
<field name="istg:continent" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="skos:prefLabel" type="string" stored="true" indexed="true" multiValued="true" />
<field name="dbpedia-prop:commonName" type="string" stored="true" indexed="true" multiValued="true" />
<field name="rdf:description" type="text_german" stored="true" indexed="true" multiValued="true" />
<field name="istg:Technique" type="string" stored="true" indexed="false" multiValued="true" />
<!-- Alle Felder Suche-->
<field name="text" type="text_german" indexed="true" stored="true" multiValued="true"/>
<copyField source="id" dest="text"/>
<field name="timestamp" type="date" indexed="true" stored="true" default="NOW" multiValued="false"/>
<field name="text_rev" type="string" indexed="true" stored="false" multiValued="true"/>
<field name="_version_" type="long" indexed="true" stored="true"/>
<dynamicField name="*_i" type="int" indexed="true" stored="true"/>
<dynamicField name="*_s" type="string" indexed="true" stored="true"/>
<dynamicField name="*_l" type="long" indexed="true" stored="true"/>
<dynamicField name="*_t" type="text_german" indexed="true" stored="true"/>
<dynamicField name="*_txt" type="text_german" indexed="true" stored="true" multiValued="true"/>
<dynamicField name="*_b" type="boolean" indexed="true" stored="true"/>
<dynamicField name="*_f" type="float" indexed="true" stored="true"/>
<dynamicField name="*_d" type="double" indexed="true" stored="true"/>
<!-- Type used to index the lat and lon components for the "location" FieldType -->
<dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false"/>
<dynamicField name="*_dt" type="date" indexed="true" stored="true"/>
<dynamicField name="*_p" type="location" indexed="true" stored="true"/>
<!-- some trie-coded dynamic fields for faster range queries -->
<dynamicField name="*_ti" type="tint" indexed="true" stored="true"/>
<dynamicField name="*_tl" type="tlong" indexed="true" stored="true"/>
<dynamicField name="*_tf" type="tfloat" indexed="true" stored="true"/>
<dynamicField name="*_td" type="tdouble" indexed="true" stored="true"/>
<dynamicField name="*_tdt" type="tdate" indexed="true" stored="true"/>
<dynamicField name="*_pi" type="pint" indexed="true" stored="true"/>
<dynamicField name="ignored_*" type="ignored" multiValued="true"/>
<dynamicField name="attr_*" type="text_german" indexed="true" stored="true" multiValued="true"/>
<dynamicField name="random_*" type="random" />
</fields>
<uniqueKey>id</uniqueKey>
</schema>