source: vlo/branches/vlo-3.3-oeaw/vlo-solr/src/main/solr_conf/solr/collection1/conf/schema.xml @ 6503

Last change on this file since 6503 was 6503, checked in by davor.ostojic@oeaw.ac.at, 9 years ago

#792 from clarin
null values is resolved by adding "default" param to solr's schema.xml. String that represents null values is "[missing value]"

File size: 25.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements.  See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License.  You may obtain a copy of the License at
9
10     http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
19<!--
20 This is the Solr schema file. This file should be named "schema.xml" and
21 should be in the conf directory under the solr home
22 (i.e. ./solr/conf/schema.xml by default)
23 or located where the classloader for the Solr webapp can find it.
24
25 This example schema is the recommended starting point for users.
26 It should be kept correct and concise, usable out-of-the-box.
27
28 For more information, on how to customize this file, please see
29 http://wiki.apache.org/solr/SchemaXml
30
31 PERFORMANCE NOTE: this schema includes many optional features and should not
32 be used for benchmarking.  To improve performance one could
33  - set stored="false" for all fields possible (esp large fields) when you
34    only need to search on the field but don't need to return the original
35    value.
36  - set indexed="false" if you don't need to search on the field, but only
37    return the field as a result of searching on other indexed fields.
38  - remove all unneeded copyField statements
39  - for best index size and searching performance, set "index" to false
40    for all general text fields, use copyField to copy them to the
41    catchall "text" field, and use that for searching.
42  - For maximum indexing performance, use the StreamingUpdateSolrServer
43    java client.
44  - Remember to run the JVM in server mode, and use a higher logging level
45    that avoids logging every request
46-->
47
48<schema name="VLO_SOLR" version="1.2">
49  <!-- attribute "name" is the name of this schema and is only used for display purposes.
50       Applications should change this to reflect the nature of the search collection.
51       version="1.2" is Solr's version number for the schema syntax and semantics.  It should
52       not normally be changed by applications.
53       1.0: multiValued attribute did not exist, all fields are multiValued by nature
54       1.1: multiValued attribute introduced, false by default
55       1.2: omitTermFreqAndPositions attribute introduced, true by default except for text fields.
56     -->
57
58  <types>
59    <!-- field type definitions. The "name" attribute is
60       just a label to be used by field definitions.  The "class"
61       attribute and any other attributes determine the real
62       behavior of the fieldType.
63         Class names starting with "solr" refer to java classes in the
64       org.apache.solr.analysis package.
65    -->
66
67    <!-- The StrField type is not analyzed, but indexed/stored verbatim.
68       - StrField and TextField support an optional compressThreshold which
69       limits compression (if enabled in the derived fields) to values which
70       exceed a certain size (in characters).
71    -->
72    <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
73
74    <fieldType name="metadataSource" class="solr.TextField" sortMissingLast="false" omitNorms="true" indexed="false" stored="true" />
75
76    <!-- boolean type: "true" or "false" -->
77    <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true"/>
78    <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
79    <fieldtype name="binary" class="solr.BinaryField"/>
80
81    <!-- The optional sortMissingLast and sortMissingFirst attributes are
82         currently supported on types that are sorted internally as strings.
83               This includes "string","boolean","sint","slong","sfloat","sdouble","pdate"
84       - If sortMissingLast="true", then a sort on this field will cause documents
85         without the field to come after documents with the field,
86         regardless of the requested sort order (asc or desc).
87       - If sortMissingFirst="true", then a sort on this field will cause documents
88         without the field to come before documents with the field,
89         regardless of the requested sort order.
90       - If sortMissingLast="false" and sortMissingFirst="false" (the default),
91         then default lucene sorting will be used which places docs without the
92         field first in an ascending sort and last in a descending sort.
93    -->
94
95    <!--
96      Default numeric field types. For faster range queries, consider the tint/tfloat/tlong/tdouble types.
97    -->
98    <fieldType name="int" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
99    <fieldType name="float" class="solr.TrieFloatField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
100    <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
101    <fieldType name="double" class="solr.TrieDoubleField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
102
103    <!--
104     Numeric field types that index each value at various levels of precision
105     to accelerate range queries when the number of values between the range
106     endpoints is large. See the javadoc for NumericRangeQuery for internal
107     implementation details.
108
109     Smaller precisionStep values (specified in bits) will lead to more tokens
110     indexed per value, slightly larger index size, and faster range queries.
111     A precisionStep of 0 disables indexing at different precision levels.
112    -->
113    <fieldType name="tint" class="solr.TrieIntField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
114    <fieldType name="tfloat" class="solr.TrieFloatField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
115    <fieldType name="tlong" class="solr.TrieLongField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
116    <fieldType name="tdouble" class="solr.TrieDoubleField" precisionStep="8" omitNorms="true" positionIncrementGap="0"/>
117
118    <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and
119         is a more restricted form of the canonical representation of dateTime
120         http://www.w3.org/TR/xmlschema-2/#dateTime
121         The trailing "Z" designates UTC time and is mandatory.
122         Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z
123         All other components are mandatory.
124
125         Expressions can also be used to denote calculations that should be
126         performed relative to "NOW" to determine the value, ie...
127
128               NOW/HOUR
129                  ... Round to the start of the current hour
130               NOW-1DAY
131                  ... Exactly 1 day prior to now
132               NOW/DAY+6MONTHS+3DAYS
133                  ... 6 months and 3 days in the future from the start of
134                      the current day
135
136         Consult the DateField javadocs for more information.
137
138         Note: For faster range queries, consider the tdate type
139      -->
140    <fieldType name="date" class="solr.TrieDateField" omitNorms="true" precisionStep="0" positionIncrementGap="0"/>
141
142    <!-- A Trie based date field for faster date range queries and date faceting. -->
143    <fieldType name="tdate" class="solr.TrieDateField" omitNorms="true" precisionStep="6" positionIncrementGap="0"/>
144
145
146    <!--
147      Note:
148      These should only be used for compatibility with existing indexes (created with older Solr versions)
149      or if "sortMissingFirst" or "sortMissingLast" functionality is needed. Use Trie based fields instead.
150
151      Plain numeric field types that store and index the text
152      value verbatim (and hence don't support range queries, since the
153      lexicographic ordering isn't equal to the numeric ordering)
154    -->
155    <!-- Deprecated classes
156    <fieldType name="pint" class="solr.IntField" omitNorms="true"/>
157    <fieldType name="plong" class="solr.LongField" omitNorms="true"/>
158    <fieldType name="pfloat" class="solr.FloatField" omitNorms="true"/>
159    <fieldType name="pdouble" class="solr.DoubleField" omitNorms="true"/>
160    <fieldType name="pdate" class="solr.DateField" sortMissingLast="true" omitNorms="true"/>
161    -->
162
163    <!--
164      Note:
165      These should only be used for compatibility with existing indexes (created with older Solr versions)
166      or if "sortMissingFirst" or "sortMissingLast" functionality is needed. Use Trie based fields instead.
167
168      Numeric field types that manipulate the value into
169      a string value that isn't human-readable in its internal form,
170      but with a lexicographic ordering the same as the numeric ordering,
171      so that range queries work correctly.
172    -->
173    <!-- Deprecated classes
174    <fieldType name="sint" class="solr.SortableIntField" sortMissingLast="true" omitNorms="true"/>
175    <fieldType name="slong" class="solr.SortableLongField" sortMissingLast="true" omitNorms="true"/>
176    <fieldType name="sfloat" class="solr.SortableFloatField" sortMissingLast="true" omitNorms="true"/>
177    <fieldType name="sdouble" class="solr.SortableDoubleField" sortMissingLast="true" omitNorms="true"/>
178    -->
179
180    <!-- The "RandomSortField" is not used to store or search any
181         data.  You can declare fields of this type it in your schema
182         to generate pseudo-random orderings of your docs for sorting
183         purposes.  The ordering is generated based on the field name
184         and the version of the index, As long as the index version
185         remains unchanged, and the same field name is reused,
186         the ordering of the docs will be consistent.
187         If you want different psuedo-random orderings of documents,
188         for the same version of the index, use a dynamicField and
189         change the name
190     -->
191    <fieldType name="random" class="solr.RandomSortField" indexed="true" />
192
193    <!-- solr.TextField allows the specification of custom text analyzers
194         specified as a tokenizer and a list of token filters. Different
195         analyzers may be specified for indexing and querying.
196
197         The optional positionIncrementGap puts space between multiple fields of
198         this type on the same document, with the purpose of preventing false phrase
199         matching across fields.
200
201         For more info on customizing your analyzer chain, please see
202         http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
203     -->
204
205    <!-- One can also specify an existing Analyzer class that has a
206         default constructor via the class attribute on the analyzer element
207    <fieldType name="text_greek" class="solr.TextField">
208      <analyzer class="org.apache.lucene.analysis.el.GreekAnalyzer"/>
209    </fieldType>
210    -->
211
212    <!-- A text field that only splits on whitespace for exact matching of words -->
213    <fieldType name="text_ws" class="solr.TextField" positionIncrementGap="100">
214      <analyzer>
215        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
216      </analyzer>
217    </fieldType>
218
219    <!-- A text field that uses WordDelimiterFilter to enable splitting and matching of
220        words on case-change, alpha numeric boundaries, and non-alphanumeric chars,
221        so that a query of "wifi" or "wi fi" could match a document containing "Wi-Fi".
222        Synonyms and stopwords are customized by external files, and stemming is enabled.
223        -->
224    <fieldType name="text" class="solr.TextField" positionIncrementGap="100">
225      <analyzer type="index">
226        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
227        <!-- in this example, we will only use synonyms at query time
228        <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
229        -->
230        <!-- Case insensitive stop word removal.
231          add enablePositionIncrements=true in both the index and query
232          analyzers to leave a 'gap' for more accurate phrase queries.
233        -->
234        <filter class="solr.StopFilterFactory"
235                ignoreCase="true"
236                words="stopwords.txt"
237                enablePositionIncrements="true"
238                />
239        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="0"/>
240        <filter class="solr.CollationKeyFilterFactory" custom="customCollationRules.bin" strength="primary"/>
241        <filter class="solr.LowerCaseFilterFactory"/>
242        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
243      </analyzer>
244      <analyzer type="query">
245        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
246        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
247        <filter class="solr.StopFilterFactory"
248                ignoreCase="true"
249                words="stopwords.txt"
250                enablePositionIncrements="true"
251                />
252        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="0"/>
253        <filter class="solr.CollationKeyFilterFactory" custom="customCollationRules.bin" strength="primary"/>
254        <filter class="solr.LowerCaseFilterFactory"/>
255        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
256      </analyzer>
257    </fieldType>
258
259
260    <!-- Less flexible matching, but less false matches.  Probably not ideal for product names,
261         but may be good for SKUs.  Can insert dashes in the wrong place and still match. -->
262    <fieldType name="textTight" class="solr.TextField" positionIncrementGap="100" >
263      <analyzer>
264        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
265        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="false"/>
266        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt"/>
267        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="0" generateNumberParts="0" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
268        <filter class="solr.LowerCaseFilterFactory"/>
269        <filter class="solr.SnowballPorterFilterFactory" language="English" protected="protwords.txt"/>
270        <!-- this filter can remove any duplicate tokens that appear at the same position - sometimes
271             possible with WordDelimiterFilter in conjuncton with stemming. -->
272        <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
273      </analyzer>
274    </fieldType>
275
276
277    <!-- A general unstemmed text field - good if one does not know the language of the field -->
278    <fieldType name="textgen" class="solr.TextField" positionIncrementGap="100">
279      <analyzer type="index">
280        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
281        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
282        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="0"/>
283        <filter class="solr.LowerCaseFilterFactory"/>
284      </analyzer>
285      <analyzer type="query">
286        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
287        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
288        <filter class="solr.StopFilterFactory"
289                ignoreCase="true"
290                words="stopwords.txt"
291                enablePositionIncrements="true"
292                />
293        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="0"/>
294        <filter class="solr.LowerCaseFilterFactory"/>
295      </analyzer>
296    </fieldType>
297
298
299    <!-- A general unstemmed text field that indexes tokens normally and also
300         reversed (via ReversedWildcardFilterFactory), to enable more efficient
301         leading wildcard queries. -->
302    <fieldType name="text_rev" class="solr.TextField" positionIncrementGap="100">
303      <analyzer type="index">
304        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
305        <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" enablePositionIncrements="true" />
306        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="0"/>
307        <filter class="solr.LowerCaseFilterFactory"/>
308        <filter class="solr.ReversedWildcardFilterFactory" withOriginal="true"
309           maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33"/>
310      </analyzer>
311      <analyzer type="query">
312        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
313        <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
314        <filter class="solr.StopFilterFactory"
315                ignoreCase="true"
316                words="stopwords.txt"
317                enablePositionIncrements="true"
318                />
319        <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="0"/>
320        <filter class="solr.LowerCaseFilterFactory"/>
321      </analyzer>
322    </fieldType>
323
324    <!-- charFilter + WhitespaceTokenizer  -->
325    <!--
326    <fieldType name="textCharNorm" class="solr.TextField" positionIncrementGap="100" >
327      <analyzer>
328        <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
329        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
330      </analyzer>
331    </fieldType>
332    -->
333
334    <!-- This is an example of using the KeywordTokenizer along
335         With various TokenFilterFactories to produce a sortable field
336         that does not include some properties of the source text
337      -->
338    <fieldType name="alphaOnlySort" class="solr.TextField" sortMissingLast="true" omitNorms="true">
339      <analyzer>
340        <!-- KeywordTokenizer does no actual tokenizing, so the entire
341             input string is preserved as a single token
342          -->
343        <tokenizer class="solr.KeywordTokenizerFactory"/>
344        <!-- The LowerCase TokenFilter does what you expect, which can be
345             when you want your sorting to be case insensitive
346          -->
347        <filter class="solr.LowerCaseFilterFactory" />
348        <!-- The TrimFilter removes any leading or trailing whitespace -->
349        <filter class="solr.TrimFilterFactory" />
350        <!-- The PatternReplaceFilter gives you the flexibility to use
351             Java Regular expression to replace any sequence of characters
352             matching a pattern with an arbitrary replacement string,
353             which may include back references to portions of the original
354             string matched by the pattern.
355
356             See the Java Regular Expression documentation for more
357             information on pattern and replacement string syntax.
358
359             http://java.sun.com/j2se/1.5.0/docs/api/java/util/regex/package-summary.html
360          -->
361        <filter class="solr.PatternReplaceFilterFactory"
362                pattern="([^a-z])" replacement="" replace="all"
363        />
364      </analyzer>
365    </fieldType>
366
367    <fieldtype name="phonetic" stored="false" indexed="true" class="solr.TextField" >
368      <analyzer>
369        <tokenizer class="solr.StandardTokenizerFactory"/>
370        <filter class="solr.DoubleMetaphoneFilterFactory" inject="false"/>
371      </analyzer>
372    </fieldtype>
373
374    <fieldtype name="payloads" stored="false" indexed="true" class="solr.TextField" >
375      <analyzer>
376        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
377        <!--
378        The DelimitedPayloadTokenFilter can put payloads on tokens... for example,
379        a token of "foo|1.4"  would be indexed as "foo" with a payload of 1.4f
380        Attributes of the DelimitedPayloadTokenFilterFactory :
381         "delimiter" - a one character delimiter. Default is | (pipe)
382         "encoder" - how to encode the following value into a playload
383            float -> org.apache.lucene.analysis.payloads.FloatEncoder,
384            integer -> o.a.l.a.p.IntegerEncoder
385            identity -> o.a.l.a.p.IdentityEncoder
386            Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor.
387         -->
388        <filter class="solr.DelimitedPayloadTokenFilterFactory" encoder="float"/>
389      </analyzer>
390    </fieldtype>
391
392    <!-- lowercases the entire field value, keeping it as a single token.  -->
393    <fieldType name="lowercase" class="solr.TextField" positionIncrementGap="100">
394      <analyzer>
395        <tokenizer class="solr.KeywordTokenizerFactory"/>
396        <filter class="solr.LowerCaseFilterFactory" />
397      </analyzer>
398    </fieldType>
399
400
401    <!-- since fields of this type are by default not stored or indexed,
402         any data added to them will be ignored outright.  -->
403    <fieldtype name="ignored" stored="false" indexed="false" multiValued="true" class="solr.StrField" />
404
405    <!-- field for autocompletion -->
406    <fieldType name="textauto" class="solr.TextField">
407    <analyzer>
408      <tokenizer class="solr.LowerCaseTokenizerFactory"/>
409    </analyzer>
410  </fieldType>
411 </types>
412
413
414
415 <fields>
416   <field name="id" type="string" indexed="true" stored="true" required="true"/>
417   <field name="collection" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
418   <field name="name" type="text" indexed="true" stored="true" multiValued="false"/>
419   <field name="projectName" type="string" indexed="true" stored="true" multiValued="true"/>
420   <field name="continent" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
421   <field name="country" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
422   <field name="languageCode" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
423   <field name="availability" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
424   <field name="license" type="string" indexed="true" stored="true" multiValued="true" />
425   <field name="organisation"  type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
426   <field name="genre"  type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
427   <field name="modality"  type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
428   <field name="subject"  type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
429   <field name="description" type="text" indexed="true" stored="true" multiValued="true" />
430   <field name="resourceClass" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
431   <field name="format" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
432   <field name="dataProvider" type="string" indexed="true" stored="true" multiValued="false" default="[missing value]" />
433   <field name="nationalProject" type="string" indexed="true" stored="true" multiValued="true" default="[missing value]" />
434   <field name="keywords" type="string" indexed="true" stored="true" multiValued="true"/>
435   <field name="temporalCoverage" type="string" indexed="true" stored="true" multiValued="true"/>
436   <field name="lifeCycleStatus" type="string" indexed="true" stored="true" multiValued="true"/>
437   <field name="distributionType" type="string" indexed="true" stored="true" multiValued="true"/>
438   <field name="rightsHolder" type="string" indexed="true" stored="true" multiValued="true"/>
439   <field name="text" type="text" indexed="true" stored="false" multiValued="true"/>
440
441   <field name="_selfLink" type="string" indexed="true" stored="true" multiValued="false"/>
442   <field name="_fileName" type="string" indexed="true" stored="true" multiValued="false" />
443   <field name="_resourceRef" type="string" indexed="true" stored="true" multiValued="true" />
444   <field name="_resourceRefCount" type="int" indexed="true" stored="true" multiValued="false" />
445   <field name="_componentProfile" type="string" indexed="true" stored="true" multiValued="false" />
446   <field name="_contentSearchRef" type="string" indexed="true" stored="true" multiValued="true" />
447   <field name="_landingPageRef" type="string" indexed="true" stored="true" multiValued="true" />
448   <field name="_lastSeen" type="tdate" indexed="true" stored="true" multiValued="false" />
449   <field name="_searchPageRef" type="string" indexed="true" stored="true" multiValued="true" />
450   <field name="_isPartOf" type="string" indexed="true" stored="true" multiValued="true" />
451   <field name="_hasPart" type="string" indexed="true" stored="true" multiValued="true" />
452   <field name="_hasPartCount" type="int" indexed="true" stored="true" multiValued="false" />
453   <field name="_hierarchyWeight" type="int" indexed="true" stored="true" multiValued="false" default='0'/>
454   <field name="_languageName" type="text" indexed="true" stored="true" multiValued="true" />
455   <field name="metadataSource" type="metadataSource" indexed="false" stored="true" multiValued="true" />
456
457   <field name="profileName" type="string" indexed="true" stored="true" multiValued="false"/>
458   <field name="profileId" type="string" indexed="true" stored="true" multiValued="false"/>
459   <field name="resourceClassOrig" type="string" indexed="true" stored="true" multiValued="true" />
460   
461   <!-- Field _version_ for update log (needed for partial updates) -->
462   <field name="_version_" type="long" indexed="true" stored="true"/>
463   
464   <!-- Field for autocompletion (suggester) -->
465   <field name="_suggester" type="textauto" indexed="true" stored="false" multiValued="true"/>
466   <copyField source="text" dest="_suggester"/>
467 </fields>
468
469 <uniqueKey>id</uniqueKey>
470 <defaultSearchField>text</defaultSearchField>
471
472 <solrQueryParser defaultOperator="AND"/>
473</schema>
474
Note: See TracBrowser for help on using the repository browser.