aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/language/language.sd
blob: 4b060598882811a8dbee7f7d64a616e2cb477546 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright Yahoo. 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
    }

}