aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/indexing_extra.sd
blob: 8a6802ea707a769e270a888e90b28819866d2737 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search indexing_extra {
    document indexing_extra {
        field my_index type string {
            indexing: index | summary
        }
        field my_input type string {
        }
    }
    field my_extra type string {
        indexing: input my_input | index | summary
    }
}