aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/fieldset/test.sd
blob: 6bdc5e73cce388ac72ee0dd00cabad2004c15209 (plain) (blame)
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
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema test {

    document test {

        field word1 type array<string> {
            indexing: index | summary | attribute
            match: word
            stemming: none
            normalizing: none
        }

        field word2 type array<string> {
            indexing: index | summary | attribute
            match: word
            stemming: none
            normalizing: none
        }

    }

    fieldset words {
        fields: word1,word2
    }

}