aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/ngram/chunk.sd
blob: 7c2a74653279d497cb1db363bfe5afbdf588281f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
schema chunk {

    document chunk {
        field content type string {
            indexing: summary | index
            match {
                gram
                gram-size: 3
            }
        }
    }

    document-summary content-summary inherits default {
        summary content_dynamic type string {
            source: content
            dynamic
        }
    }

}