aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/indexing_extra.sd
blob: d3a8c10cc7379f36a045bdc25501212fbbda0f08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright Yahoo. 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
    }
}