aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/ngram/chunk.sd
blob: 84d806ef0742d9ad3b73c9485fb2df8ace32f733 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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 {
            source: content
            dynamic
        }
    }

}