summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/language/language.sd
blob: 54c3d83873aa21e393e560f0e9475c66eed147c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema language {
    document language {
        field language type string {
            indexing: summary | index |set_language
        }
        field title type string {
            indexing: summary | index
        }
    }
    field titlenone type string {
        indexing: input title | index
        stemming: none
    }
    field titlebest type string {
        indexing: input title | index
        stemming: best
    }

}